From f7c7390e4f263bdf5e06e25164504fbed28fdee4 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 25 Sep 2018 12:07:58 +0300 Subject: [PATCH] README.md: Add note about Python 3.7 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a664df8..8749e14 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # DSpace Statistics API A quick and dirty REST API to expose Solr view and download statistics for items in a DSpace repository. -Written and tested in Python 3.5 and 3.6. SolrClient (0.2.1) does [not currently run in Python 3.7.0](https://github.com/moonlitesolutions/SolrClient/issues/79). Requires PostgreSQL version 9.5 or greater for [`UPSERT` support](https://wiki.postgresql.org/wiki/UPSERT). +Written and tested in Python 3.5, 3.6, and 3.7. Requires PostgreSQL version 9.5 or greater for [`UPSERT` support](https://wiki.postgresql.org/wiki/UPSERT). ## Installation Create a virtual environment and run it: - $ virtualenv -p /usr/bin/python3.6 venv + $ python -m venv venv $ . venv/bin/activate $ pip install -r requirements.txt $ gunicorn app:api