From f9191a6025c5a0010606829e24214e322dc800d6 Mon Sep 17 00:00:00 2001 From: eheinrich Date: Wed, 27 Jan 2021 14:04:24 -0800 Subject: [PATCH] Done testing- set deploy values back to real values --- .github/workflows/build.yaml | 6 ++---- setup.py | 3 +-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1174e5b..3d43f77 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -54,9 +54,7 @@ jobs: - name: Build package and publish to PyPI env: TWINE_USERNAME: __token__ - # TODO: Set this to secrets.PYPI_RISE_SET_API_TOKEN when done testing - TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }} + TWINE_PASSWORD: ${{ secrets.PYPI_RISE_SET_API_TOKEN }} run: | python setup.py sdist bdist_wheel - # TODO: Remove this repository flag when done testing - twine upload --repository testpypi dist/* + twine upload dist/* diff --git a/setup.py b/setup.py index 896e54f..3b4f195 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,7 @@ setup( name = 'ocs-rise-set', - # Set this version back to 0.5.1 when done testing - version = '0.0.1', + version = '0.5.1', description = 'Routines for accurate rise/set/transit calculations', author = 'Eric Saunders', author_email = 'esaunders@lcogt.net',