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

added python 3.11 testing/compatibilty #112

Merged
merged 1 commit into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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: 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/python-wheels-manylinux-build@v0.4.2-manylinux2014_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
Loading