From 68f267cd0b2df6abe67330f4cb2ee26ab046aabe Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Sat, 20 Jan 2018 12:24:51 +0100 Subject: [PATCH 1/2] Fix django dependency in requirements.txt With pip 9.0.1 - the current newest version - this specification is invalid. Just require 1.11 or newer. --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index adc7140..d3b99d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -django>=1.10,1.11 +django>=1.11 celery django-celery jsonpickle From 0e18482f4e2f3daca0306cd774f85bd6b44ee70c Mon Sep 17 00:00:00 2001 From: Philipp Hagemeister Date: Sat, 20 Jan 2018 12:16:00 +0100 Subject: [PATCH 2/2] add a travis configuration file travis is a service that automatically runs the build on each commit --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..68df54b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python + +python: + - "3.5" + - "3.6" + +install: + - pip3 install -r requirements.txt + +script: + # No tests at the moment, so just import the ticker + python -c 'import ticker'