Skip to content

Commit

Permalink
Update Python versions. Refs #62
Browse files Browse the repository at this point in the history
  • Loading branch information
koenedaele committed Oct 4, 2019
1 parent a49d070 commit a0459da
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
services:
- postgresql
env:
Expand Down
2 changes: 2 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
------------------
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="""\
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, cover
envlist = py27, py35, py36, p37, cover

[testenv]
commands =
Expand All @@ -9,7 +9,7 @@ commands =

[testenv:cover]
basepython =
python2.7
python3.7
commands =
pip install -r requirements-dev.txt
python setup.py develop
Expand Down

0 comments on commit a0459da

Please sign in to comment.