Skip to content

Commit 96edff0

Browse files
authored
Merge pull request #39 from chylli-deriv/bugfix/release
Bugfix/release
2 parents fd23607 + a7a0f3b commit 96edff0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
echo "password=$PYPI_TOKEN" >> ~/.pypirc
5757
- name: release
5858
run: |
59-
python3 -m pip install --upgrade twine
59+
python3 -m pip install --upgrade setuptools wheel build twine
6060
make build
6161
python3 -m twine upload --repository pypi dist/*
6262
echo "deployed to pypi"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ test:
77
doc:
88
pipenv run pdoc deriv_api --force --html -o docs/html --template-dir docs/templates
99
build:
10-
pip3 install build && python3 -m build
10+
pip3 install --upgrade setuptools wheel build && python3 -m build
1111
coverage:
1212
pipenv run coverage run --source deriv_api -m pytest && pipenv run coverage report -m
1313
gh-pages:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ A python implementation of deriv api library.
33

44
[![PyPI](https://img.shields.io/pypi/v/python_deriv_api.svg?style=flat-square)](https://pypi.org/project/python_deriv_api/)
55
[![Python 3.9.6](https://img.shields.io/badge/python-3.9.6-blue.svg)](https://www.python.org/download/releases/3.9.6/)
6-
[![Test status](https://circleci.com/gh/binary-com/python-deriv-api.svg?style=shield&circle-token=8b7c7b39615ea83053044854105bf90975b18126)](https://app.circleci.com/pipelines/github/deriv-com/python-deriv-api)
6+
[![Test status](https://github.com/deriv-com/python-deriv-api/actions/workflows/build.yml/badge.svg)](https://github.com/deriv-com/python-deriv-api)
77

88
Go through [api.deriv.com](https://api.deriv.com/) to know simple easy steps on how to register and get access.
99
Use this all-in-one python library to set up and make your app running or you can extend it.

0 commit comments

Comments
 (0)