File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+
621v0.2.0
722------
823
Original file line number Diff line number Diff line change 88
99import 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:
1414import os
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1919
2020setup (
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" ,
You can’t perform that action at this time.
0 commit comments