From 691eb4e8c65c44ac78f76c8b5b45a4a4144a7cfb Mon Sep 17 00:00:00 2001 From: Matthew Wardrop Date: Mon, 11 Nov 2024 14:03:56 -0800 Subject: [PATCH] 1.0.0 --- .gitignore | 1 + doc/changes.rst | 7 +++++++ patsy/version.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2e9d7ce..f5cf9bb 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ htmlcov/ # Generated by doc build doc/_static/basis-*.png doc/savefig/ +venv # Cribbed from numpy's .gitignore: diff --git a/doc/changes.rst b/doc/changes.rst index c41dc06..124584c 100644 --- a/doc/changes.rst +++ b/doc/changes.rst @@ -8,6 +8,13 @@ All Patsy releases are archived at Zenodo: .. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.592075.svg :target: https://doi.org/10.5281/zenodo.592075 +v1.0.0 +------ + +* Drop support for Python 2.7 (and remove dependency on the `six` module). +* Fix compatibility with `numpy >= 2`. +* Update development status to 'mature'. + v0.5.6 ------ diff --git a/patsy/version.py b/patsy/version.py index ff66d3a..9ea6b6a 100644 --- a/patsy/version.py +++ b/patsy/version.py @@ -17,4 +17,4 @@ # want. (Contrast with the special suffix 1.0.0.dev, which sorts *before* # 1.0.0.) -__version__ = "0.5.6" +__version__ = "1.0.0" diff --git a/setup.py b/setup.py index e1b63c7..4613449 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ }, python_requires=">=3.6", classifiers=[ - "Development Status :: 4 - Beta", + "Development Status :: 6 - Mature", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Intended Audience :: Financial and Insurance Industry",