-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from ssciolla/issue-48-dependency-update
Perform dependency update, simplify development with Docker (#48)
- Loading branch information
Showing
5 changed files
with
35 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
**/env.json | ||
**/__pycache__ | ||
venv |
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
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: '3' | ||
|
||
services: | ||
job: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
volumes: | ||
- ${HOME}/secrets/kartograafr:/kartograafr/configuration/secrets | ||
- .:/kartograafr | ||
container_name: kartograafr |
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,7 +1,12 @@ | ||
# Note: this does not include arcgis, which needs to be installed manually when using virtualenv. | ||
# Use the following command: pip install arcgis --no-deps | ||
|
||
bs4==0.0.1 | ||
python-dateutil==2.8.1 | ||
requests==2.22.0 | ||
url-normalize==1.4.1 | ||
beautifulsoup4==4.9.3 | ||
ntlm-auth==1.5.0 | ||
python-dateutil==2.8.2 | ||
requests==2.26.0 | ||
requests-toolbelt==0.9.1 | ||
requests_ntlm==1.1.0 | ||
six==1.16.0 | ||
ujson==4.1.0 | ||
url-normalize==1.4.3 |