Align GA file and requirements file with rest of extensions
This commit is contained in:
parent
dd42aa8318
commit
17c7ffd37f
|
@ -77,19 +77,13 @@ jobs:
|
|||
run: |
|
||||
apk add --no-cache \
|
||||
python2-dev
|
||||
pip install -r requirements-py2.txt
|
||||
- name: Install dependency (python3)
|
||||
if: ${{ matrix.ckan-version == '2.9' }}
|
||||
run: |
|
||||
apk add --no-cache \
|
||||
python3-dev
|
||||
- name: Install requirements (python2)
|
||||
if: ${{ matrix.ckan-version != '2.9' }}
|
||||
run: |
|
||||
pip install -r pip-requirements.txt
|
||||
- name: Install requirements (python3)
|
||||
if: ${{ matrix.ckan-version == '2.9' }}
|
||||
run: |
|
||||
pip install -r pip3-requirements.txt
|
||||
pip install -r requirements.txt
|
||||
- name: Install requirements
|
||||
run: |
|
||||
pip install -e .
|
|
@ -0,0 +1 @@
|
|||
requirements-py2.txt
|
|
@ -1,10 +0,0 @@
|
|||
GeoAlchemy>=0.6
|
||||
GeoAlchemy2==0.5.0
|
||||
Shapely>=1.2.13
|
||||
pyproj==2.2.2
|
||||
OWSLib==0.18.0
|
||||
lxml>=2.3
|
||||
argparse
|
||||
pyparsing>=2.1.10
|
||||
requests>=1.1.0
|
||||
six
|
|
@ -0,0 +1 @@
|
|||
requirements.txt
|
|
@ -0,0 +1,10 @@
|
|||
GeoAlchemy>=0.6
|
||||
GeoAlchemy2==0.5.0
|
||||
Shapely>=1.2.13
|
||||
pyproj==2.2.2
|
||||
OWSLib==0.18.0
|
||||
lxml>=2.3
|
||||
argparse
|
||||
pyparsing>=2.1.10
|
||||
requests>=1.1.0
|
||||
six
|
Loading…
Reference in New Issue