Skip to content

Commit 07a02c4

Browse files
committed
fix
1 parent 3d0d81a commit 07a02c4

File tree

2 files changed

+15
-17
lines changed

2 files changed

+15
-17
lines changed

scripts/populate_tox/tox.jinja

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ envlist =
164164

165165
# Sanic
166166
{py3.7}-sanic-v{0.8}
167-
{py3.7,py3.8}-sanic-v{20}
167+
{py3.8}-sanic-v{20}
168168
{py3.8,py3.11,py3.12}-sanic-v{24.6}
169169
{py3.9,py3.12,py3.13}-sanic-latest
170170

@@ -199,7 +199,7 @@ deps =
199199
# See https://github.com/pytest-dev/pytest/issues/9621
200200
# and https://github.com/pytest-dev/pytest-forked/issues/67
201201
# for justification of the upper bound on pytest
202-
{py3.7}-common: pytest<7.0.0
202+
py3.7-common: pytest<7.0.0
203203
{py3.8,py3.9,py3.10,py3.11,py3.12,py3.13}-common: pytest
204204
205205
# === Gevent ===
@@ -208,7 +208,7 @@ deps =
208208
# See https://github.com/pytest-dev/pytest/issues/9621
209209
# and https://github.com/pytest-dev/pytest-forked/issues/67
210210
# for justification of the upper bound on pytest
211-
{py3.7}-gevent: pytest<7.0.0
211+
py3.7-gevent: pytest<7.0.0
212212
{py3.8,py3.9,py3.10,py3.11,py3.12}-gevent: pytest
213213
214214
# === Integrations ===
@@ -396,7 +396,7 @@ deps =
396396
# Redis
397397
redis: fakeredis!=1.7.4
398398
redis: pytest<8.0.0
399-
{py3.7}-redis: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
399+
py3.7-redis: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
400400
{py3.7,py3.8,py3.9,py3.10,py3.11,py3.12,py3.13}-redis: pytest-asyncio
401401
redis-v3: redis~=3.0
402402
redis-v4: redis~=4.0
@@ -408,13 +408,11 @@ deps =
408408
409409
# RQ (Redis Queue)
410410
# https://github.com/jamesls/fakeredis/issues/245
411-
rq-v{0.6}: fakeredis<1.0
412-
rq-v{0.6}: redis<3.2.2
413411
rq-v{0.13,1.0,1.5,1.10}: fakeredis>=1.0,<1.7.4
414412
rq-v{1.15,1.16}: fakeredis
415-
{py3.7}-rq-v{1.15,1.16}: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
413+
py3.7-rq-v{1.15,1.16}: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
416414
rq-latest: fakeredis
417-
{py3.7}-rq-latest: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
415+
py3.7-rq-latest: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
418416
rq-v0.6: rq~=0.6.0
419417
rq-v0.13: rq~=0.13.0
420418
rq-v1.0: rq~=1.0.0
@@ -462,6 +460,7 @@ setenv =
462460
COVERAGE_FILE=.coverage-sentry-{envname}
463461
464462
django: DJANGO_SETTINGS_MODULE=tests.integrations.django.myapp.settings
463+
py3.12-django: PIP_CONSTRAINT=constraints.txt
465464
466465
common: TESTPATH=tests
467466
gevent: TESTPATH=tests

tox.ini

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ envlist =
1919
{py3.7,py3.8,py3.9,py3.10,py3.11,py3.12,py3.13}-common
2020

2121
# === Gevent ===
22-
{ßpy3.8,py3.10,py3.11,py3.12}-gevent
22+
{py3.8,py3.10,py3.11,py3.12}-gevent
2323

2424
# === Integrations ===
2525
# General format is {pythonversion}-{integrationname}-v{frameworkversion}
@@ -164,7 +164,7 @@ envlist =
164164

165165
# Sanic
166166
{py3.7}-sanic-v{0.8}
167-
{py3.7,py3.8}-sanic-v{20}
167+
{py3.8}-sanic-v{20}
168168
{py3.8,py3.11,py3.12}-sanic-v{24.6}
169169
{py3.9,py3.12,py3.13}-sanic-latest
170170

@@ -307,7 +307,7 @@ deps =
307307
# See https://github.com/pytest-dev/pytest/issues/9621
308308
# and https://github.com/pytest-dev/pytest-forked/issues/67
309309
# for justification of the upper bound on pytest
310-
{py3.7}-common: pytest<7.0.0
310+
py3.7-common: pytest<7.0.0
311311
{py3.8,py3.9,py3.10,py3.11,py3.12,py3.13}-common: pytest
312312

313313
# === Gevent ===
@@ -316,7 +316,7 @@ deps =
316316
# See https://github.com/pytest-dev/pytest/issues/9621
317317
# and https://github.com/pytest-dev/pytest-forked/issues/67
318318
# for justification of the upper bound on pytest
319-
{py3.7}-gevent: pytest<7.0.0
319+
py3.7-gevent: pytest<7.0.0
320320
{py3.8,py3.9,py3.10,py3.11,py3.12}-gevent: pytest
321321

322322
# === Integrations ===
@@ -504,7 +504,7 @@ deps =
504504
# Redis
505505
redis: fakeredis!=1.7.4
506506
redis: pytest<8.0.0
507-
{py3.7}-redis: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
507+
py3.7-redis: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
508508
{py3.7,py3.8,py3.9,py3.10,py3.11,py3.12,py3.13}-redis: pytest-asyncio
509509
redis-v3: redis~=3.0
510510
redis-v4: redis~=4.0
@@ -516,13 +516,11 @@ deps =
516516

517517
# RQ (Redis Queue)
518518
# https://github.com/jamesls/fakeredis/issues/245
519-
rq-v{0.6}: fakeredis<1.0
520-
rq-v{0.6}: redis<3.2.2
521519
rq-v{0.13,1.0,1.5,1.10}: fakeredis>=1.0,<1.7.4
522520
rq-v{1.15,1.16}: fakeredis
523-
{py3.7}-rq-v{1.15,1.16}: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
521+
py3.7-rq-v{1.15,1.16}: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
524522
rq-latest: fakeredis
525-
{py3.7}-rq-latest: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
523+
py3.7-rq-latest: fakeredis!=2.26.0 # https://github.com/cunla/fakeredis-py/issues/341
526524
rq-v0.6: rq~=0.6.0
527525
rq-v0.13: rq~=0.13.0
528526
rq-v1.0: rq~=1.0.0
@@ -717,6 +715,7 @@ setenv =
717715
COVERAGE_FILE=.coverage-sentry-{envname}
718716

719717
django: DJANGO_SETTINGS_MODULE=tests.integrations.django.myapp.settings
718+
py3.12-django: PIP_CONSTRAINT=constraints.txt
720719

721720
common: TESTPATH=tests
722721
gevent: TESTPATH=tests

0 commit comments

Comments
 (0)