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 89a2319 commit 0121408Copy full SHA for 0121408
1 file changed
.github/workflows/unittest.yml
@@ -31,6 +31,11 @@ jobs:
31
uses: actions/setup-python@v6
32
with:
33
python-version: ${{ matrix.python }}
34
+ allow-prereleases: true
35
+ # Caches compiled wheels locally to prevent building heavy libraries
36
+ # such as grpcio, which we build from scratch on every run for Python 3.15+.
37
+ # Follow https://github.com/grpc/grpc/issues/41010 for updates.
38
+ cache: 'pip'
39
- name: Install nox
40
run: |
41
python -m pip install --upgrade setuptools pip wheel
0 commit comments