Skip to content

Commit

Permalink
#78 upgrade requirements (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
vancamti authored Dec 21, 2021
1 parent 2289525 commit 55c0bb8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 15 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
sudo: false
python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
Expand Down
16 changes: 7 additions & 9 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,18 @@
--requirement requirements.txt

# Postgresql database access
psycopg2==2.8.4
psycopg2==2.9.2

# Documentation
Sphinx==1.8.5 ; python_version < '3.5'
Sphinx==3.1.2 ; python_version >= '3.5'
Sphinx==4.3.1

# Testing
pytest==4.6.11 ; python_version < '3.0'
pytest==5.4.3 ; python_version >= '3.0'
pytest-cov==2.10.0
coveralls==1.11.1
pytest==6.2.5
pytest-cov==3.0.0
coveralls==3.3.1

# Linting
flake8==3.7.9
flake8==4.0.1
mccabe==0.6.1
pep8==1.7.1
pyflakes==2.1.1
pyflakes==2.4.0
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
SQLAlchemy==1.3.18
skosprovider==0.7.1
#-e git+https://github.com/koenedaele/skosprovider.git@DEV_0.7.0#egg=skosprovider
SQLAlchemy==1.4.28
skosprovider==1.1.0
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
]

requires = [
'skosprovider>=0.7.0',
'skosprovider>=1.1.0',
'sqlalchemy',
]

Expand All @@ -39,7 +39,6 @@
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit 55c0bb8

Please sign in to comment.