Skip to content

Commit

Permalink
Merge pull request #43 from dave-shawley/bump-psycopg2
Browse files Browse the repository at this point in the history
Widen psycopg2 pin to allow 2.9.x
  • Loading branch information
gmr committed Nov 16, 2021
2 parents bcd4236 + 6a5688e commit 6995ad1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014 - 2019 Gavin M. Roy
Copyright (c) 2014 - 2021 Gavin M. Roy
All rights reserved.

Redistribution and use in source and binary forms, with or without modification,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

# PYPY vs cpython
if platform.python_implementation() == 'PyPy':
install_requires = ['psycopg2cffi>=2.7.2,<2.9']
install_requires = ['psycopg2cffi>=2.7.2,<3']
else:
install_requires = ['psycopg2>=2.5.1,<2.9']
install_requires = ['psycopg2>=2.5.1,<3']

# Install tornado if generating docs on readthedocs
if os.environ.get('READTHEDOCS', None) == 'True':
Expand Down

0 comments on commit 6995ad1

Please sign in to comment.