Skip to content

Commit 3555c06

Browse files
1.0.2
1 parent efa450f commit 3555c06

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Python
1414
uses: actions/setup-python@v1
1515
with:
16-
python-version: '3.7'
16+
python-version: '3.10'
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip

doc/changes.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ 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.2
12+
------
13+
14+
* Fixed compatibility with Pandas 3's new `StringDtype`.
15+
1116
v1.0.1
1217
------
1318

patsy/version.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
# places -- it is imported by patsy/__init__.py, execfile'd by setup.py, etc.
77

88
# We use a simple scheme:
9-
# 1.0.1 -> 1.0.1+dev -> 1.1.0 -> 1.1.0+dev
9+
# 1.0.2 -> 1.0.2+dev -> 1.1.0 -> 1.1.0+dev
1010
# where the +dev versions are never released into the wild, they're just what
1111
# we stick into the VCS in between releases.
1212
#
1313
# This is compatible with PEP 440:
1414
# http://legacy.python.org/dev/peps/pep-0440/
1515
# via the use of the "local suffix" "+dev", which is disallowed on index
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.)
16+
# servers and causes 1.0.2+dev to sort after plain 1.0.2, which is what we
17+
# want. (Contrast with the special suffix 1.0.2.dev, which sorts *before*
18+
# 1.0.2.)
1919

20-
__version__ = "1.0.1"
20+
__version__ = "1.0.2"

0 commit comments

Comments
 (0)