We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a50fdf commit 426c6d1Copy full SHA for 426c6d1
doc/source/changes/6.0.rst
@@ -4,7 +4,7 @@ Version 6.0
4
* Small doc fixes
5
* Support Python 3.13
6
7
-Version 6.0
+Version 6.1
8
-----------
9
10
* Increased minimums:
doc/source/changes/7.0.rst
@@ -0,0 +1,11 @@
1
+Version 7.0
2
+-----------
3
+
+* Increased minimums:
+ - Python: 3.10
+ - formulaic: 1.0.0
+ - NumPy: 1.22.3
+ - SciPy: 1.8.0
+ - pandas: 1.4.0
11
+ - statsmodels: 0.13.0
setup.cfg
@@ -1,3 +1,6 @@
+[project]
+license = "NCSA"
[flake8]
max-line-length = 99
ignore = E203,W503,BLK100
setup.py
@@ -112,19 +112,18 @@ def run_setup(binary: bool = True) -> None:
112
"Intended Audience :: End Users/Desktop",
113
"Intended Audience :: Financial and Insurance Industry",
114
"Intended Audience :: Science/Research",
115
- "Programming Language :: Python :: 3.9",
116
"Programming Language :: Python :: 3.10",
117
"Programming Language :: Python :: 3.11",
118
"Programming Language :: Python :: 3.12",
119
- "License :: OSI Approved :: University of Illinois/NCSA Open Source License",
+ "Programming Language :: Python :: 3.13",
120
"Operating System :: MacOS :: MacOS X",
121
"Operating System :: Microsoft :: Windows",
122
"Operating System :: POSIX",
123
"Programming Language :: Python",
124
"Topic :: Scientific/Engineering",
125
],
126
ext_modules=extensions,
127
- python_requires=">=3.9",
+ python_requires=">=3.10",
128
distclass=BinaryDistribution,
129
)
130
0 commit comments