Skip to content

Commit 7f264d2

Browse files
authored
Merge pull request diffpy#139 from bobleesj/wxpython313
Support Python 3.13 with wxPython 3.13 support on Conda-forge
2 parents 5f0c1b4 + 8c2b121 commit 7f264d2

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
fail-fast: false
2222
matrix:
2323
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
24-
python-version: ["3.11", "3.12"]
24+
python-version: ["3.11", "3.12", "3.13"]
2525
env:
26-
LATEST_PYTHON_VERSION: "3.12"
26+
LATEST_PYTHON_VERSION: "3.13"
2727
steps:
2828
- name: Check out diffpy.labpdfproc
2929
uses: actions/checkout@v4

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
auto-update-conda: true
2626
environment-file: environment.yml
2727
auto-activate-base: false
28-
python-version: 3.12
28+
python-version: 3.13
2929

3030
- name: Conda config
3131
run: >-

news/py313.rst

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Added:**
2+
3+
* Python 3.13 support
4+
5+
**Changed:**
6+
7+
* <news item>
8+
9+
**Deprecated:**
10+
11+
* <news item>
12+
13+
**Removed:**
14+
15+
* <news item>
16+
17+
**Fixed:**
18+
19+
* <news item>
20+
21+
**Security:**
22+
23+
* <news item>

pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ maintainers = [
1414
description = "Tools for processing x-ray powder diffraction data from laboratory sources."
1515
keywords = ['powder xrd', 'absorption correction', 'pdf', 'diffpy']
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)