-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install ckan separately as editable installs arent supported by the n…
…ew convention and remove typing as it is not needed in current python versions
- Loading branch information
Showing
3 changed files
with
12 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,12 @@ | |
virtualenv: "{{ virtualenv }}" | ||
register: ckan_installation | ||
|
||
- name: Install ckan | ||
pip: | ||
name: git+https://github.com/ckan/[email protected]#egg=ckan | ||
editable: true | ||
virtualenv: "{{ virtualenv }}" | ||
|
||
#- name: Install CKAN requirements | ||
# pip: requirements={{ virtualenv }}/src/ckan/requirements.txt virtualenv={{ virtualenv }} state=latest | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
-e git+https://github.com/ckan/[email protected]#egg=ckan[requirements] | ||
ckan[requirements] @ git+https://github.com/ckan/[email protected] | ||
|
||
# requirements of apicatalog | ||
testrepository==0.0.20 | ||
typing | ||
uwsgi | ||
|
||
# harvest requires newer six | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ | |
# | ||
# pip-compile | ||
# | ||
-e git+https://github.com/ckan/[email protected]#egg=ckan # [requirements] removed manually to stop resolving | ||
# via -r requirements.in | ||
alembic==1.0.0 | ||
# via ckan | ||
babel==2.7.0 | ||
|
@@ -24,6 +22,9 @@ chardet==4.0.0 | |
# via | ||
# ckan | ||
# requests | ||
# Removed manually, ckan is installed with ansible as this convention does not allow editable installs | ||
#ckan @ git+https://github.com/ckan/[email protected] | ||
# via -r requirements.in | ||
click==7.1.2 | ||
# via | ||
# ckan | ||
|
@@ -58,7 +59,7 @@ idna==2.10 | |
# via | ||
# ckan | ||
# requests | ||
importlib-metadata==5.0.0 | ||
importlib-metadata==7.0.0 | ||
# via markdown | ||
itsdangerous==1.1.0 | ||
# via | ||
|
@@ -168,8 +169,6 @@ testtools==2.5.0 | |
# via | ||
# python-subunit | ||
# testrepository | ||
typing==3.7.4.3 | ||
# via -r requirements.in | ||
tzlocal==1.3 | ||
# via ckan | ||
unicodecsv==0.14.1 | ||
|
@@ -199,7 +198,7 @@ werkzeug[watchdog]==1.0.0 | |
# via | ||
# ckan | ||
# flask | ||
zipp==3.10.0 | ||
zipp==3.17.0 | ||
# via importlib-metadata | ||
zope-interface==4.3.2 | ||
# via | ||
|