1
0
mirror of https://github.com/ilri/dspace-statistics-api.git synced 2025-06-23 08:28:26 +02:00

Re-create pipenv environment from scratch

When I originally created the pipenv environment I used the standard
pip requirements.txt that I already had, which captured all the mod-
ules and their exact versions at the time. This makes it hard to se-
parate the project's actual dependencies from the dependencies' dep-
endencies, complicating the Pipfile and making it hard to update mo-
dule versions later.

I've re-created the environment with the following commands:

    $ pipenv install gunicorn falcon psycopg2-binary git+https://github.com/alanorth/SolrClient.git@kazoo-2.5.0#egg=SolrClient
    $ pipenv install --dev ipython flake8 pytest
This commit is contained in:
2018-11-14 09:07:32 +02:00
parent a88600c92b
commit a835b0fdc5
2 changed files with 36 additions and 95 deletions

16
Pipfile
View File

@ -4,22 +4,14 @@ verify_ssl = true
name = "pypi"
[packages]
certifi = "==2018.10.15"
chardet = "==3.0.4"
falcon = "==1.4.1"
gunicorn = "==19.9.0"
idna = "==2.7"
kazoo = "==2.5.0"
"psycopg2-binary" = "==2.7.5"
python-mimeparse = "==1.6.0"
requests = "==2.20.0"
six = "==1.11.0"
gunicorn = "*"
falcon = "*"
"psycopg2-binary" = "*"
solrclient = {ref = "kazoo-2.5.0", git = "https://github.com/alanorth/SolrClient.git"}
"urllib3" = "==1.24"
[dev-packages]
"flake8" = "*"
ipython = "*"
"flake8" = "*"
pytest = "*"
[requires]