Skip to content

Commit bac9bea

Browse files
authored
Merge pull request #138 from njsmith/release-0.5.1
Release engineering for v0.5.1
2 parents 54dcf7b + c05ad5e commit bac9bea

5 files changed

Lines changed: 13 additions & 2 deletions

File tree

doc/changes.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ Changes
33

44
.. currentmodule:: patsy
55

6+
v0.5.1
7+
------
8+
9+
* The Python 3.6.7 and 3.7.1 point releases changed the standard
10+
tokenizer module in a way that broke patsy. Updated patsy to work
11+
with these point releases. (See `#131
12+
<https://github.com/pydata/patsy/pull/131>`__ for details.)
13+
14+
615
v0.5.0
716
------
817

doc/library-developers.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ And here's how it can be used:
120120
exec(f.read())
121121
122122
.. ipython:: python
123+
:okwarning:
123124
124125
from patsy import demo_data
125126
data = demo_data("x", "y", "a")

doc/quickstart.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ method attached, so we can pass them directly to a regression function
4343
like :func:`np.linalg.lstsq`:
4444

4545
.. ipython:: python
46+
:okwarning:
4647
4748
outcome, predictors = dmatrices("y ~ x1 + x2", data)
4849
betas = np.linalg.lstsq(predictors, outcome)[0].ravel()

doc/stateful-transforms.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ careful of. Let's put them in red:
151151
.. warning::
152152

153153
If you are unwise enough to ignore this section, write a function
154-
like `naive_center` above, and use it in a formula, then Patsy will
154+
like ``naive_center`` above, and use it in a formula, then Patsy will
155155
not notice. If you use that formula with :func:`incr_dbuilders` or
156156
for predictions, then you will just silently get the wrong
157157
results. We have a plan to detect such cases, but it isn't

patsy/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
# want. (Contrast with the special suffix 1.0.0.dev, which sorts *before*
1818
# 1.0.0.)
1919

20-
__version__ = "0.5.0+dev"
20+
__version__ = "0.5.1+dev"

0 commit comments

Comments
 (0)