Skip to content

Commit

Permalink
v.0.0.29 (#154)
Browse files Browse the repository at this point in the history
* Require newest pygmo.

* Bump version.

* Update changes.rst
  • Loading branch information
janosg authored Apr 16, 2020
1 parent 5af4ec4 commit dc5d777
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .conda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ requirements:
- joblib
- numpy >=1.16
- pandas >=0.24
- pygmo >=2.10
- pygmo >=2.15
- bokeh >=1.3
- scipy
- numdifftools >=0.9.20
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ chronological order. We follow `semantic versioning <https://semver.org/>`_ and
releases are available on `Anaconda.org
<https://anaconda.org/OpenSourceEconomics/estimagic>`_.


0.0.29 - 2020-04-16
-------------------

- :gh:`153` adds documentation for the CLI (:ghuser:`tobiasraabe`)
- :gh:`152` makes estimagic work with pandas 1.0 (:ghuser:`SofiaBadini`)

0.0.28 - 2020-03-17
-------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def setup(app):
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = "0.0.28"
release = "0.0.29"
version = ".".join(release.split(".")[:2])

# The language for content autogenerated by Sphinx. Refer to documentation
Expand Down
2 changes: 1 addition & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies:
- pandas>=0.24
- pdbpp
- petsc4py>=3.11
- pygmo=2.10
- pygmo=2.15
- pytest
- pytest-cov
- pytest-xdist
Expand Down
2 changes: 1 addition & 1 deletion estimagic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.28"
__version__ = "0.0.29"


from estimagic.optimization.optimize import minimize # noqa: F401
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.28
current_version = 0.0.29

[bumpversion:file:setup.py]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="estimagic",
version="0.0.28",
version="0.0.29",
description="Tools for the estimation of (structural) econometric models.",
long_description="""
Estimagic is a Python package that helps to build high-quality and user
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ conda_deps =
numpy
petsc4py >= 3.11
pandas >= 0.24
pygmo >= 2.10
pygmo >= 2.15
numba
pytest
pytest-cov
Expand Down

0 comments on commit dc5d777

Please sign in to comment.