We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When calling flit init one is prompted for a package name.
flit init
The validation of the name uses str.identifier.
Since version 3.5 flit can distribute namespace packages.
str.identifier returns False when called with a valid namespace package name.
str.identifier
A workaround is to edit the pyproject.toml file and replace the name accepted by flit init with the namespace package name proper.
pyproject.toml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When calling
flit init
one is prompted for a package name.The validation of the name uses str.identifier.
Since version 3.5 flit can distribute namespace packages.
str.identifier
returns False when called with a valid namespace package name.A workaround is to edit the
pyproject.toml
file and replace the name accepted by flit init with the namespace package name proper.The text was updated successfully, but these errors were encountered: