Skip to content

Commit

Permalink
env: introduce support for python 3.12, but drop support for python 3…
Browse files Browse the repository at this point in the history
….8 due to scipy

As of 2024-02, Python 3.8 is still going to be supproted for 6 months (until
2024-10, see https://devguide.python.org/versions).

At the same time, Python 3.12 was released four months ago, on 2023-10, and will
be supported for five years.

We cannot support both, because scipy 1.10 does not work with python 3.12, and
scipy 1,11 drops python 3.8.

Having to make a choiche, it is probably better to go with the more recent
versions, thus 3.8 has to go down the drain.
  • Loading branch information
muxator committed Feb 24, 2024
1 parent a9049f7 commit dbab2b2
Show file tree
Hide file tree
Showing 6 changed files with 398 additions and 546 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.8]
python-version: [3.9]

timeout-minutes: 30

Expand All @@ -37,7 +37,7 @@ jobs:
- name: Install dependencies
run: |
pip install tox
# Install markdown-spellcheck
sudo npm install -g markdown-spellcheck
- name: Generate Documentation
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.8]
python-version: [3.9]

timeout-minutes: 30

Expand All @@ -36,4 +36,4 @@ jobs:
run: tox -e check-copyright
- name: Misc checks
run: |
tox -e bandit,safety
tox -e bandit,safety
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.9, "3.10", "3.11", "3.12"]

timeout-minutes: 30

Expand Down
Loading

0 comments on commit dbab2b2

Please sign in to comment.