forked from starnavi-team/django-postgresql-partitioning
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
40 lines (37 loc) · 1.16 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[tox]
envlist =
py{36}-django{111,20,21}-psycopg2-binary{27,28}
py{37}-django{20,21,22}-psycopg2-binary{27,28,29}
py{38}-django{22,30,31,32,40,41,42}-psycopg2-binary{28,29}
py{39}-django{22,30,31,32,40,41,42}-psycopg2-binary{28,29}
py{310}-django{32,40,41,42,50}-psycopg2-binary{29}
py{311}-django{41,42,50}-psycopg2-binary{29}
py{312}-django{42,50}-psycopg2-binary{29}
;used only for github actions, remove for local testing
[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
[testenv]
deps =
django111: Django>=1.11,<2.0
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<4.0
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
django42: Django>=4.2,<5.0
django50: Django>=5.0,<5.1
psycopg2-binary27: psycopg2-binary>=2.7.5,<2.8
psycopg2-binary28: psycopg2-binary>=2.8,<2.9
psycopg2-binary29: psycopg2-binary>=2.9,<3.0
setuptools
commands = python setup.py test