Skip to content

Commit

Permalink
don't assume require() is available (see #6)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheppard committed Sep 2, 2020
1 parent 09141e1 commit d464260
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ python: 3.8
dist: bionic
env:
global:
- DJANGO="Django==3.0.2"
- DRF="djangorestframework==3.11.0"
- DJANGO="Django==3.1.1"
- DRF="djangorestframework==3.11.1"
- WQ_CORE="wq.core==1.2.0"
- WQ_APP="wq.app==1.2.0"
- WQ_DB="wq.db==1.2.0"
- XLSCONV="xlsconv==1.1.0"
- WQ_DB="wq.db==1.2.1"
- XLSCONV="xlsconv==1.2.0"
install:
- pip install $DJANGO $DRF $XLSCONV
- pip install $WQ_CORE $WQ_APP $WQ_DB
Expand Down
2 changes: 1 addition & 1 deletion django_project
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def list_package_data(root):
install_requires=[
'wq.core',
'psycopg2-binary',
'xlsconv>=1.1.0',
'xlsconv>=1.2.0',
],
setup_requires=[
'setuptools_scm',
Expand All @@ -92,6 +92,7 @@ def list_package_data(root):
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Code Generators',
'Topic :: Text Processing :: Markup :: HTML',
Expand Down

0 comments on commit d464260

Please sign in to comment.