We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfa16ce commit 001dbcaCopy full SHA for 001dbca
.github/workflows/publish.yml
@@ -12,20 +12,12 @@ jobs:
12
uses: actions/setup-python@v1
13
with:
14
python-version: 3.7
15
- - name: Install pep517
+ - name: Install twine
16
run: >-
17
- python -m
18
- pip install
19
- pep517
20
- --user
+ pip install twine
21
- name: Build a binary wheel and a source tarball
22
23
24
- pep517.build
25
- --source
26
- --binary
27
- --out-dir dist/
28
- .
+ python setup.py sdist
29
- name: Publish distribution 📦 to Test PyPI
30
uses: pypa/gh-action-pypi-publish@master
31
setup.py
@@ -5,7 +5,7 @@
5
6
setup(
7
name="CodeforcesApiPy",
8
- version="1.2.3",
+ version="1.2.4",
9
description="Implementation of codeforces.com API",
10
platforms="any",
11
url="https://github.com/VadVergasov/CodeforcesApiPy",
0 commit comments