File pyproject.toml of Package failed_python-zxcvbn-rs-py
```toml
[build-system]
requires = ["maturin>=0.14,<0.21"]
build-backend = "maturin"
[project]
name = "zxcvbn-rs-py"
version = "0.1.1"
description = "A Python wrapper for the zxcvbn password strength estimator"
authors = ["Your Name <your.email@example.com>"]
license = { file = "LICENSE" }
requires-python = ">=3.7,<3.14"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.maturin]
bindings = "pyo3"
features = ["python"]
```
### Explanation of Changes:
- The `requires-python` field in the `[project]` section was updated from `<3.13` to `<3.14` to allow Python 3.13.x versions.
- No other changes were made to ensure minimal impact on the build process.
This modification should resolve the build failure by allowing the package to be built with Python 3.13. If there are additional files imposing similar constraints, they should be reviewed and adjusted accordingly. However, based on the provided logs, the `pyproject.toml` file is the primary source of the issue.