Skip to content

Commit

Permalink
About to tag v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Nov 23, 2020
1 parent b46957c commit dceedb4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,9 @@
v0.8.0
======
- Some minor fixes.
- Updated lowest support versions of a few dependencies.
- Dropped pytest-pep8 for now (unmaintained).

v0.7.12
=======
- Update some heavy elements Uuo -> Og, etc.
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_tests.sh
Expand Up @@ -3,6 +3,6 @@
# $ ./scripts/run_tests.sh
# or
# $ ./scripts/run_tests.sh --cov chempy --cov-report html
CHEMPY_DEPRECATION_FILTER='ignore' ${PYTHON:-python3} -m pytest -ra --doctest-modules --pep8 --flakes $@
CHEMPY_DEPRECATION_FILTER='ignore' ${PYTHON:-python3} -m pytest -ra --doctest-modules --flakes $@
MPLBACKEND=Agg ${PYTHON:-python3} -m doctest README.rst
rstcheck README.rst
10 changes: 5 additions & 5 deletions setup.py
Expand Up @@ -87,12 +87,12 @@ def _path_under_setup(*args):
_author, _author_email = open(_path_under_setup('AUTHORS'), 'rt').readline().split('<')

extras_req = {
'integrators': ['pyodeint>=0.10.4', 'pycvodes>=0.13.1', 'pygslodeiv2>=0.9.4'],
'solvers': ['pykinsol>=0.1.5'],
'native': ['pycompilation>=0.4.9', 'pycodeexport>=0.1.2', 'appdirs'],
'integrators': ['pyodeint>=0.10.4', 'pycvodes>=0.14.0', 'pygslodeiv2>=0.9.4'],
'solvers': ['pykinsol>=0.1.6'],
'native': ['pycompilation>=0.4.12', 'pycodeexport>=0.1.3', 'appdirs'],
'docs': ['Sphinx', 'sphinx_rtd_theme', 'numpydoc'],
'plotting': ['bokeh>=0.13.0', 'ipywidgets'],
'testing': ['pytest>=3.9', 'pytest-cov', 'pytest-flakes', 'pytest-pep8', 'rstcheck']
'testing': ['pytest>=3.9', 'pytest-cov', 'pytest-flakes', 'rstcheck']
}
extras_req['all'] = list(chain(extras_req.values()))

Expand All @@ -111,7 +111,7 @@ def _path_under_setup(*args):
install_requires=[
'numpy>1.11.3', 'scipy>=1.0.1', 'matplotlib>=2.2.3',
'sympy>=1.1.1,!=1.2', 'quantities>=0.12.1', 'pyneqsys>=0.5.5',
'pyodesys>=0.13.1' if sys.version_info[0] >= 3 else 'pyodesys<0.12',
'pyodesys>=0.14.0' if sys.version_info[0] >= 3 else 'pyodesys<0.12',
'pyparsing>=2.0.3', 'sym>=0.3.4', 'jupyter', 'pulp>=1.6.8',
'dot2tex>=2.11.3'
],
Expand Down

0 comments on commit dceedb4

Please sign in to comment.