-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove support for older python versions and add newer versions (#32)
* feat: remove support for older python versions * fix: docs build * fix: add defaults channel to build
- Loading branch information
1 parent
a9029e1
commit 3f43729
Showing
11 changed files
with
27 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ defaults: | |
|
||
jobs: | ||
check: | ||
name: Run checks for periodicity-detection on ubuntu with python 3.7 | ||
name: Run checks for periodicity-detection on ubuntu with python 3.9 | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
|
@@ -23,7 +23,8 @@ jobs: | |
with: | ||
use-mamba: true | ||
auto-update-conda: true | ||
python-version: "3.7" | ||
python-version: "3.9" | ||
channels: "defaults" | ||
- name: Install dependencies | ||
run: | | ||
pip install -r requirements.dev | ||
|
@@ -41,7 +42,7 @@ jobs: | |
max-parallel: 3 | ||
matrix: | ||
os: [ubuntu-latest] # [ubuntu-latest, windows-latest, macOS-latest] | ||
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11"] | ||
python_version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | ||
fail-fast: false | ||
|
||
steps: | ||
|
@@ -52,6 +53,7 @@ jobs: | |
use-mamba: true | ||
auto-update-conda: true | ||
python-version: ${{ matrix.python_version }} | ||
channels: "defaults" | ||
- name: Install dependencies | ||
run: | | ||
pip install -r requirements.dev | ||
|
@@ -104,7 +106,8 @@ jobs: | |
with: | ||
use-mamba: true | ||
auto-update-conda: true | ||
python-version: 3.7 | ||
python-version: 3.9 | ||
channels: "defaults" | ||
- name: Build source distribution | ||
run: | | ||
python setup.py sdist | ||
|
@@ -128,7 +131,7 @@ jobs: | |
uses: RalfG/[email protected]_x86_64 | ||
with: | ||
# our wheel is purely python, so this creates a *-none-any.wheel and other versions are not required for now | ||
python-versions: 'cp37-cp37m' | ||
python-versions: 'cp39-cp39m' | ||
- name: List packages | ||
run: | | ||
ls -alh dist | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__: str = "0.1.3" | ||
__version__: str = "0.2.0rc1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters