Skip to content

Commit 3214ebf

Browse files
authored
explicitely support Py3.6 -> Py3.13 (#213)
1 parent b9e65d6 commit 3214ebf

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/tox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
max-parallel: 4
1616
matrix:
17-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
17+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1818
pandas-presence: ['with_pandas', 'without_pandas']
1919
env:
2020
PYTHON_VERSION: ${{ matrix.python-version }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ building design matrices. Patsy brings the convenience of [R](http://www.r-proje
3232

3333
## Dependencies
3434

35-
* Python (3.3+)
35+
* Python (3.6+)
3636
* numpy
3737
* Optional:
3838
* pytest/pytest-cov: needed to run tests

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
extras_require={
3030
"test": ["pytest", "pytest-cov", "scipy"],
3131
},
32+
python_requires='>=3.6',
3233
classifiers=[
3334
"Development Status :: 4 - Beta",
3435
"Intended Audience :: Developers",
@@ -43,6 +44,7 @@
4344
"Programming Language :: Python :: 3.10",
4445
"Programming Language :: Python :: 3.11",
4546
"Programming Language :: Python :: 3.12",
47+
"Programming Language :: Python :: 3.13",
4648
"Topic :: Scientific/Engineering",
4749
],
4850
)

0 commit comments

Comments
 (0)