Skip to content

Commit 89c79f1

Browse files
committed
fix(cicd): Python 3.5~3.7 not available
1 parent a88efba commit 89c79f1

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

.github/workflows/test.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,21 @@ jobs:
1818
python-version: 3.5
1919
- os: ubuntu-latest
2020
python-version: 3.6
21-
include:
22-
- os: ubuntu-20.04
21+
- os: ubuntu-latest
22+
python-version: 3.7
23+
- os: macos-latest
2324
python-version: 3.5
24-
- os: ubuntu-20.04
25+
- os: macos-latest
2526
python-version: 3.6
27+
- os: macos-latest
28+
python-version: 3.7
29+
# include:
30+
# - os: ubuntu-20.04
31+
# python-version: 3.5
32+
# - os: ubuntu-20.04
33+
# python-version: 3.6
34+
# - os: ubuntu-20.04
35+
# python-version: 3.7
2636

2737
steps:
2838
- uses: actions/checkout@v4

dist.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rm -r -Force dist build
1+
rm -r -Force dist, build
22
uv run setup.py sdist bdist_wheel
33
uvx twine upload dist/*
4-
rm -r -Force dist build *.egg-info
4+
rm -r -Force dist, build, *.egg-info

0 commit comments

Comments
 (0)