Skip to content

Commit

Permalink
Don't publish Linux wheels
Browse files Browse the repository at this point in the history
since PyPI won't accept them and at the moment we don't have a workflow
to build manylinux wheels, which it will accept. It's non-trivial to
implement that.
  • Loading branch information
MarkCallow committed Feb 3, 2024
1 parent 1b6217c commit de977ae
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/publish-pyktx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,11 @@ jobs:
else
option=
fi
ci_scripts/download_release_assets.sh $option --filter "^pyktx" --output_dir dist
- name: Publish distribution 📦 to PyPI
# Omit linux packages since PyPI won't accept them and, at the
# moment, we don't have a workflow to build manylinux wheels, which
# it will accept. It's non-trivial to implement that. See
# https://github.com/pypa/manylinux?tab=readme-ov-file#docker-images
ci_scripts/download_release_assets.sh $option --filter '(?:^pyktx)(?!.*linux.*)' --output-dir dist - name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
Expand Down Expand Up @@ -125,7 +128,7 @@ jobs:
else
option=
fi
ci_scripts/download_release_assets.sh $option --filter "^pyktx" --output-dir dist
ci_scripts/download_release_assets.sh $option --filter '(?:^pyktx)(?!.*linux.*)' --output-dir dist
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit de977ae

Please sign in to comment.