Skip to content

Commit 0e31dd8

Browse files
authored
Merge pull request #22 from 8bitsam/master
Updated to Python 3.11
2 parents aa96482 + c36c04e commit 0e31dd8

4 files changed

Lines changed: 8 additions & 12 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
max-parallel: 4
1515
matrix:
16-
python-version: ['3.8', '3.9', '3.10']
16+
python-version: ['3.8', '3.9', '3.10', '3.11']
1717
os: [ubuntu-latest, macos-latest, windows-latest]
1818

1919
runs-on: ${{ matrix.os }}
@@ -55,7 +55,7 @@ jobs:
5555
token: ${{ secrets.GITHUB_TOKEN }}
5656
artifacts: ${{ github.workspace }}/dist/*.whl
5757
tag: 1.4.1
58-
body: This is an alpha build of the pdffit2 library (1.4.1)
58+
body: This is an alpha build of the pdffit2 library (1.4.2)
5959

6060
# This step will upload tagged commits to pypi.
6161
# The pypi token must be added to GH secrets

CHANGELOG.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
11
# Release notes
22

3-
Notable differences from version 1.2.
3+
No notable functional changes from 1.4.1
44

5-
## Version 1.3.02022-11-30
5+
## Version 1.4.22023-12-09
66

77
### Added
88

9-
- Support for Python 3.8, 3.9, 3.10.
9+
- Support for Python 3.11
1010

1111
### Changed
1212

1313
### Deprecated
1414

1515
### Removed
16-
17-
- Remove the support for Python 3.5, 3.6.
1816

1917
### Fixed
20-
21-
- Patch variable to avoid naming problems and Xcode collision on MacOS & Linux.
22-
- Fix g++ w/ambiguous isnan on Linux.
23-
- Fix the PY_SSIZE_T_CLEAN macro for py3.10.

conda-recipe/conda_build_config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
python:
2+
- 3.11
23
- 3.10
34
- 3.9
45
- 3.8

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
# Use this version when git data are not available, like in git zip archive.
2020
# Update when tagging a new release.
21-
FALLBACK_VERSION = '1.4.1'
21+
FALLBACK_VERSION = '1.4.2'
2222

2323
# determine if we run with Python 3.
2424
PY3 = (sys.version_info[0] == 3)
@@ -243,6 +243,7 @@ def get_gsl_config_win():
243243
'Programming Language :: Python :: 3.8',
244244
'Programming Language :: Python :: 3.9',
245245
'Programming Language :: Python :: 3.10',
246+
'Programming Language :: Python :: 3.11',
246247
'Topic :: Scientific/Engineering :: Chemistry',
247248
'Topic :: Scientific/Engineering :: Physics',
248249
],

0 commit comments

Comments
 (0)