Skip to content

Commit d2d2f7e

Browse files
committed
fix the python version to 3.8 on release
1 parent 6da8ecc commit d2d2f7e

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v2
1414
with:
15-
python-version: "3.x"
15+
python-version: "3.8"
1616
- name: Install build-dependencies
1717
run: |
1818
make build-dependencies

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,8 @@ build-dependencies:
1717
@pip install -r requirements/build.txt
1818
build:
1919
@rm -rf README.rst
20-
@cp README.md pypwext
2120
@python tools/versions.py
2221
@python -m build
23-
@rm -rf pypwext/README.md
2422
publish:
2523
@python -m twine upload dist/* --config-file ./.pypirc
2624
freeze:

0 commit comments

Comments
 (0)