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
in pyproject.toml I 'd like to use wildcard instead of hardcoding package-names.
This way I can just copy-paste sections to other pyproject.toml-files:
release-replacements = [ { file = "docs/changes.md", pattern = "Unreleased \\(YYYY-MM-DD\\)", replace = "{version} ({date})" }, { file = "src/*/__init__.py", pattern = '__version__ = "{version}"', replace = '__version__ = "{next_version}"' }, ]
This now fails with:
> poetry release Release package-foo 1.0.1? (yes/no) [no] yes [Errno 2] No such file or directory: 'src/*/__init__.py'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in pyproject.toml I 'd like to use wildcard instead of hardcoding package-names.
This way I can just copy-paste sections to other pyproject.toml-files:
This now fails with:
The text was updated successfully, but these errors were encountered: