Skip to content

Commit 93ee6dc

Browse files
committed
RELEASE: v0.2.1 setup
1 parent b0ee5ef commit 93ee6dc

4 files changed

Lines changed: 18 additions & 3 deletions

File tree

doc/changes.rst

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

44
.. currentmodule:: patsy
55

6+
v0.2.1
7+
------
8+
9+
* Fixed a nasty bug in missing value handling where, if missing values
10+
were present, ``dmatrix(..., result_type="dataframe")`` would always
11+
crash, and ``dmatrices("y ~ 1")`` would produce left- and right-hand
12+
side matrices that had different numbers of rows. (As far as I can
13+
tell, this bug could not possibly cause incorrect results, only
14+
crashes, since it always involved the creation of matrices with
15+
incommensurate shapes. Therefore there is no need to worry about the
16+
accuracy of any analyses that were successfully performed with
17+
v0.2.0.)
18+
* Modified ``patsy/__init__.py`` to work around limitations in
19+
py2exe/py2app/etc.
20+
621
v0.2.0
722
------
823

patsy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import sys
1010

11-
__version__ = "0.2.0+dev"
11+
__version__ = "0.2.1"
1212

1313
# Do this first, to make it easy to check for warnings while testing:
1414
import os

release-checklist.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* make sure appropriate ..versionadded:: directives are present
44
* make sure docs are up to date
55
* verify that the ">97% coverage" claim in overview.rst is still true.
6-
*'cd docs; make html -- check that there are no warnings
6+
* cd docs; make html -- check that there are no warnings
77
* check MANIFEST.in
88
* update version in doc/changes.rst, setup.py, patsy/__init__.py
99
* make sure there are no uncommitted changes

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
setup(
2121
name="patsy",
22-
version="0.2.0+dev",
22+
version="0.2.1",
2323
description=DESC,
2424
long_description=LONG_DESC,
2525
author="Nathaniel J. Smith",

0 commit comments

Comments
 (0)