Metadata-Version: 2.3
Name: poetry-plugin-drop-python-upper-constraint
Version: 1.0.1
Summary: Poetry plugin used to drop upper constraints for Python
License: BSD-2-Clause
Keywords: poetry,plugin,python,constraint
Author: Stéphane Brunner
Author-email: stephane.brunner@camptocamp.com
Requires-Python: >=3.9
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Requires-Dist: certifi
Requires-Dist: cryptography
Requires-Dist: idna
Requires-Dist: poetry (<2.1.0)
Requires-Dist: requests
Requires-Dist: urllib3
Project-URL: Bug Tracker, https://github.com/sbrunner/poetry-plugin-drop-python-upper-constraint/issues
Project-URL: Repository, https://github.com/sbrunner/poetry-plugin-drop-python-upper-constraint
Description-Content-Type: text/markdown

# Poetry plugin drop Python upper constraint

With this plugin you can set a python constraints like:

```toml
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
```

And in the exported wheel we will have only `python=">=3.9"`.

The goal is to have an upper constraint to do the lock but to don't have it in the exported wheel,
then to permit to use it with newer Python version.

Config:

```toml
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-plugin-drop-python-upper-constraint>=0.1.0"]
build-backend = "poetry.core.masonry.api"
```

## Contributing

Install the pre-commit hooks:

```bash
pip install pre-commit
pre-commit install --allow-missing-config
```

