Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.12 #53

Merged
merged 4 commits into from
Feb 6, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-20.04, macos-11, windows-2019 ]
python-version: [ 3.7, 3.9, 3.8, "3.10", "3.11" ]
python-version: [ 3.7, 3.9, 3.8, "3.10", "3.11", "3.12" ]

env:
PYTHON_VERSION: ${{ matrix.python-version }}
Expand All @@ -50,6 +50,8 @@ jobs:
conda install scipy=1.7 numpy=1.21 nose
elif [[ "$PYTHON_VERSION" == "3.11" ]]; then
conda install scipy=1.9.3 numpy=1.23.4 nose
elif [[ "$PYTHON_VERSION" == "3.12" ]]; then
conda install scipy=1.11.2 numpy=1.26.0 nose
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Earliest versions with wheels for 3.12 on PyPI.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@PTNobel had to bumpy because conda is relevant, not PyPI.

fi
if [[ "$RUNNER_OS" == "macOS" ]]; then
sudo rm -rf /Library/Developer/CommandLineTools
Expand All @@ -69,7 +71,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-20.04, macos-11, windows-2019 ]
python-version: [ 3.7, 3.9, "3.10", "3.11" ]
python-version: [ 3.7, 3.9, "3.10", "3.11", "3.12" ]
include:
- os: ubuntu-20.04
python-version: 3.8
Expand Down
Loading