-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove 3.8 from supported python versions
- Loading branch information
AWS ParallelCluster user
committed
Nov 12, 2024
1 parent
27a76cf
commit bf57ace
Showing
8 changed files
with
15 additions
and
15 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
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 |
---|---|---|
|
@@ -20,12 +20,12 @@ jobs: | |
uses: pypa/[email protected] | ||
# To supply options, put them in 'env' | ||
env: | ||
# Only build for python 3.{8,9,10,11} | ||
CIBW_BUILD : cp38-* cp39-* cp310-* cp311-* | ||
# Only build for python 3.{9,10,11,12} | ||
CIBW_BUILD : cp39-* cp310-* cp311-* cp312-* | ||
# Supports only x86_64 arch for linux | ||
CIBW_ARCHS_LINUX: x86_64 | ||
CIBW_ARCHS_MACOS: "x86_64 arm64" | ||
CIBW_SKIP: cp27-* cp36-* cp37-* | ||
CIBW_SKIP: cp27-* cp36-* cp37-* cp38-* | ||
CIBW_DEPENDENCY_VERSIONS: latest | ||
|
||
- uses: actions/upload-artifact@v3 | ||
|
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,5 +1,5 @@ | ||
setuptools_scm >= 6.0 | ||
numpy >= 1.19.4 | ||
numpy >= 1.21.0 | ||
jax >= 0.2.5 | ||
jaxlib >= 0.1.56 | ||
scipy >= 1.5.4 | ||
|