Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.

Commit b4010e1

Browse files
committed
minor fixes to noxfile and README
1 parent 5503877 commit b4010e1

3 files changed

Lines changed: 2 additions & 7 deletions

File tree

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ In order to use this library, you first need to go through the following steps:
3636

3737
.. note::
3838
This library is a prerelease to gauge compatiblity with SQLAlchemy
39-
versions >= 1.4.16 < 2.1
39+
versions >= 1.4.16 and < 2.1
4040

4141
Installation
4242
------------

noxfile.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,6 @@ def default(session, install_extras=True):
213213
install_target = "."
214214
session.install("-e", install_target, "-c", constraints_path)
215215

216-
session.run("python", "-m", "pip", "freeze")
217-
218216
# Run py.test against the unit tests.
219217
session.run(
220218
"py.test",
@@ -419,8 +417,6 @@ def cover(session):
419417
"""
420418
session.install("coverage", "pytest-cov")
421419

422-
session.run("python", "-m", "pip", "freeze")
423-
424420
session.run("coverage", "report", "--show-missing", "--fail-under=100")
425421

426422
session.run("coverage", "erase")
@@ -552,7 +548,6 @@ def prerelease_deps(session):
552548
"requests",
553549
]
554550
session.install(*other_deps)
555-
session.run("python", "-m", "pip", "freeze")
556551

557552
# Print out prerelease package versions
558553
session.run(

samples/snippets/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ requests==2.31.0
2828
rsa==4.9
2929
shapely==2.0.2
3030
six==1.16.0
31-
sqlalchemy===1.4.15
31+
sqlalchemy==1.4.16
3232
typing-extensions==4.9.0
3333
urllib3==2.1.0

0 commit comments

Comments
 (0)