diff --git a/README.md b/README.md index fe85442..7f5222e 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/create_new_venv.cmd b/create_new_venv.cmd index 7a5751e..9f3b07e 100644 --- a/create_new_venv.cmd +++ b/create_new_venv.cmd @@ -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 diff --git a/setup.py b/setup.py index c121294..cbb5387 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ def _get_requires_list(): 'requests', 'pyyaml', 'pyshp', - 'six', + 'six>=1.11.0', 'slugify' ]