diff --git a/.travis.yml b/.travis.yml index d68a186..57df90e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,9 @@ language: python sudo: false python: - "2.7" - - "3.4" - "3.5" - "3.6" + - "3.7" services: - postgresql env: diff --git a/HISTORY.rst b/HISTORY.rst index 7d7109b..20154cd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,6 +5,8 @@ `infer_concept_relations` attribute. (#53) * Add the ability to query on matches in line with latest skosprovider version. (#57) +* Drop support for Python 3.4. Add support for Python 3.7. This + is also the last version to support Python 2. (#62) 0.5.2 (2018-11-13) ------------------ diff --git a/requirements-dev.txt b/requirements-dev.txt index 2e97d82..42ade0a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -8,7 +8,7 @@ psycopg2==2.8.3 Sphinx==1.8.5 # Testing -pytest==4.6.4 +pytest==4.6.5 pytest-cov==2.7.1 coveralls==1.8.2 diff --git a/setup.py b/setup.py index fffe593..b43be42 100755 --- a/setup.py +++ b/setup.py @@ -39,9 +39,9 @@ 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], test_suite='nose.collector', entry_points="""\ diff --git a/tox.ini b/tox.ini index 5a34a18..a3e7e78 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py34, py35, py36, cover +envlist = py27, py35, py36, p37, cover [testenv] commands = @@ -9,7 +9,7 @@ commands = [testenv:cover] basepython = - python2.7 + python3.7 commands = pip install -r requirements-dev.txt python setup.py develop