Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DM-44487: Fix sphgeom PyPi upload #66

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
name: sphgeom-sdist
path: dist/*

pypi_wheel_build:
Expand Down Expand Up @@ -105,6 +106,7 @@ jobs:
python -m cibuildwheel --output-dir dist
- uses: actions/upload-artifact@v4
with:
name: sphgeom-${{ matrix.os }}
path: dist/*

pipy_upload:
Expand All @@ -113,8 +115,9 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
pattern: sphgeom-*
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "lsst-sphgeom"
description = "A spherical geometry library."
requires-python = ">=3.8.0"
license = {text = "BSD 3-Clause License"}
readme = "README.md"
authors = [
Expand All @@ -25,6 +26,8 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
mwittgen marked this conversation as resolved.
Show resolved Hide resolved
"Topic :: Scientific/Engineering :: Astronomy",
]
keywords = ["lsst"]
Expand Down
Loading