Skip to content

Commit

Permalink
chore: use latest pip in nightly builds (#281)
Browse files Browse the repository at this point in the history
* chore: use latest pip in nightly builds

* restrict ibis version

* update prerelease tests too
  • Loading branch information
tswast authored Dec 19, 2023
1 parent bac62f7 commit dab2f2c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .kokoro/release-nightly.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ rm -rf build dist
# internal issue b/261050975.
git config --global --add safe.directory "${PROJECT_ROOT}"

# Workaround for older pip not able to resolve dependencies. See internal
# issue 316909553.
python3.10 -m pip install pip==23.3.2
python3.10 -m pip install --require-hashes -r .kokoro/requirements.txt

# Disable buffering, so that the logs stream through.
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ def prerelease(session: nox.sessions.Session, tests_path):
session.install(
"--upgrade",
# "--pre",
"ibis-framework>=7.1.0,<8.0.0dev",
"ibis-framework>=7.1.0,<7.2.0dev",
)
already_installed.add("ibis-framework")

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"google-cloud-iam >=2.12.1",
"google-cloud-resource-manager >=1.10.3",
"google-cloud-storage >=2.0.0",
"ibis-framework[bigquery] >=7.1.0,<8.0.0dev",
# TODO: Relax upper bound once we have fixed unit tests with 7.2.0.
"ibis-framework[bigquery] >=7.1.0,<7.2.0dev",
# TODO: Relax upper bound once we have fixed `system_prerelease` tests.
"pandas >=1.5.0,<2.1.4",
"pydata-google-auth >=1.8.2",
Expand Down

0 comments on commit dab2f2c

Please sign in to comment.