File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -120,13 +120,21 @@ jobs:
120
120
- {django: '==4.2.*', python: '3.10', os: 'ubuntu-latest'}
121
121
- {django: '==4.2.*', python: '3.11', os: 'ubuntu-latest'}
122
122
123
- - {django: '==5.0.*', python: '3.12', os: 'ubuntu-latest'}
124
-
125
123
steps :
126
124
- uses : actions/checkout@v2
127
- - uses : actions/setup-python@v2
125
+ - name : Setup Python v. >2.7
126
+ if : ${{ matrix.python != '2.7' }}
127
+ uses : actions/setup-python@v2
128
+ with :
129
+ python-version : ${{ matrix.python }}
130
+ - name : Setup Python v2.7
131
+ if : ${{ matrix.python == '2.7' }}
132
+ uses : MatteoH2O1999/setup-python@v1
128
133
with :
129
134
python-version : ${{ matrix.python }}
135
+ allow-build : info
136
+ cache-build : true
137
+ cache : pip
130
138
- name : update pip
131
139
run : |
132
140
pip install -U wheel
You can’t perform that action at this time.
0 commit comments