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
Describe the bug
Currently, pyproject.toml contains these lines
pyproject.toml
[tool.flit.sdist] # Specify the files to include in the source distribution include = ["mkdocs_puml/static/puml.css"]
despite it contains only puml.css, flit packs mkdocs_puml with all its content.
puml.css
mkdocs_puml
Either remove include = ["mkdocs_puml/static/puml.css"] entry or consider moving the static out of mkdocs_puml.
include = ["mkdocs_puml/static/puml.css"]
static
The text was updated successfully, but these errors were encountered:
Fixed in version 2.1.0
2.1.0
Sorry, something went wrong.
MikhailKravets
No branches or pull requests
Describe the bug
Currently,
pyproject.toml
contains these linesdespite it contains only
puml.css
, flit packsmkdocs_puml
with all its content.Either remove
include = ["mkdocs_puml/static/puml.css"]
entry or consider moving thestatic
out ofmkdocs_puml
.The text was updated successfully, but these errors were encountered: