Skip to content

Commit 4f8a70c

Browse files
1.0.0
1 parent d234e39 commit 4f8a70c

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ htmlcov/
88
# Generated by doc build
99
doc/_static/basis-*.png
1010
doc/savefig/
11+
venv
1112

1213
# Cribbed from numpy's .gitignore:
1314

doc/changes.rst

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ All Patsy releases are archived at Zenodo:
88
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.592075.svg
99
:target: https://doi.org/10.5281/zenodo.592075
1010

11+
v1.0.0
12+
------
13+
14+
* Drop support for Python 2.7 (and remove dependency on the `six` module).
15+
* Fix compatibility with `numpy` >= 2.
16+
1117
v0.5.6
1218
------
1319

patsy/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before*
1818
# 1.0.0.)
1919

20-
__version__ = "0.5.6"
20+
__version__ = "1.0.0"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
python_requires=">=3.6",
3535
classifiers=[
36-
"Development Status :: 4 - Beta",
36+
"Development Status :: 6 - Mature",
3737
"Intended Audience :: Developers",
3838
"Intended Audience :: Science/Research",
3939
"Intended Audience :: Financial and Insurance Industry",

0 commit comments

Comments
 (0)