File tree 4 files changed +20
-19
lines changed
tooling/src/hypothesistooling
4 files changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ if [ -n "${GITHUB_ACTIONS-}" ] || [ -n "${CODESPACES-}" ] ; then
22
22
PYTHON=$( command -v python)
23
23
else
24
24
# Otherwise, we install it from scratch
25
- # NOTE: keep this version in sync with PYMAIN in tooling
26
- " $SCRIPTS /ensure-python.sh" 3.8.10
27
- PYTHON=$( pythonloc 3.8.10 ) /bin/python
25
+ # NOTE: tooling keeps this version in sync with PYMAIN in tooling
26
+ " $SCRIPTS /ensure-python.sh" 3.8.11
27
+ PYTHON=$( pythonloc 3.8.11 ) /bin/python
28
28
fi
29
29
30
30
TOOL_REQUIREMENTS=" $ROOT /requirements/tools.txt"
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ execnet==1.9.0
12
12
# via pytest-xdist
13
13
iniconfig==1.1.1
14
14
# via pytest
15
- packaging==20.9
15
+ packaging==21.0
16
16
# via pytest
17
17
pexpect==4.8.0
18
18
# via -r requirements/test.in
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ appdirs==1.4.4
10
10
# via
11
11
# black
12
12
# virtualenv
13
- asgiref==3.3.4
13
+ asgiref==3.4.1
14
14
# via django
15
15
attrs==21.2.0
16
16
# via
@@ -61,7 +61,7 @@ decorator==5.0.9
61
61
# traitlets
62
62
distlib==0.3.2
63
63
# via virtualenv
64
- django==3.2.4
64
+ django==3.2.5
65
65
# via -r requirements/tools.in
66
66
docutils==0.16
67
67
# via
@@ -107,7 +107,7 @@ idna==2.10
107
107
# via requests
108
108
imagesize==1.2.0
109
109
# via sphinx
110
- importlib-metadata==4.5 .0
110
+ importlib-metadata==4.6 .0
111
111
# via
112
112
# keyring
113
113
# twine
@@ -147,7 +147,7 @@ mypy-extensions==0.4.3
147
147
# black
148
148
# mypy
149
149
# typing-inspect
150
- packaging==20.9
150
+ packaging==21.0
151
151
# via
152
152
# bleach
153
153
# pytest
@@ -213,15 +213,15 @@ pytz==2021.1
213
213
# via
214
214
# babel
215
215
# django
216
- pyupgrade==2.19.4
216
+ pyupgrade==2.20.0
217
217
# via shed
218
218
pyyaml==5.4.1
219
219
# via
220
220
# bandit
221
221
# libcst
222
222
readme-renderer==29.0
223
223
# via twine
224
- regex==2021.4.4
224
+ regex==2021.7.1
225
225
# via black
226
226
requests==2.25.1
227
227
# via
@@ -302,13 +302,13 @@ traitlets==4.3.3
302
302
# ipython
303
303
twine==3.4.1
304
304
# via -r requirements/tools.in
305
- types-click==7.1.1
305
+ types-click==7.1.2
306
306
# via -r requirements/tools.in
307
- types-pkg-resources==0.1.2
307
+ types-pkg-resources==0.1.3
308
308
# via -r requirements/tools.in
309
- types-pytz==0 .1.1
309
+ types-pytz==2021 .1.0
310
310
# via -r requirements/tools.in
311
- types-redis==3.5.1
311
+ types-redis==3.5.4
312
312
# via -r requirements/tools.in
313
313
typing-extensions==3.10.0.0
314
314
# via
@@ -327,7 +327,7 @@ webencodings==0.5.1
327
327
# via bleach
328
328
wheel==0.36.2
329
329
# via pip-tools
330
- zipp==3.4.1
330
+ zipp==3.5.0
331
331
# via importlib-metadata
332
332
333
333
# The following packages are considered to be unsafe in a requirements file:
Original file line number Diff line number Diff line change @@ -303,6 +303,7 @@ def update_python_versions():
303
303
if sh_before != sh_after :
304
304
build_sh .unlink () # so bash doesn't reload a modified file
305
305
build_sh .write_text (sh_after )
306
+ build_sh .chmod (0o755 )
306
307
307
308
308
309
@task ()
@@ -359,10 +360,10 @@ def run_tox(task, version):
359
360
360
361
361
362
# See update_python_versions() above
362
- PY36 = "3.6.13 "
363
- PY37 = "3.7.10 "
364
- PY38 = PYMAIN = "3.8.10 " # Sync PYMAIN minor version with GH Actions main.yml
365
- PY39 = "3.9.5 "
363
+ PY36 = "3.6.14 "
364
+ PY37 = "3.7.11 "
365
+ PY38 = PYMAIN = "3.8.11 " # Sync PYMAIN minor version with GH Actions main.yml
366
+ PY39 = "3.9.6 "
366
367
PY310 = "3.10-dev"
367
368
PYPY36 = "pypy3.6-7.3.3"
368
369
PYPY37 = "pypy3.7-7.3.5"
You can’t perform that action at this time.
0 commit comments