diff --git a/.travis.yml b/.travis.yml index 197b11b..c3afb2b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,12 @@ language: python python: - "2.7" - # - "3.5" # looks like ruamel.ordereddict doesn't build for python3 + - "3.3" + - "3.4" + - "3.5" + - "3.6" + # command to install dependencies -install: "pip install -r requirements.txt" +install: pip install -r requirements.txt # command to run tests -script: make \ No newline at end of file +script: make diff --git a/requirements.txt b/requirements.txt index ed6b7f0..9878b9d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ --e . +-e . dateparser==0.5.0 humanize==0.5.1 iso8601==0.1.11 @@ -8,7 +8,8 @@ pytest==3.0.5 python-dateutil==2.6.0 pytz==2016.10 regex==2016.11.21 -ruamel.ordereddict==0.4.9 +#ruamel.ordereddict is only needed for python 2 +#ruamel.ordereddict==0.4.9 ruamel.yaml==0.13.4 six==1.10.0 typing==3.5.2.2