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
The mypy version bundled in the dev dependencies of a SDK generated by Fern is locked at 1.0.1: https://github.com/humanloop/humanloop-python/blob/master/pyproject.toml#L42
mypy==1.0.1 raises an error in our CI pipeline when running poetry run mypy . --enable-incomplete-feature=Unpack in the compile step.
poetry run mypy . --enable-incomplete-feature=Unpack
This is fixed by bumping mypy to 1.6.0. Unfortunately, pyproject.toml is auto-generated by Fern.
The generators.yml file should allow developers to specify the version of mypy used.
[BLANK]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Problem description
The mypy version bundled in the dev dependencies of a SDK generated by Fern is locked at 1.0.1: https://github.com/humanloop/humanloop-python/blob/master/pyproject.toml#L42
Why would it be useful?
mypy==1.0.1 raises an error in our CI pipeline when running
poetry run mypy . --enable-incomplete-feature=Unpack
in the compile step.This is fixed by bumping mypy to 1.6.0. Unfortunately, pyproject.toml is auto-generated by Fern.
Describe the solution (optional)
The generators.yml file should allow developers to specify the version of mypy used.
Additional context
[BLANK]
The text was updated successfully, but these errors were encountered: