Skip to content

Commit dceedb4

Browse files
committed
About to tag v0.8.0
1 parent b46957c commit dceedb4

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v0.8.0
2+
======
3+
- Some minor fixes.
4+
- Updated lowest support versions of a few dependencies.
5+
- Dropped pytest-pep8 for now (unmaintained).
6+
17
v0.7.12
28
=======
39
- Update some heavy elements Uuo -> Og, etc.

scripts/run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# $ ./scripts/run_tests.sh
44
# or
55
# $ ./scripts/run_tests.sh --cov chempy --cov-report html
6-
CHEMPY_DEPRECATION_FILTER='ignore' ${PYTHON:-python3} -m pytest -ra --doctest-modules --pep8 --flakes $@
6+
CHEMPY_DEPRECATION_FILTER='ignore' ${PYTHON:-python3} -m pytest -ra --doctest-modules --flakes $@
77
MPLBACKEND=Agg ${PYTHON:-python3} -m doctest README.rst
88
rstcheck README.rst

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@ def _path_under_setup(*args):
8787
_author, _author_email = open(_path_under_setup('AUTHORS'), 'rt').readline().split('<')
8888

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

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

0 commit comments

Comments
 (0)