Skip to content

Commit 43edc1f

Browse files
committed
remove the snakes
1 parent 247be6e commit 43edc1f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
1+
name: PyPI and TestPyPI
22

33
on: push
44

55
jobs:
66
build-n-publish:
7-
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
7+
name: Build and publish package to PyPI and TestPyPI
88
runs-on: ubuntu-18.04
99
steps:
1010
- uses: actions/checkout@master
@@ -26,13 +26,13 @@ jobs:
2626
--binary
2727
--out-dir dist/
2828
.
29-
- name: Publish distribution 📦 to Test PyPI
29+
- name: Publish package to Test PyPI
3030
uses: pypa/gh-action-pypi-publish@master
3131
with:
3232
password: ${{ secrets.test_pypi_token }}
3333
repository_url: https://test.pypi.org/legacy/
3434
skip_existing: true
35-
- name: Publish distribution 📦 to PyPI
35+
- name: Publish package to PyPI
3636
if: startsWith(github.ref, 'refs/tags')
3737
uses: pypa/gh-action-pypi-publish@master
3838
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "openfeed"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
description = "Python SDK for Openfeed"
55
authors = ["Barchart <[email protected]>"]
66
license = "MIT"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='openfeed',
20-
version='1.0.2',
20+
version='1.0.3',
2121
author='Barchart',
2222
author_email='[email protected]',
2323
license='MIT',

0 commit comments

Comments
 (0)