Skip to content

Commit 48d0015

Browse files
authored
chore(ci): update tested versions of rq [backport #4919 to 0.61] (#4920)
## Description Backport of #4919 `rq` released 1.12.0 which dropped support for Python 3.5, but did not update the `python_requires` in `setup.py` to reflect this. This means it is possible to install 1.12.0 on Python 3.5, which will not work. rq/rq#1755 I also updated the overall tested versions of `rq` since the current pattern is fairly (unnecessarily?) verbose. ## Reviewer Checklist - [ ] Title is accurate. - [ ] Description motivates each change. - [ ] No unnecessary changes were introduced in this PR. - [ ] Avoid breaking [API](https://ddtrace.readthedocs.io/en/stable/versioning.html#interfaces) changes unless absolutely necessary. - [ ] Tests provided or description of manual testing performed is included in the code or PR. - [ ] Release note has been added and follows the [library release note guidelines](https://ddtrace.readthedocs.io/en/stable/contributing.html#Release-Note-Guidelines), or else `changelog/no-changelog` label added. - [ ] All relevant GitHub issues are correctly linked. - [ ] Backports are identified and tagged with Mergifyio.
1 parent e9eca99 commit 48d0015

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

riotfile.py

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1393,8 +1393,6 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION):
13931393
pkgs={
13941394
"rq": [
13951395
"~=1.0.0",
1396-
"~=1.1.0",
1397-
"~=1.2.0",
13981396
"~=1.3.0",
13991397
],
14001398
},
@@ -1404,16 +1402,19 @@ def select_pys(min_version=MIN_PYTHON_VERSION, max_version=MAX_PYTHON_VERSION):
14041402
pkgs={
14051403
"rq": [
14061404
"~=1.0.0",
1407-
"~=1.1.0",
1408-
"~=1.2.0",
1409-
"~=1.3.0",
1410-
"~=1.4.0",
1411-
"~=1.5.0",
1412-
"~=1.6.0",
1413-
"~=1.7.0",
1414-
"~=1.8.0",
1415-
"~=1.9.0",
1416-
"~=1.10.0",
1405+
"~=1.11.0",
1406+
# 1.12.0 removed support for Python 3.5
1407+
],
1408+
# https://github.com/rq/rq/issues/1469 rq [1.0,1.8] is incompatible with click 8.0+
1409+
"click": "==7.1.2",
1410+
},
1411+
),
1412+
Venv(
1413+
pys=select_pys(min_version="3.6"),
1414+
pkgs={
1415+
"rq": [
1416+
"~=1.0.0",
1417+
"~=1.11.0",
14171418
latest,
14181419
],
14191420
# https://github.com/rq/rq/issues/1469 rq [1.0,1.8] is incompatible with click 8.0+

0 commit comments

Comments
 (0)