mirror of
https://github.com/snowykami/server-status-client.git
synced 2024-11-26 00:55:19 +08:00
✨ 降低python版本依赖
This commit is contained in:
parent
b57bb4ec10
commit
c97544cda3
9
.github/workflows/nuitka-compile.yml
vendored
9
.github/workflows/nuitka-compile.yml
vendored
@ -10,10 +10,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ ubuntu-latest, windows-latest ]
|
os: [ ubuntu-latest, windows-latest ]
|
||||||
arch: [ x64, x86, arm64 ]
|
arch: [ x64, arm64 ]
|
||||||
exclude:
|
|
||||||
- os: ubuntu-latest
|
|
||||||
arch: x86
|
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
|
||||||
@ -24,9 +21,11 @@ jobs:
|
|||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax
|
python-version: '3.11'
|
||||||
architecture: ${{ matrix.arch }}
|
architecture: ${{ matrix.arch }}
|
||||||
cache: 'pip'
|
cache: 'pip'
|
||||||
|
cache-dependency-path: |
|
||||||
|
**/requirements*.txt
|
||||||
|
|
||||||
|
|
||||||
- name: Install Dependencies
|
- name: Install Dependencies
|
||||||
|
Loading…
Reference in New Issue
Block a user