-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Fix supported Python version #39
Labels
bug
Something isn't working
good first issue
Good for newcomers
improvement
Does the same as before but better
Milestone
Comments
JMTyndall
added a commit
to JMTyndall/check_done
that referenced
this issue
Dec 2, 2024
JMTyndall
added a commit
to JMTyndall/check_done
that referenced
this issue
Dec 2, 2024
See #41 |
mcsken
added a commit
to JMTyndall/check_done
that referenced
this issue
Dec 9, 2024
mcsken
added a commit
to JMTyndall/check_done
that referenced
this issue
Dec 9, 2024
mcsken
added a commit
to JMTyndall/check_done
that referenced
this issue
Dec 9, 2024
Accidentally forgot to remove cryptography from dev dependencies when I moved it to public dependencies with the original commit. This commit amends that.
roskakori
added a commit
that referenced
this issue
Dec 10, 2024
roskakori
added a commit
that referenced
this issue
Dec 10, 2024
#39 Bump version and update changelog
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
bug
Something isn't working
good first issue
Good for newcomers
improvement
Does the same as before but better
Background
Currently the pyproject.toml claims
3.10.
is supported, this should actually be3.11.
:Also while at it, several dependencies can also be cleaned up in the
pyproject.toml
.Goals
3.11.
3.12.
3.13.
are supported.pygments
chardet
rich
gitpython
pytest-mock
pytest-order
requests
andcryptography
are explicitly added to the dependencies.requests-mock
is moved to dev dependencies.Estimate: 1.5h
Implementation notes
Dependencies should be removed with
poetry remove ...
and added withpoetry add ...
You can put dependencies in a dev group with
poetry add ... --group dev
The text was updated successfully, but these errors were encountered: