You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I'm following the tutorial Publishing package distribution releases using GitHub Actions CI/CD workflows, which uploads a python package, in this case, the tell package, to both PyPI and test.PyPI. I have tell listed in test.PyPI as a pending publisher. It fails to upload to test.PyPI with the error:
* `invalid-payload`: The name 'tell' is too similar to an existing project. See https://test.pypi.org/help/#project-name for more information.
test.PyPI shows that there's one package that has a similar name, Tell-Tg, which seems dissimilar enough to not trigger the similar-name error. We have the tell project published on PyPI.
Expected behavior
The push to test.PyPI to work. It would be nice if you could link packages on test.PyPI with the package on PyPI.
My Platform
GitHub Actions: runs-on: ubuntu-latest
Additional context
A potential workaround would be to be able to have a different package name on test.PyPI than the actual package, for example, changing the Pending project name to tell-IM3 to distinguish it from another package, but keeping the actual package name listed in the pyproject.toml the same since it's already listed on PyPI as tell.
The text was updated successfully, but these errors were encountered:
Thanks! Looks like the "pending project name" selector will need to use similar logic to the one that disallows new projects if the name is too similar.
cc @woodruffw
Describe the bug
I'm following the tutorial Publishing package distribution releases using GitHub Actions CI/CD workflows, which uploads a python package, in this case, the
tell
package, to both PyPI and test.PyPI. I havetell
listed in test.PyPI as a pending publisher. It fails to upload to test.PyPI with the error:failing GitHub Action
test.PyPI shows that there's one package that has a similar name,
Tell-Tg
, which seems dissimilar enough to not trigger the similar-name error. We have thetell
project published on PyPI.Expected behavior
The push to test.PyPI to work. It would be nice if you could link packages on test.PyPI with the package on PyPI.
To Reproduce
Failing GitHub Action
GitHub Action yaml
My Platform
GitHub Actions:
runs-on: ubuntu-latest
Additional context

A potential workaround would be to be able to have a different package name on test.PyPI than the actual package, for example, changing the
Pending project name
totell-IM3
to distinguish it from another package, but keeping the actual package name listed in thepyproject.toml
the same since it's already listed on PyPI astell
.The text was updated successfully, but these errors were encountered: