From 5b44556cb7558fda6c124f7e74e2ce4f079ff395 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5ken=20Lid?= Date: Wed, 16 Aug 2017 16:32:00 +0200 Subject: [PATCH 1/3] Update requirements.txt enum34 is not compatible with standard library enum since python 3.6, `enum-compat` solves this by not installing it unless python version < 3.4 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6316f9f..3507dae 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ cached-property Django>=1.8 -enum34 +enum-compat six From c07314d7709044d1030390c663ae6ed5efaf5b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5ken=20Lid?= Date: Wed, 16 Aug 2017 17:01:37 +0200 Subject: [PATCH 2/3] Update .travis.yml freezing coveralls at version 1.1, since later version uses cryptography 1.9, which is not compatible with the default Travis pypy version. RuntimeError: cryptography 1.9 is not compatible with PyPy < 5.3. Please upgrade PyPy to use this library. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 16ac271..fba58ab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ before_install: install: - pip install $DJANGO - pip install -r requirements-dev.txt - - pip install coveralls + - pip install coveralls==1.1 # travis pypy not compatible with later versions - pip freeze # command to run tests, e.g. python setup.py test From 9c2f6fe1a405b4e4e17128670b5e95a8f7c48244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5ken=20Lid?= Date: Thu, 17 Aug 2017 00:13:59 +0200 Subject: [PATCH 3/3] Update AUTHORS.rst --- AUTHORS.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS.rst b/AUTHORS.rst index 6754498..e21bedc 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -11,3 +11,4 @@ Contributors * João Neto - https://github.com/netjinho * Jorik Kraaikamp - https://github.com/JostCrow +* Håken Lid - https://github.com/haakenlid