File tree 2 files changed +11
-5
lines changed
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,15 @@ All Patsy releases are archived at Zenodo:
8
8
.. image :: https://zenodo.org/badge/DOI/10.5281/zenodo.592075.svg
9
9
:target: https://doi.org/10.5281/zenodo.592075
10
10
11
+ v1.0.1
12
+ ------
13
+
14
+ * Removed an inadvertent hard dependency on pytest.
15
+
11
16
v1.0.0
12
17
------
13
18
19
+ * Add support for Python 3.13.
14
20
* Drop support for Python 2.7 (and remove dependency on the `six ` module).
15
21
* Fix compatibility with `numpy >= 2 `.
16
22
* Update development status to 'mature'.
Original file line number Diff line number Diff line change 6
6
# places -- it is imported by patsy/__init__.py, execfile'd by setup.py, etc.
7
7
8
8
# We use a simple scheme:
9
- # 1.0.0 -> 1.0.0 +dev -> 1.1.0 -> 1.1.0+dev
9
+ # 1.0.1 -> 1.0.1 +dev -> 1.1.0 -> 1.1.0+dev
10
10
# where the +dev versions are never released into the wild, they're just what
11
11
# we stick into the VCS in between releases.
12
12
#
13
13
# This is compatible with PEP 440:
14
14
# http://legacy.python.org/dev/peps/pep-0440/
15
15
# via the use of the "local suffix" "+dev", which is disallowed on index
16
- # servers and causes 1.0.0 +dev to sort after plain 1.0.0 , which is what we
17
- # want. (Contrast with the special suffix 1.0.0 .dev, which sorts *before*
18
- # 1.0.0 .)
16
+ # servers and causes 1.0.1 +dev to sort after plain 1.0.1 , which is what we
17
+ # want. (Contrast with the special suffix 1.0.1 .dev, which sorts *before*
18
+ # 1.0.1 .)
19
19
20
- __version__ = "1.0.0 "
20
+ __version__ = "1.0.1 "
You can’t perform that action at this time.
0 commit comments