File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,11 @@ jobs:
50
50
uses : actions/setup-python@v5
51
51
- name : Build packages
52
52
run : |
53
- pip install wheel -r requirements.txt
53
+ python -m venv .venv
54
+ .venv/bin/pip install wheel -r requirements.txt
54
55
sed -i "s/\(version='[0-9]*\.[0-9]*\.[0-9]*\)\('\)/\1.dev$(date +%Y%m%d%H%M%S)\2/g" setup.py
55
56
sed -i "s/5 - Production\/Stable/4 - Beta/g" setup.py
56
- python setup.py clean check sdist bdist_wheel
57
+ .venv/bin/ python setup.py clean check sdist bdist_wheel
57
58
- name : Upload to PyPI Test
58
59
59
60
with :
72
73
uses : actions/setup-python@v5
73
74
- name : Build packages
74
75
run : |
75
- pip install wheel -r requirements.txt
76
- python setup.py clean check sdist bdist_wheel
76
+ python -m venv .venv
77
+ .venv/bin/pip install wheel -r requirements.txt
78
+ .venv/bin/python setup.py clean check sdist bdist_wheel
77
79
- name : Upload to PyPI
78
80
79
81
with :
You can’t perform that action at this time.
0 commit comments