Skip to content

Commit

Permalink
fix(setup): setup.py: require psycopg2-binary instead of psycopg2.
Browse files Browse the repository at this point in the history
  • Loading branch information
desaintmartin committed Nov 18, 2021
1 parent 792f194 commit 50c9020
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v4.0.3 (2021-11-18)
### Fixes
- setup.py: require `psycopg2-binary` instead of `psycopg2`.

## v4.0.3 (2021-10-09)
### Fixes
- Test python 3.10 in CI.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.3
4.0.4
23 changes: 12 additions & 11 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,35 +4,35 @@
#
# pip-compile --no-emit-index-url
#
alembic==1.7.4
alembic==1.7.5
# via chartreuse (setup.py)
cachetools==4.2.4
# via google-auth
certifi==2021.10.8
# via
# kubernetes
# requests
charset-normalizer==2.0.6
charset-normalizer==2.0.7
# via requests
google-auth==2.3.0
google-auth==2.3.3
# via kubernetes
greenlet==1.1.2
# via sqlalchemy
idna==3.2
idna==3.3
# via requests
importlib-metadata==4.8.1
importlib-metadata==4.8.2
# via alembic
importlib-resources==5.2.2
importlib-resources==5.4.0
# via alembic
kubernetes==18.20.0
kubernetes==19.15.0
# via wiremind-kubernetes
mako==1.1.5
mako==1.1.6
# via alembic
markupsafe==2.0.1
# via mako
oauthlib==3.1.1
# via requests-oauthlib
psycopg2==2.9.1
psycopg2-binary==2.9.2
# via chartreuse (setup.py)
pyasn1==0.4.8
# via
Expand All @@ -42,7 +42,7 @@ pyasn1-modules==0.2.8
# via google-auth
python-dateutil==2.8.2
# via kubernetes
pyyaml==5.4.1
pyyaml==6.0
# via kubernetes
requests==2.26.0
# via
Expand All @@ -54,9 +54,10 @@ rsa==4.7.2
# via google-auth
six==1.16.0
# via
# google-auth
# kubernetes
# python-dateutil
sqlalchemy==1.4.25
sqlalchemy==1.4.27
# via alembic
urllib3==1.26.7
# via
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
python_requires=">=3.7.0",
install_requires=[
"alembic==1.*",
"psycopg2==2.*",
"psycopg2-binary==2.*",
"wiremind-kubernetes==6.*,>=6.3.5",
],
extras_require={
Expand Down

0 comments on commit 50c9020

Please sign in to comment.