We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f62a2d commit 44ed114Copy full SHA for 44ed114
1 file changed
.github/workflows/unittest.yml
@@ -32,6 +32,11 @@ jobs:
32
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6
33
with:
34
python-version: ${{ matrix.python }}
35
+ allow-prereleases: true
36
+ # Caches compiled wheels locally to prevent building heavy libraries
37
+ # such as grpcio, which we build from scratch on every run for Python 3.15+.
38
+ # Follow https://github.com/grpc/grpc/issues/41010 for updates.
39
+ cache: 'pip'
40
- name: Install nox
41
run: |
42
python -m pip install --upgrade setuptools pip wheel
0 commit comments