Skip to content

Commit cca1c10

Browse files
cclaussNusnus
authored andcommitted
python3.14 -m pip install librabbitmq
1 parent 7e33aba commit cca1c10

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: pip_install_on_python_prerelease
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
jobs:
7+
pip_install_on_python_prerelease:
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
os: [macos-latest, macos-26, ubuntu-latest, windows-latest]
12+
runs-on: ${{ matrix.os }}
13+
steps:
14+
- uses: actions/checkout@v5
15+
- uses: actions/setup-python@v6
16+
with:
17+
python-version: 3.14
18+
allow-prereleases: true
19+
- run: pip install --upgrade pip setuptools
20+
- run: pip install librabbitmq

0 commit comments

Comments
 (0)