Skip to content

Commit

Permalink
Fix realasing after merging alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
aniezurawski authored Mar 23, 2021
1 parent d56aad5 commit dbd71fb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/neptune-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,20 +65,20 @@ jobs:
password: ${{ secrets.PYPI_API_TOKEN_SKLEARN }}
packages_dir: integrations/sklearn/dist

# publish:
# needs: test
# runs-on: ubuntu-latest
# if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/client')
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-python@v2
# with:
# python-version: 3.8
# - name: Build and test
# run : |
# python setup.py sdist
# - name: Publish package
# uses: pypa/gh-action-pypi-publish@54b39fb9371c0b3a6f9f14bb8a67394defc7a806
# with:
# user: __token__
# password: ${{ secrets.PYPI_API_TOKEN }}
publish:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/client')
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Build and test
run : |
python setup.py sdist
- name: Publish package
uses: pypa/gh-action-pypi-publish@54b39fb9371c0b3a6f9f14bb8a67394defc7a806
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
2 changes: 1 addition & 1 deletion neptune/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from neptune.sessions import Session
from ._version import get_versions

__version__ = "1.0.0" # get_versions()['version']
__version__ = get_versions()['version']

del get_versions

Expand Down

0 comments on commit dbd71fb

Please sign in to comment.