Skip to content

Commit c9b29d7

Browse files
committed
WIP
1 parent 651a0b8 commit c9b29d7

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/ci-build.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python: [3.6]
14+
python: [2.7]
1515
# python: [3.5, 3.6, 3.7, 3.8]
1616

1717
steps:
@@ -25,7 +25,11 @@ jobs:
2525

2626
- name: Install extra packages for tests
2727
run: |
28-
pip install wheel nose lxml
28+
pip install setuptools wheel nose lxml
29+
30+
- name: Install requirements
31+
run: |
32+
pip install -r requirements.txt
2933
3034
- name: Install package
3135
run: |

requirements.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
six
2+
requests
3+
alembic
4+
sqlalchemy

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def has_external_dependency(name):
4646
try:
4747
from setuptools import setup
4848
config['install_requires'] = ['requests', 'six',
49-
'alembic==0.9.4', 'sqlalchemy==1.0.19'],
49+
'alembic', 'sqlalchemy'],
5050
except ImportError:
5151
pass
5252

0 commit comments

Comments
 (0)