File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -30,10 +30,12 @@ jobs:
3030 uses : pypa/gh-action-pypi-publish@master
3131 with :
3232 password : ${{ secrets.test_pypi_token }}
33- repository_url : https://test.pypi.org/legacy/
33+ repository_url : https://test.pypi.org/legacy/
34+ skip_existing : true
3435 - name : Publish distribution 📦 to PyPI
3536 if : startsWith(github.ref, 'refs/tags')
3637 uses : pypa/gh-action-pypi-publish@master
3738 with :
3839 password : ${{ secrets.pypi_token }}
40+ skip_existing : true
3941
Original file line number Diff line number Diff line change 1+ [tool .poetry ]
2+ name = " openfeed"
3+ version = " 1.0.2"
4+ description = " Python SDK for Openfeed"
5+ authors = [
" Barchart <[email protected] >" ]
6+
7+ [tool .poetry .dependencies ]
8+ python = " *"
9+ websocket-client = " ^0.40.0"
10+ protobuf = " *"
11+
12+ [tool .poetry .dev-dependencies ]
13+ pytest = " ^3.4"
14+
15+ [build-system ]
16+ requires = [" poetry>=0.12" ]
17+ build-backend = " poetry.masonry.api"
You can’t perform that action at this time.
0 commit comments