Skip to content

Commit

Permalink
psycopg3 requires sqlalchemy 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bhazelton committed Nov 13, 2024
1 parent e139de7 commit 506cbb4
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ catcher start, stop or stop identified via a timeout).

### Changed
- Use psycopg3 (on pypi as `psycopg`) rather than psycopg2 to enable numpy 2.0
compatibility
compatibility.
- Add compatibility with pyuvdata>=3.0
- Updated minimum dependency versions: cartopy>=0.21, numpy>=1.23, pyyaml>=5.4.1
python>=3.10
sqlalchemy>=2.0, python>=3.10
- Updated minimum optional dependency versions: h5py>=3.4, pytest>=6.2.5
- Dropped support for python 3.7
- The logic for time filtering in real time getter methods in mc_session to support
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ The required dependencies are:
- pyyaml >= 5.4.1
- redis-py >= 4.3.4 (Note that this is called "redis" on pypi and "redis-py" on conda)
- setuptools_scm <7.0|>=7.0.3
- sqlalchemy >= 1.4
- sqlalchemy >= 2.0

the optional dependencies are:
- h5py >= 3.4.0
Expand Down
2 changes: 1 addition & 1 deletion ci/min_deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ dependencies:
- pyyaml>=5.4.1
- redis-py>=4.3.4
- setuptools_scm<7.0|>=7.0.3
- sqlalchemy>=1.4.0
- sqlalchemy>=2.0
2 changes: 1 addition & 1 deletion ci/min_versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies:
- pyyaml==5.4.1
- redis-py==4.3.4
- setuptools_scm<7.0
- sqlalchemy==1.4.*
- sqlalchemy==2.0.0
- tabulate==0.8.10
- pip:
- hera_qm==2.0.*
Expand Down
2 changes: 1 addition & 1 deletion ci/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
- pyyaml>=5.4.1
- redis-py>=4.3.4
- setuptools_scm<7.0|>=7.0.3
- sqlalchemy>=1.4.0
- sqlalchemy>=2.0
- pip
- pip:
- build
2 changes: 1 addition & 1 deletion ci/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies:
- pyyaml>=5.4.1
- redis-py>=4.3.4
- setuptools_scm<7.0|>=7.0.3
- sqlalchemy>=1.4.0
- sqlalchemy>=2.0
- tabulate>=0.8.10
- tornado>=6.2
- pip:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"pyyaml>=5.4.1",
"redis>=4.3.4", # Note that this gets redis-py, which is named "redis" on pypi
"setuptools_scm!=7.0.0,!=7.0.1,!=7.0.2",
"sqlalchemy>=1.4",
"sqlalchemy>=2.0",
],
"extras_require": {
"sqlite": ["tabulate"],
Expand Down

0 comments on commit 506cbb4

Please sign in to comment.