Skip to content

Commit

Permalink
Merge pull request #217 from bashtage/rls-1.0.1
Browse files Browse the repository at this point in the history
RLS: Prepare patsy 1.0.1
  • Loading branch information
bashtage authored Nov 12, 2024
2 parents 3063436 + dd47246 commit 806c8ed
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
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"

0 comments on commit 806c8ed

Please sign in to comment.