Skip to content

Commit 5362a35

Browse files
committed
Update supported Python versions
1 parent 7cdbfd3 commit 5362a35

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

.github/workflows/coverage.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- uses: actions/checkout@v3
11-
- name: Set up Python 3.12
11+
- name: Set up Python 3.13
1212
uses: actions/setup-python@v4
1313
with:
14-
python-version: 3.12
14+
python-version: 3.13
1515
- name: Install Dependencies
1616
run: |
1717
python -m pip install --upgrade pip

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
1212

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
line-length = 120
2-
target-version = ['py37', 'py38', 'py39', 'py310']
2+
target-version = ['py37', 'py38', 'py39', 'py310', 'py311', 'py312', 'py313', 'py314']

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from setuptools import setup, find_packages
88

9-
__VERSION__ = "1.2.0"
9+
__VERSION__ = "1.2.2"
1010

1111
base_dir = os.path.abspath(os.path.dirname(__file__))
1212

@@ -49,19 +49,20 @@
4949
"models",
5050
"data"
5151
],
52-
python_requires=">=3.6",
52+
python_requires=">=3.7",
5353
classifiers=[
5454
"Development Status :: 5 - Production/Stable",
5555
"Intended Audience :: Developers",
5656
"License :: OSI Approved :: MIT License",
5757
"Programming Language :: Python :: 3",
58-
"Programming Language :: Python :: 3.6",
5958
"Programming Language :: Python :: 3.7",
6059
"Programming Language :: Python :: 3.8",
6160
"Programming Language :: Python :: 3.9",
6261
"Programming Language :: Python :: 3.10",
6362
"Programming Language :: Python :: 3.11",
6463
"Programming Language :: Python :: 3.12",
64+
"Programming Language :: Python :: 3.13",
65+
"Programming Language :: Python :: 3.14",
6566
],
6667
test_suite="tests",
6768
project_urls={

0 commit comments

Comments
 (0)