Skip to content

Commit

Permalink
Support python 3.12, deprecate 3.6 and 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Troiber committed Oct 12, 2023
1 parent f2a6bed commit dbbfcf7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Expand Up @@ -13,12 +13,11 @@ jobs:
fail-fast: false
matrix:
version:
- {python: "3.6", os: "ubuntu-20.04"}
- {python: "3.7", os: "ubuntu-latest"}
- {python: "3.8", os: "ubuntu-latest"}
- {python: "3.9", os: "ubuntu-latest"}
- {python: "3.10", os: "ubuntu-latest"}
- {python: "3.11", os: "ubuntu-latest"}
- {python: "3.12", os: "ubuntu-latest"}
steps:
- uses: actions/checkout@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Expand Up @@ -58,7 +58,7 @@ jobs:
brew install flex
echo "/usr/local/opt/flex/bin" >> $GITHUB_PATH
- uses: pypa/cibuildwheel@v2.12.1
- uses: pypa/cibuildwheel@v2.16
env:
CIBW_BEFORE_ALL_LINUX: |
yum --disablerepo=epel -y update ca-certificates
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python: [cp36-cp36m, cp37-cp37m, cp38-cp38, cp39-cp39, cp310-cp310, cp311-cp311]
python: [cp38-cp38, cp39-cp39, cp310-cp310, cp311-cp311, cp312-cp312]
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools>=45,<64",
"setuptools>=45",
"wheel",
"cython",
"scikit-build>=0.12",
Expand Down

0 comments on commit dbbfcf7

Please sign in to comment.