Skip to content

Commit

Permalink
Updated stuff for the new version of psycopg2 and django
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Apr 12, 2019
1 parent bdd99d1 commit cab4145
Show file tree
Hide file tree
Showing 6 changed files with 283 additions and 175 deletions.
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,22 @@ env:
- DJANGO_VERSION=1.11.*
- DJANGO_VERSION=2.0.*
- DJANGO_VERSION=2.1.*
- DJANGO_VERSION=2.2.*

matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION=2.0.*
- python: "2.7"
env: DJANGO_VERSION=2.1.*
- python: "2.7"
env: DJANGO_VERSION=2.2.*
- python: "3.7-dev"
env: DJANGO_VERSION=1.11.*

install:
- pip install flake8 coverage coveralls
- pip install psycopg2>=2.7.3
- pip install psycopg2>=2.8.1
- pip install -q Django==$DJANGO_VERSION

script:
Expand Down
5 changes: 3 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ verify_ssl = true
name = "pypi"

[packages]
django = ">=2.0.8"
"psycopg2" = "*"
django = ">=2.2.0"
"psycopg2" = ">=2.8.1"

[dev-packages]
Sphinx = "*"
Expand All @@ -16,6 +16,7 @@ coverage = "*"
python-coveralls = "*"
tox = "*"
requests = ">=2.20.0"
mock = "*"

[requires]
python_version = "3.6"

0 comments on commit cab4145

Please sign in to comment.