Skip to content

Commit

Permalink
Merge pull request #112 from NESTCollaboration/gr_testPy311
Browse files Browse the repository at this point in the history
added python 3.11 testing/compatibilty
  • Loading branch information
grischbieter authored Jul 18, 2024
2 parents 1cb83ef + 6251bc3 commit 3b5ce87
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pypi_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: False
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
os: [ "ubuntu-latest" , "macos-latest", "macos-10.15"]
exclude:
- python-version: 3.6
Expand Down Expand Up @@ -54,11 +54,11 @@ jobs:
run: pip install wheel twine

# -- Linux --
- name: Build weels (linux) python 3.8, 3.9, 3.10
- name: Build weels (linux) python 3.8, 3.9, 3.10, 3.11
if: matrix.os == 'ubuntu-latest'
uses: RalfG/[email protected]_x86_64
with:
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310'
python-versions: 'cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311'
build-requirements: 'numpy==1.21.6'
- name: Build legacy weels (linux) python 3.6, 3.7
if: matrix.os == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
fail-fast: False
matrix:
os: [ "ubuntu-latest" , "macos-latest" ]
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10" ]
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10", "3.11" ]
exclude:
- python-version: 3.6
os: "ubuntu-latest"
Expand Down
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Patch releases mean (the Z number in X.Y.Z version) that the underlying physics
Minor Changes:
* Updated workflows for github and pypi tests; restores the ability to upload tagged nestpy releases to PyPi servers.
* Updated author contact information
* Added Python 3.11 compatibility

2.0.3 (2024-05-23)
-----------------
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ def build_extension(self, ext):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: C++',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: Implementation :: CPython',
Expand Down

0 comments on commit 3b5ce87

Please sign in to comment.