Skip to content

Commit 001dbca

Browse files
committed
Fixed publish.yaml
1 parent cfa16ce commit 001dbca

File tree

2 files changed

+4
-12
lines changed

2 files changed

+4
-12
lines changed

.github/workflows/publish.yml

+3-11
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,12 @@ jobs:
1212
uses: actions/setup-python@v1
1313
with:
1414
python-version: 3.7
15-
- name: Install pep517
15+
- name: Install twine
1616
run: >-
17-
python -m
18-
pip install
19-
pep517
20-
--user
17+
pip install twine
2118
- name: Build a binary wheel and a source tarball
2219
run: >-
23-
python -m
24-
pep517.build
25-
--source
26-
--binary
27-
--out-dir dist/
28-
.
20+
python setup.py sdist
2921
- name: Publish distribution 📦 to Test PyPI
3022
uses: pypa/gh-action-pypi-publish@master
3123
with:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="CodeforcesApiPy",
8-
version="1.2.3",
8+
version="1.2.4",
99
description="Implementation of codeforces.com API",
1010
platforms="any",
1111
url="https://github.com/VadVergasov/CodeforcesApiPy",

0 commit comments

Comments
 (0)