Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,3 +133,7 @@ Extra information associated with clause `datatheme`:

The Administrative boundary (level 3) data generously supplied by the World Food Program, downloaded from https://www.wfp.org/.
```

# Extra info in the Readme

This info is added as a demo of using git branches for a collegue.
6 changes: 3 additions & 3 deletions create_new_venv.cmd
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

if not exist env27\Scripts\python.exe (cmd /c C:/py27arcgis106/ArcGIS10.6/python.exe -m virtualenv --system-site-packages env27)
if not exist env37\Scripts\python.exe (cmd /c "C:\Program Files\Python37\python.exe" -m virtualenv env37)
if not exist env38\Scripts\python.exe (cmd /c "C:\Program Files\Python38\python.exe" -m virtualenv env38)
:: if not exist env37\Scripts\python.exe (cmd /c "C:\Program Files\Python37\python.exe" -m virtualenv env37)
:: if not exist env38\Scripts\python.exe (cmd /c "C:\Program Files\Python38\python.exe" -m virtualenv env38)


:: for %%g in (env27, env37, env38) do (
for %%g in (env27, env38) do (
for %%g in (env27) do (
%%g\Scripts\python.exe -m pip install --no-cache-dir --no-color -e %~dp0
%%g\Scripts\python.exe -m pip install -r requirements-jira.txt
%%g\Scripts\python.exe -m pip install -r requirements-dev.txt
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def _get_requires_list():
'requests',
'pyyaml',
'pyshp',
'six',
'six>=1.11.0',
'slugify'
]

Expand Down