Skip to content

Commit 8958856

Browse files
authored
Release 0.0.3 (#21)
1 parent 969473a commit 8958856

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/python-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This workflow will upload a Python Package using Twine when a release is created
22
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
33

4-
name: Upload Python Package
4+
name: Upload Python 🐍 Package 📦
55

66
on:
77
release:
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717

18-
- name: Set up Python
18+
- name: Set up Python 🐍
1919
uses: actions/setup-python@v2
2020
with:
2121
python-version: '3.x'
@@ -35,7 +35,7 @@ jobs:
3535
python -m pip install --upgrade pip
3636
pip install setuptools wheel twine
3737
38-
- name: Build and publish
38+
- name: Build and publish 🚀
3939
env:
4040
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
4141
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}

gctf/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.0.2'
1+
__version__ = '0.0.3'

setup.py

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

88
setup(
99
name="gradient-centralization-tf",
10-
version="0.0.2",
10+
version="0.0.3",
1111
description="Implement Gradient Centralization in TensorFlow",
1212
packages=["gctf"],
1313

0 commit comments

Comments
 (0)