From dceedb4c494707e3fef736c92ef6993480c69f7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ingvar=20Dahlgren?= Date: Tue, 24 Nov 2020 00:31:28 +0100 Subject: [PATCH] About to tag v0.8.0 --- CHANGES.rst | 6 ++++++ scripts/run_tests.sh | 2 +- setup.py | 10 +++++----- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index b502c110..7ee89e37 100644 --- a/CHANGES.rst +++ b/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. diff --git a/scripts/run_tests.sh b/scripts/run_tests.sh index fa87faa5..a0bef9c5 100755 --- a/scripts/run_tests.sh +++ b/scripts/run_tests.sh @@ -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 diff --git a/setup.py b/setup.py index 1327bd61..6f9df2b3 100755 --- a/setup.py +++ b/setup.py @@ -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())) @@ -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' ],