Skip to content

Commit

Permalink
don't install prerelease in compliance session
Browse files Browse the repository at this point in the history
  • Loading branch information
tswast authored Apr 2, 2024
1 parent 924003e commit dfbfcc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,6 @@ def compliance(session):
if not os.path.exists(system_test_folder_path):
session.skip("Compliance tests were not found")

session.install("--pre", "grpcio")
session.install("--pre", "--no-deps", "--upgrade", "sqlalchemy>=1.4.16,<2.1")
session.install(
"mock",
"pytest",
Expand Down Expand Up @@ -543,7 +541,7 @@ def prerelease_deps(session):

prerel_deps = [
"protobuf",
"sqlalchemy>=1.4.16,<2.1",
"sqlalchemy",
# dependency of grpc
"six",
"googleapis-common-protos",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def readme():
"google-auth>=1.25.0,<3.0.0dev", # Work around pip wack.
"google-cloud-bigquery>=3.3.6,<4.0.0dev",
"packaging",
"sqlalchemy>=1.4.16,<2.1",
"sqlalchemy>=1.4.16,<3.0.0dev",
],
extras_require=extras,
python_requires=">=3.8, <3.13",
Expand Down

0 comments on commit dfbfcc3

Please sign in to comment.