Skip to content

Commit c60c04a

Browse files
authored
Support Python 3.13, drop 3.10 (#143)
* Modify pyproject.toml to support 3.13, drop 3.10 * Add requires-python = ">=3.11, <=3.13" in pyprojet.toml * Add requires-python = ">=3.11, <=3.13" to news * Add >=3.11, <3.14 in news * Update pyproject.toml with >=3.11, <3.14 * Standardize news file
1 parent cef3b56 commit c60c04a

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

Diff for: news/python-313.rst

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

Diff for: pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ maintainers = [
1515
description = "Peak extraction and peak fitting tool for atomic pair distribution functions."
1616
keywords = ['peak extraction fitting PDF AIC multimodeling']
1717
readme = "README.rst"
18-
requires-python = ">=3.10"
18+
requires-python = ">=3.11, <3.14"
1919
classifiers = [
2020
'Development Status :: 3 - Alpha',
2121
'Environment :: Console',
@@ -27,9 +27,9 @@ classifiers = [
2727
'Operating System :: Microsoft :: Windows',
2828
'Operating System :: POSIX',
2929
'Operating System :: Unix',
30-
'Programming Language :: Python :: 3.10',
3130
'Programming Language :: Python :: 3.11',
3231
'Programming Language :: Python :: 3.12',
32+
'Programming Language :: Python :: 3.13',
3333
'Topic :: Scientific/Engineering :: Physics',
3434
'Topic :: Scientific/Engineering :: Chemistry',
3535
'Topic :: Software Development :: Libraries',

Diff for: src/diffpy/srmise/applications/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
#
1313
##############################################################################
1414

15-
# __init__.py file for spplications module
15+
# __init__.py file for applications module

0 commit comments

Comments
 (0)