Skip to content

Commit 0d27fe8

Browse files
DRMacIverZac-HD
authored andcommitted
Update pinned dependencies
1 parent cc32bd1 commit 0d27fe8

File tree

4 files changed

+20
-19
lines changed

4 files changed

+20
-19
lines changed

build.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ if [ -n "${GITHUB_ACTIONS-}" ] || [ -n "${CODESPACES-}" ] ; then
2222
PYTHON=$(command -v python)
2323
else
2424
# 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
2828
fi
2929

3030
TOOL_REQUIREMENTS="$ROOT/requirements/tools.txt"

requirements/test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ execnet==1.9.0
1212
# via pytest-xdist
1313
iniconfig==1.1.1
1414
# via pytest
15-
packaging==20.9
15+
packaging==21.0
1616
# via pytest
1717
pexpect==4.8.0
1818
# via -r requirements/test.in

requirements/tools.txt

+11-11
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ appdirs==1.4.4
1010
# via
1111
# black
1212
# virtualenv
13-
asgiref==3.3.4
13+
asgiref==3.4.1
1414
# via django
1515
attrs==21.2.0
1616
# via
@@ -61,7 +61,7 @@ decorator==5.0.9
6161
# traitlets
6262
distlib==0.3.2
6363
# via virtualenv
64-
django==3.2.4
64+
django==3.2.5
6565
# via -r requirements/tools.in
6666
docutils==0.16
6767
# via
@@ -107,7 +107,7 @@ idna==2.10
107107
# via requests
108108
imagesize==1.2.0
109109
# via sphinx
110-
importlib-metadata==4.5.0
110+
importlib-metadata==4.6.0
111111
# via
112112
# keyring
113113
# twine
@@ -147,7 +147,7 @@ mypy-extensions==0.4.3
147147
# black
148148
# mypy
149149
# typing-inspect
150-
packaging==20.9
150+
packaging==21.0
151151
# via
152152
# bleach
153153
# pytest
@@ -213,15 +213,15 @@ pytz==2021.1
213213
# via
214214
# babel
215215
# django
216-
pyupgrade==2.19.4
216+
pyupgrade==2.20.0
217217
# via shed
218218
pyyaml==5.4.1
219219
# via
220220
# bandit
221221
# libcst
222222
readme-renderer==29.0
223223
# via twine
224-
regex==2021.4.4
224+
regex==2021.7.1
225225
# via black
226226
requests==2.25.1
227227
# via
@@ -302,13 +302,13 @@ traitlets==4.3.3
302302
# ipython
303303
twine==3.4.1
304304
# via -r requirements/tools.in
305-
types-click==7.1.1
305+
types-click==7.1.2
306306
# via -r requirements/tools.in
307-
types-pkg-resources==0.1.2
307+
types-pkg-resources==0.1.3
308308
# via -r requirements/tools.in
309-
types-pytz==0.1.1
309+
types-pytz==2021.1.0
310310
# via -r requirements/tools.in
311-
types-redis==3.5.1
311+
types-redis==3.5.4
312312
# via -r requirements/tools.in
313313
typing-extensions==3.10.0.0
314314
# via
@@ -327,7 +327,7 @@ webencodings==0.5.1
327327
# via bleach
328328
wheel==0.36.2
329329
# via pip-tools
330-
zipp==3.4.1
330+
zipp==3.5.0
331331
# via importlib-metadata
332332

333333
# The following packages are considered to be unsafe in a requirements file:

tooling/src/hypothesistooling/__main__.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,7 @@ def update_python_versions():
303303
if sh_before != sh_after:
304304
build_sh.unlink() # so bash doesn't reload a modified file
305305
build_sh.write_text(sh_after)
306+
build_sh.chmod(0o755)
306307

307308

308309
@task()
@@ -359,10 +360,10 @@ def run_tox(task, version):
359360

360361

361362
# 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"
366367
PY310 = "3.10-dev"
367368
PYPY36 = "pypy3.6-7.3.3"
368369
PYPY37 = "pypy3.7-7.3.5"

0 commit comments

Comments
 (0)