Skip to content

Commit

Permalink
Release 0.6.3 (#411)
Browse files Browse the repository at this point in the history
* prepare patch release 0.6.3

* prepare patch release 0.6.3
  • Loading branch information
aloctavodia authored Sep 17, 2021
1 parent ecc8571 commit a7ddb27
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@

### New features


### Maintenance and fixes

### Documentation

### Deprecation


### 0.6.3

### New features

- Use formulae 0.2.0 (#411)

### Maintenance and fixes

### Documentation
Expand Down
2 changes: 1 addition & 1 deletion bambi/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def __init__(
raise ValueError("Can't instantiate a model without a model formula.")
na_action = "drop" if dropna else "error"
self.formula = formula
self._design = design_matrices(formula, data, na_action, eval_env=1)
self._design = design_matrices(formula, data, na_action, env=1)

if self._design.response is None:
raise ValueError(
Expand Down
2 changes: 1 addition & 1 deletion bambi/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.2"
__version__ = "0.6.3"
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
arviz >= 0.11.2
formulae == 0.1.4
formulae == 0.2.0
numpy>=1.16.1
pandas>=1.0.0
pymc3>=3.9.0
scipy>=1.7.0
statsmodels>=0.9
statsmodels>=0.9

0 comments on commit a7ddb27

Please sign in to comment.