Skip to content

Commit

Permalink
Support Python 3.13, drop 3.10 (#143)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
bobleesj authored Oct 24, 2024
1 parent cef3b56 commit c60c04a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions news/python-313.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* Support for Python 3.13

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* Support for Python 3.10

**Fixed:**

* <news item>

**Security:**

* <news item>
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ maintainers = [
description = "Peak extraction and peak fitting tool for atomic pair distribution functions."
keywords = ['peak extraction fitting PDF AIC multimodeling']
readme = "README.rst"
requires-python = ">=3.10"
requires-python = ">=3.11, <3.14"
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
Expand All @@ -27,9 +27,9 @@ classifiers = [
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Software Development :: Libraries',
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/srmise/applications/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
#
##############################################################################

# __init__.py file for spplications module
# __init__.py file for applications module

0 comments on commit c60c04a

Please sign in to comment.