Skip to content

Commit 381331f

Browse files
committed
Drop python 3.7 support, add 3.13
1 parent 242dfd0 commit 381331f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/python-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515
- uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
Python 3+ compatible port of the [configobj](https://pypi.python.org/pypi/configobj/) library.
88

99
The Github CI/CD Pipeline runs tests on python versions:
10-
- 3.7
1110
- 3.8
1211
- 3.9
1312
- 3.10
1413
- 3.11
1514
- 3.12
15+
- 3.13
1616

1717

1818
## Documentation

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,12 @@
8181
'License :: OSI Approved :: BSD License',
8282
'Programming Language :: Python',
8383
'Programming Language :: Python :: 3',
84-
'Programming Language :: Python :: 3.7',
8584
'Programming Language :: Python :: 3.8',
8685
'Programming Language :: Python :: 3.9',
8786
'Programming Language :: Python :: 3.10',
8887
'Programming Language :: Python :: 3.11',
8988
'Programming Language :: Python :: 3.12',
89+
'Programming Language :: Python :: 3.13',
9090
'Operating System :: OS Independent',
9191
'Topic :: Software Development :: Libraries',
9292
'Topic :: Software Development :: Libraries :: Python Modules',
@@ -109,7 +109,7 @@
109109
py_modules=MODULES,
110110
package_dir={'': 'src'},
111111
packages=PACKAGES,
112-
python_requires='>=3.7',
112+
python_requires='>=3.8',
113113
classifiers=CLASSIFIERS,
114114
keywords=KEYWORDS,
115115
license='BSD-3-Clause',

0 commit comments

Comments
 (0)