@@ -12,20 +12,20 @@ jobs:
1212 strategy :
1313 fail-fast : false
1414 matrix :
15- python-version : [3.6 ]
16- toxenv : [django_not_installed, django_is_installed, flake8, pylint, readme]
15+ python-version : [3.7 ]
16+ toxenv : [django_not_installed, flake8, pylint, readme]
1717
1818 steps :
19- - uses : actions/checkout@v2
19+ - uses : actions/checkout@v3
2020 - name : Set up Python ${{ matrix.python-version }}
21- uses : actions/setup-python@v1
21+ uses : actions/setup-python@v4
2222 with :
2323 python-version : ${{ matrix.python-version }}
2424
2525 - name : Execute tests
2626 run : |
27- pip install tox
28- pip install -e .[ for_tests]
27+ pip install -U pip poetry tox
28+ poetry install -E for_tests
2929
3030 export TOXENV=${{ matrix.toxenv }}
3131 export PYTHON=${{ matrix.python-version }}
@@ -42,16 +42,16 @@ jobs:
4242 django-version : [-main, "4.0"]
4343
4444 steps :
45- - uses : actions/checkout@v2
45+ - uses : actions/checkout@v3
4646 - name : Set up Python ${{ matrix.python-version }}
47- uses : actions/setup-python@v1
47+ uses : actions/setup-python@v4
4848 with :
4949 python-version : ${{ matrix.python-version }}
5050
5151 - name : Execute tests
5252 run : |
53- pip install tox
54- pip install -e .[ for_tests]
53+ pip install -U pip poetry tox
54+ poetry install -E for_tests
5555
5656 export DJANGO=${{ matrix.django-version }}
5757 export PYTHON=${{ matrix.python-version }}
@@ -76,16 +76,16 @@ jobs:
7676 django-version : [3.2, 3.1, "3.0", "2.0", "2.2", "1.11"]
7777
7878 steps :
79- - uses : actions/checkout@v2
79+ - uses : actions/checkout@v3
8080 - name : Set up Python ${{ matrix.python-version }}
81- uses : actions/setup-python@v1
81+ uses : actions/setup-python@v4
8282 with :
8383 python-version : ${{ matrix.python-version }}
8484
8585 - name : Execute tests
8686 run : |
87- pip install tox
88- pip install -e .[ for_tests]
87+ pip install -U pip poetry tox
88+ poetry install -E for_tests
8989
9090 export DJANGO=${{ matrix.django-version }}
9191 export PYTHON=${{ matrix.python-version }}
@@ -107,15 +107,15 @@ jobs:
107107 python-version : [3.7]
108108
109109 steps :
110- - uses : actions/checkout@v2
110+ - uses : actions/checkout@v3
111111 - name : Set up Python ${{ matrix.python-version }}
112- uses : actions/setup-python@v1
112+ uses : actions/setup-python@v4
113113 with :
114114 python-version : ${{ matrix.python-version }}
115115
116116 - name : Build
117117 run : |
118- pip install tox
119- pip install -e .[ for_tests]
118+ pip install -U pip poetry tox
119+ poetry install -E for_tests
120120
121121 ./scripts/build.sh
0 commit comments