From 81e3edc0414aa507761c79d16d40200946128962 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Sat, 27 Jul 2019 19:58:20 +0300 Subject: [PATCH] Update some components in requirements file --- pyfa.spec | 1 + requirements.txt | 4 ++-- tox.ini | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pyfa.spec b/pyfa.spec index 927383eec..38b20ed0c 100644 --- a/pyfa.spec +++ b/pyfa.spec @@ -52,6 +52,7 @@ if os_name == 'Darwin': import_these = [ 'numpy.core._dtype_ctypes', # https://github.com/pyinstaller/pyinstaller/issues/3982 + 'numpy.random.common', # https://github.com/pyfa-org/Pyfa/issues/1998 'sqlalchemy.ext.baked' # windows build doesn't launch without if when using sqlalchemy 1.3.x ] diff --git a/requirements.txt b/requirements.txt index f6676421c..8fcdcf82a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ -wxPython == 4.0.4 +wxPython == 4.0.6 logbook >= 1.0.0 -matplotlib >= 2.0.0 +matplotlib >= 3.0.0 python-dateutil requests >= 2.0.0 sqlalchemy >= 1.3.0 diff --git a/tox.ini b/tox.ini index c7490de61..ec41b28b2 100644 --- a/tox.ini +++ b/tox.ini @@ -7,7 +7,7 @@ passenv = CI TRAVIS TRAVIS_* deps = -rrequirements.txt -rrequirements_test.txt -basepython = python3.6 +basepython = python3.7 commands = py.test -vv --cov Pyfa tests2/ [testenv:pep8]