Skip to content

Commit f7b0120

Browse files
committed
Update py version to 3.11 and package version to 1.4.2 in config and setup files
1 parent aa96482 commit f7b0120

3 files changed

Lines changed: 5 additions & 3 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

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)