Skip to content

Commit

Permalink
Merge pull request #97 from adrianeboyd/chore/updates-python-312
Browse files Browse the repository at this point in the history
Updates for python 3.12
  • Loading branch information
adrianeboyd authored Sep 18, 2023
2 parents 1ae7828 + ce4313d commit b851fc3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python_version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12.0-rc.2"]
include:
- os: windows-2019
python_version: "3.6"
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
CC=clang-12 python -m build --wheel
- name: Build wheel (Linux / gcc)
if: startsWith(matrix.os, 'ubuntu') && matrix.python_version == '3.11'
if: startsWith(matrix.os, 'ubuntu') && (matrix.python_version == '3.11' || matrix.python_version == '3.12.0-rc.2')
run: |
gcc --version
CC=gcc python -m build --wheel
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ def chdir(new_dir):
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
],
)
Expand Down

0 comments on commit b851fc3

Please sign in to comment.