-
Notifications
You must be signed in to change notification settings - Fork 78
Fix/sumo 281751 vulnerability fix #99
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
base: main
Are you sure you want to change the base?
Changes from 14 commits
26d6cb7
a8ad271
9d9ac0d
f5273c5
44829ab
f605236
ee07aeb
750eef3
91c7659
23ec77b
3937cd2
eb3970a
8a288fd
2e47cf4
3881843
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,22 +4,34 @@ url = "https://pypi.org/simple" | |
| verify_ssl = true | ||
|
|
||
| [dev-packages] | ||
| virtualenv = ">=21.3.0" | ||
| setuptools = ">=78.1.1" | ||
| filelock = ">=3.29.0" | ||
| zipp = ">=3.19.1" | ||
| bandit = "*" # https://github.com/PyCQA/bandit | ||
| better_exceptions = "*" | ||
| black = "*" | ||
| pipenv = {path = ".", editable = true, extras = ["test"]} | ||
| flake8 = "*" | ||
| pre-commit = "*" # https://ljvmiranda921.github.io/notebook/2018/06/21/precommits-using-black-and-flake8/ | ||
| pytest = "*" | ||
| pytest = ">=9.0.3" | ||
| requests = "*" | ||
| twine = "*" | ||
| build = "*" | ||
|
|
||
| [packages] | ||
| virtualenv = ">=21.3.0" | ||
| setuptools = ">=78.1.1" | ||
| filelock = ">=3.29.0" | ||
| requests = "*" | ||
| pyupgrade = "*" | ||
| bandit = "*" | ||
| flake8 = "*" | ||
| certifi = "*" | ||
| pygments = ">=2.20.0" | ||
|
||
|
|
||
| [requires] | ||
| python_version = "3.12" | ||
| python_version = "3.14" | ||
|
|
||
| [pipenv] | ||
| allow_prereleases = true | ||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,7 @@ | ||
| requests>=2.32.0 | ||
| requests>=2.33.1 | ||
| certifi>=2026.4.22 | ||
| urllib3>=2.6.3 | ||
| pytest>=9.0.3 | ||
| filelock>=3.29.0 | ||
| virtualenv>=21.3.0 | ||
| pygments>=2.20.0 |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,4 +1,6 @@ | ||||
| import json | ||||
| from builtins import * | ||||
|
||||
| from builtins import * |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If the dependency upgrades in this PR effectively drop support for older Python versions (e.g., 3.8/3.9) or require Python 3.14 for development/CI, this should be called out as a breaking change in the changelog (not just as "Added Python 3.14 support"). Otherwise, consider adjusting the dependency/version changes so they remain compatible with the previously supported Python range.