-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Update tornado's lower bound to the earliest secure version #1461
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: master
Are you sure you want to change the base?
Changes from all commits
92abbb9
6297d73
d6ee816
ce85428
a574975
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -21,7 +21,7 @@ def parse_search_terms(raw_search_value): | |||||
| if 'kwargs'not in parsed_search: | ||||||
| parsed_search['kwargs'] = {} | ||||||
| try: | ||||||
| key, value = [p.strip() for p in query_part[len('kwargs:'):].split('=')] | ||||||
| key, value = (p.strip() for p in query_part[len('kwargs:'):].split('=')) | ||||||
|
||||||
| key, value = (p.strip() for p in query_part[len('kwargs:'):].split('=')) | |
| key, value = [p.strip() for p in query_part[len('kwargs:'):].split('=')] |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| celery>=5.0.5 | ||
| tornado>=5.0.0,<7.0.0 | ||
| tornado>=6.5.0,<7.0.0 | ||
| prometheus_client>=0.8.0 | ||
| humanize | ||
| pytz |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,8 +31,6 @@ def get_requirements(filename): | |
| Programming Language :: Python | ||
| Programming Language :: Python :: 3 | ||
| Programming Language :: Python :: 3 :: Only | ||
| Programming Language :: Python :: 3.7 | ||
| Programming Language :: Python :: 3.8 | ||
| Programming Language :: Python :: 3.9 | ||
| Programming Language :: Python :: 3.10 | ||
| Programming Language :: Python :: 3.11 | ||
|
Comment on lines
33
to
36
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,4 +59,4 @@ def test_authenticate_wildcard_email(self): | |
| self.assertTrue(authenticate("one.*@example.com", "[email protected]")) | ||
| self.assertFalse(authenticate(".*@example.com", "[email protected]")) | ||
| self.assertFalse(authenticate(".*@corp.example.com", "[email protected]")) | ||
| self.assertFalse(authenticate(".*@corp\.example\.com", "[email protected]")) | ||
| self.assertFalse(authenticate(r".*@corp\.example\.com", "[email protected]")) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,13 @@ | ||
| [tox] | ||
| envlist = | ||
| # Celery 5.2: only py38–py311 (py312 excluded) | ||
| {py38,py39,py310,py311}-celery52-{tornado60,tornado61,tornado62,tornado63,tornado64,tornado65}, | ||
| {py38,py39,py310,py311}-celery52-tornado65, | ||
| # Celery 5.3: py38–py312 | ||
| {py38,py39,py310,py311,py312}-celery53-{tornado60,tornado61,tornado62,tornado63,tornado64,tornado65}, | ||
| {py38,py39,py310,py311,py312}-celery53-tornado65, | ||
| # Celery 5.4: py38–py312 | ||
| {py38,py39,py310,py311,py312}-celery54-{tornado60,tornado61,tornado62,tornado63,tornado64,tornado65}, | ||
| {py38,py39,py310,py311,py312}-celery54-tornado65, | ||
| # Celery 5.5: py38–py312 | ||
| {py38,py39,py310,py311,py312}-celery55-{tornado60,tornado61,tornado62,tornado63,tornado64,tornado65}, | ||
| {py38,py39,py310,py311,py312}-celery55-tornado65, | ||
|
Comment on lines
+4
to
+10
|
||
| lint | ||
| skip_missing_interpreters = true | ||
|
|
||
|
|
@@ -19,11 +19,6 @@ deps = | |
| celery53: celery==5.3.* | ||
| celery54: celery==5.4.* | ||
| celery55: celery==5.5.* | ||
| tornado60: tornado==6.0.* | ||
| tornado61: tornado==6.1.* | ||
| tornado62: tornado==6.2.* | ||
| tornado63: tornado==6.3.* | ||
| tornado64: tornado==6.4.* | ||
| tornado65: tornado==6.5.* | ||
| commands = | ||
| python -m flower --version | ||
|
|
||
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.
The CI matrix removes Python 3.8 but setup.py classifiers also remove it while tox.ini still includes py38. For consistency, if Python 3.8 support is being dropped completely, it should be removed from tox.ini as well, or if it's being kept, it should remain in setup.py classifiers and the CI matrix.