Skip to content

Commit 6d2a016

Browse files
committed
support 3.13
1 parent 93e9fd3 commit 6d2a016

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/matrix-and-codecov-on-merge-to-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: Billingegroup/release-scripts/.github/workflows/_matrix-and-codecov-on-merge-to-main.yml@v0
1616
with:
1717
project: diffpy.pdffit2
18-
python_versions: "3.11, 3.12"
18+
python_versions: "3.11, 3.12, 3.13"
1919
c_extension: true
2020
headless: false
2121
secrets:

.github/workflows/publish-docs-on-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ jobs:
1414
project: diffpy.pdffit2
1515
c_extension: true
1616
headless: false
17-
python_version: 3.12
17+
python_version: 3.13

.github/workflows/tests-on-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
project: diffpy.pdffi2
1515
c_extension: true
1616
headless: false
17-
python_version: 3.12
17+
python_version: 3.13
1818
secrets:
1919
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ If you use diffpy.pdffit2 in a scientific publication, we would like you to cite
7272
Installation
7373
------------
7474

75-
diffpy.pdffit2 supports Python 3.11 and 3.12.
75+
diffpy.pdffit2 supports Python 3.11, 3.12, and 3.13.
7676

7777
Windows, macOS (non-Arm64), Linux
7878
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -102,7 +102,7 @@ macOS (Arm64)
102102

103103
Create a new conda environment ``diffpy.pdffit2_env``: ::
104104

105-
conda create -n diffpy.pdffit2_env python=3.12
105+
conda create -n diffpy.pdffit2_env python=3.13
106106

107107
Activate the environment: ::
108108

@@ -121,7 +121,7 @@ Build from source
121121

122122
For advanced users, obtain the source archive, and in the ``diffpy.pdffit2`` directory, run ::
123123

124-
conda create -n diffpy.pdffit2_env python=3.12 \
124+
conda create -n diffpy.pdffit2_env python=3.13 \
125125
--file requirements/test.txt \
126126
--file requirements/conda.txt \
127127
--file requirements/build.txt

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ maintainers = [
1414
description = "PDFfit2 - real space structure refinement program."
1515
keywords = ["PDF", "structure refinement"]
1616
readme = "README.rst"
17-
requires-python = ">=3.11, <3.13"
17+
requires-python = ">=3.11, <3.14"
1818
classifiers = [
1919
'Development Status :: 5 - Production/Stable',
2020
'Environment :: Console',
@@ -27,6 +27,7 @@ classifiers = [
2727
'Operating System :: Unix',
2828
'Programming Language :: Python :: 3.11',
2929
'Programming Language :: Python :: 3.12',
30+
'Programming Language :: Python :: 3.13',
3031
'Topic :: Scientific/Engineering :: Physics',
3132
'Topic :: Scientific/Engineering :: Chemistry',
3233
]

0 commit comments

Comments
 (0)