Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenMaude committed Jul 6, 2020
1 parent 651a0b8 commit 23df59b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.6]
python: [2.7]
# python: [3.5, 3.6, 3.7, 3.8]

steps:
Expand All @@ -25,7 +25,11 @@ jobs:

- name: Install extra packages for tests
run: |
pip install wheel nose lxml
pip install setuptools wheel nose lxml
- name: Install requirements
run: |
pip install -r requirements.txt
- name: Install package
run: |
Expand Down
4 changes: 4 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
six
requests
alembic==0.9.4
sqlalchemy==1.0.19
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def has_external_dependency(name):
try:
from setuptools import setup
config['install_requires'] = ['requests', 'six',
'alembic==0.9.4', 'sqlalchemy==1.0.19'],
'alembic', 'sqlalchemy'],
except ImportError:
pass

Expand Down

0 comments on commit 23df59b

Please sign in to comment.