Skip to content

Commit 426c6d1

Browse files
committed
MAINT: Bump minimum python to 3.10
1 parent 3a50fdf commit 426c6d1

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

doc/source/changes/6.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Version 6.0
44
* Small doc fixes
55
* Support Python 3.13
66

7-
Version 6.0
7+
Version 6.1
88
-----------
99

1010
* Increased minimums:

doc/source/changes/7.0.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Version 7.0
2+
-----------
3+
4+
* Increased minimums:
5+
6+
- Python: 3.10
7+
- formulaic: 1.0.0
8+
- NumPy: 1.22.3
9+
- SciPy: 1.8.0
10+
- pandas: 1.4.0
11+
- statsmodels: 0.13.0

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[project]
2+
license = "NCSA"
3+
14
[flake8]
25
max-line-length = 99
36
ignore = E203,W503,BLK100

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,19 +112,18 @@ def run_setup(binary: bool = True) -> None:
112112
"Intended Audience :: End Users/Desktop",
113113
"Intended Audience :: Financial and Insurance Industry",
114114
"Intended Audience :: Science/Research",
115-
"Programming Language :: Python :: 3.9",
116115
"Programming Language :: Python :: 3.10",
117116
"Programming Language :: Python :: 3.11",
118117
"Programming Language :: Python :: 3.12",
119-
"License :: OSI Approved :: University of Illinois/NCSA Open Source License",
118+
"Programming Language :: Python :: 3.13",
120119
"Operating System :: MacOS :: MacOS X",
121120
"Operating System :: Microsoft :: Windows",
122121
"Operating System :: POSIX",
123122
"Programming Language :: Python",
124123
"Topic :: Scientific/Engineering",
125124
],
126125
ext_modules=extensions,
127-
python_requires=">=3.9",
126+
python_requires=">=3.10",
128127
distclass=BinaryDistribution,
129128
)
130129

0 commit comments

Comments
 (0)