fix(requirements): support Python 3.13 for psycopg2-binary
This commit is contained in:
parent
dd93e2edb8
commit
5d61947316
2 changed files with 4 additions and 2 deletions
|
|
@ -376,7 +376,8 @@ protobuf==4.21.12
|
||||||
# grpcio-status
|
# grpcio-status
|
||||||
# mysql-connector-python
|
# mysql-connector-python
|
||||||
# proto-plus
|
# proto-plus
|
||||||
psycopg2-binary==2.9.9
|
psycopg2-binary==2.9.9; python_version < "3.13"
|
||||||
|
psycopg2-binary==2.9.11; python_version >= "3.13"
|
||||||
# via -r requirements.txt
|
# via -r requirements.txt
|
||||||
pure-eval==0.2.3
|
pure-eval==0.2.3
|
||||||
# via stack-data
|
# via stack-data
|
||||||
|
|
|
||||||
|
|
@ -103,7 +103,8 @@ pyviz-comms>=2.0.0
|
||||||
xyzservices>=2021.09.1
|
xyzservices>=2021.09.1
|
||||||
|
|
||||||
# PostgreSQL connector dependencies
|
# PostgreSQL connector dependencies
|
||||||
psycopg2-binary==2.9.9
|
psycopg2-binary==2.9.9; python_version < "3.13"
|
||||||
|
psycopg2-binary==2.9.11; python_version >= "3.13"
|
||||||
asyncpg==0.30.0
|
asyncpg==0.30.0
|
||||||
|
|
||||||
## Stripe payments
|
## Stripe payments
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue