Skip to content

Commit

Permalink
Merge pull request #409 from simontorres/update_pypi_release
Browse files Browse the repository at this point in the history
Update pypi release
  • Loading branch information
simontorres authored Jul 18, 2024
2 parents b22f4ed + 57f52d1 commit 47a8fdd
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: |
pytest --cov=goodman_pipeline
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
fail_ci_if_error: true # optional (default = false)
Expand Down
42 changes: 29 additions & 13 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,40 @@ on:
types: [created]

jobs:
deploy:

release-build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
python3 -m pip install build
- name: Build a binary wheel and source tarball
run: python3 -m build
- name: Upload artifacts
uses: actions/upload-artifacts@v4
with:
name: release-dists
path: dist/

pypi-publish:
name: Publish Package to PyPI
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs:
- release-build
permission:
id-token: write

steps:
- name: Retrieve release distributions
uses: actions/download-artifact@v4
with:
name: release-dists
path: dist/
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion goodman_pipeline/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# This is an automatic generated file please do not edit
__version__ = '1.3.7'
__version__ = '1.3.8'
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ show_response = 1
package_name = goodman_pipeline
description = Pipeline for reducing Goodman HTS data.
long_description = Provides everything need to reduce Goodman High Throughput Spectrograph data.
author = Simon Torres
author_email = [email protected].edu
author = Simón Torres
author_email = simon.torres@noirlab.edu
license = BSD-3-Clause
# url =
edit_on_github = False
Expand All @@ -32,4 +32,4 @@ install_requires =
ccdproc
astroplan
# version should be PEP440 compatible (http://www.python.org/dev/peps/pep-0440)
version = 1.3.7
version = 1.3.8
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def create_version_py(packagename, version, source_dir='.'):
u'Cesar Briceño, '
u'David Sanmartin, ',

author_email='[email protected].edu, [email protected].edu, '
'[email protected].edu',
author_email='simon.torres@noirlab.edu, bruno.quint@noirlab.edu, '
'cesar.briceno@noirlab.edu',

# Choose your license
license=LICENSE,
Expand Down Expand Up @@ -156,5 +156,3 @@ def create_version_py(packagename, version, source_dir='.'):
'goodman_pipeline/scripts/redspec', ],

)


0 comments on commit 47a8fdd

Please sign in to comment.