Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RLS: Prepare patsy 1.0.1 #217

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@ 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.1
------

* Removed an inadvertent hard dependency on pytest.

v1.0.0
------

* Add support for Python 3.13.
* Drop support for Python 2.7 (and remove dependency on the `six` module).
* Fix compatibility with `numpy >= 2`.
* Update development status to 'mature'.
Expand Down
10 changes: 5 additions & 5 deletions patsy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
# places -- it is imported by patsy/__init__.py, execfile'd by setup.py, etc.

# We use a simple scheme:
# 1.0.0 -> 1.0.0+dev -> 1.1.0 -> 1.1.0+dev
# 1.0.1 -> 1.0.1+dev -> 1.1.0 -> 1.1.0+dev
# where the +dev versions are never released into the wild, they're just what
# we stick into the VCS in between releases.
#
# This is compatible with PEP 440:
# http://legacy.python.org/dev/peps/pep-0440/
# via the use of the "local suffix" "+dev", which is disallowed on index
# servers and causes 1.0.0+dev to sort after plain 1.0.0, which is what we
# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before*
# 1.0.0.)
# servers and causes 1.0.1+dev to sort after plain 1.0.1, which is what we
# want. (Contrast with the special suffix 1.0.1.dev, which sorts *before*
# 1.0.1.)

__version__ = "1.0.0"
__version__ = "1.0.1"
Loading