We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd23607 commit 370bdf0Copy full SHA for 370bdf0
.github/workflows/build.yml
@@ -56,7 +56,7 @@ jobs:
56
echo "password=$PYPI_TOKEN" >> ~/.pypirc
57
- name: release
58
run: |
59
- python3 -m pip install --upgrade twine
+ python3 -m pip install --upgrade setuptools wheel build twine
60
make build
61
python3 -m twine upload --repository pypi dist/*
62
echo "deployed to pypi"
Makefile
@@ -7,7 +7,7 @@ test:
7
doc:
8
pipenv run pdoc deriv_api --force --html -o docs/html --template-dir docs/templates
9
build:
10
- pip3 install build && python3 -m build
+ pip3 install --upgrade setuptools wheel build && python3 -m build
11
coverage:
12
pipenv run coverage run --source deriv_api -m pytest && pipenv run coverage report -m
13
gh-pages:
0 commit comments