Skip to content

Commit 9a5e06a

Browse files
committed
Update pinned dependencies
1 parent 5565708 commit 9a5e06a

File tree

9 files changed

+70
-75
lines changed

9 files changed

+70
-75
lines changed

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ jobs:
226226
NODE_VERSION: 18
227227
# Note that the versions below must be updated in sync; we've automated
228228
# that with `update_pyodide_versions()` in our weekly cronjob.
229-
PYODIDE_VERSION: 0.26.4
230-
PYTHON_VERSION: 3.12.1
229+
PYODIDE_VERSION: 0.27.0
230+
PYTHON_VERSION: 3.12.7
231231
EMSCRIPTEN_VERSION: 3.1.58
232232
steps:
233233
- uses: actions/checkout@v3

build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ if [ -n "${GITHUB_ACTIONS-}" ] || [ -n "${CODESPACES-}" ] ; then
2525
else
2626
# Otherwise, we install it from scratch
2727
# NOTE: tooling keeps this version in sync with ci_version in tooling
28-
"$SCRIPTS/ensure-python.sh" 3.10.15
29-
PYTHON=$(pythonloc 3.10.15)/bin/python
28+
"$SCRIPTS/ensure-python.sh" 3.10.16
29+
PYTHON=$(pythonloc 3.10.16)/bin/python
3030
fi
3131

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

hypothesis-python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def local_file(name):
6060
"pytest": ["pytest>=4.6"],
6161
"dpcontracts": ["dpcontracts>=0.4"],
6262
"redis": ["redis>=3.0.0"],
63-
"crosshair": ["hypothesis-crosshair>=0.0.18", "crosshair-tool>=0.0.78"],
63+
"crosshair": ["hypothesis-crosshair>=0.0.18", "crosshair-tool>=0.0.81"],
6464
# zoneinfo is an odd one: every dependency is platform-conditional.
6565
"zoneinfo": [
6666
"tzdata>=2024.2 ; sys_platform == 'win32' or sys_platform == 'emscripten'",

hypothesis-python/tox.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -161,21 +161,21 @@ commands =
161161
setenv=
162162
PYTHONWARNDEFAULTENCODING=1
163163
commands =
164-
pip install django==4.2.16
164+
pip install django==4.2.17
165165
python -bb -X dev -m tests.django.manage test tests.django {posargs}
166166

167167
[testenv:django50]
168168
setenv=
169169
PYTHONWARNDEFAULTENCODING=1
170170
commands =
171-
pip install django==5.0.9
171+
pip install django==5.0.10
172172
python -bb -X dev -m tests.django.manage test tests.django {posargs}
173173

174174
[testenv:django51]
175175
setenv=
176176
PYTHONWARNDEFAULTENCODING=1
177177
commands =
178-
pip install django==5.1.3
178+
pip install django==5.1.4
179179
python -bb -X dev -m tests.django.manage test tests.django {posargs}
180180

181181
[testenv:py{39}-nose]

requirements/coverage.txt

+7-7
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ attrs==24.1.0
1414
# hypothesis (hypothesis-python/setup.py)
1515
black==24.10.0
1616
# via -r requirements/coverage.in
17-
click==8.1.7
17+
click==8.1.8
1818
# via
1919
# -r requirements/coverage.in
2020
# black
21-
coverage[toml]==7.6.8
21+
coverage[toml]==7.6.10
2222
# via pytest-cov
2323
dpcontracts==0.6.0
2424
# via -r requirements/coverage.in
@@ -28,7 +28,7 @@ exceptiongroup==1.2.2 ; python_version < "3.11"
2828
# pytest
2929
execnet==2.1.1
3030
# via pytest-xdist
31-
fakeredis==2.26.1
31+
fakeredis==2.26.2
3232
# via -r requirements/coverage.in
3333
iniconfig==2.0.0
3434
# via pytest
@@ -38,7 +38,7 @@ libcst==1.5.1
3838
# via -r requirements/coverage.in
3939
mypy-extensions==1.0.0
4040
# via black
41-
numpy==2.1.3
41+
numpy==2.2.1
4242
# via
4343
# -r requirements/coverage.in
4444
# pandas
@@ -60,7 +60,7 @@ ptyprocess==0.7.0
6060
# via pexpect
6161
pyarrow==18.1.0
6262
# via -r requirements/coverage.in
63-
pytest==8.3.3
63+
pytest==8.3.4
6464
# via
6565
# -r requirements/test.in
6666
# pytest-cov
@@ -79,9 +79,9 @@ pytz==2024.2
7979
# pandas
8080
pyyaml==6.0.2
8181
# via libcst
82-
redis==5.2.0
82+
redis==5.2.1
8383
# via fakeredis
84-
six==1.16.0
84+
six==1.17.0
8585
# via python-dateutil
8686
sortedcontainers==2.4.0
8787
# via

requirements/fuzzing.txt

+15-17
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ black==24.10.0
2020
# hypothesis
2121
blinker==1.9.0
2222
# via flask
23-
certifi==2024.8.30
23+
certifi==2024.12.14
2424
# via requests
25-
charset-normalizer==3.4.0
25+
charset-normalizer==3.4.1
2626
# via requests
27-
click==8.1.7
27+
click==8.1.8
2828
# via
2929
# -r requirements/coverage.in
3030
# black
3131
# flask
3232
# hypothesis
33-
coverage[toml]==7.6.8
33+
coverage[toml]==7.6.10
3434
# via
3535
# hypofuzz
3636
# pytest-cov
@@ -51,13 +51,13 @@ exceptiongroup==1.2.2 ; python_version < "3.11"
5151
# pytest
5252
execnet==2.1.1
5353
# via pytest-xdist
54-
fakeredis==2.26.1
54+
fakeredis==2.26.2
5555
# via -r requirements/coverage.in
5656
flask==3.0.3
5757
# via dash
58-
hypofuzz==24.9.1
58+
hypofuzz==24.11.1
5959
# via -r requirements/fuzzing.in
60-
hypothesis[cli]==6.121.1
60+
hypothesis[cli]==6.123.2
6161
# via hypofuzz
6262
idna==3.10
6363
# via requests
@@ -67,7 +67,7 @@ iniconfig==2.0.0
6767
# via pytest
6868
itsdangerous==2.2.0
6969
# via flask
70-
jinja2==3.1.4
70+
jinja2==3.1.5
7171
# via flask
7272
lark==1.2.2
7373
# via -r requirements/coverage.in
@@ -87,7 +87,7 @@ mypy-extensions==1.0.0
8787
# via black
8888
nest-asyncio==1.6.0
8989
# via dash
90-
numpy==2.1.3
90+
numpy==2.2.1
9191
# via
9292
# -r requirements/coverage.in
9393
# pandas
@@ -110,15 +110,15 @@ plotly==5.24.1
110110
# via dash
111111
pluggy==1.5.0
112112
# via pytest
113-
psutil==6.1.0
113+
psutil==6.1.1
114114
# via hypofuzz
115115
ptyprocess==0.7.0
116116
# via pexpect
117117
pyarrow==18.1.0
118118
# via -r requirements/coverage.in
119119
pygments==2.18.0
120120
# via rich
121-
pytest==8.3.3
121+
pytest==8.3.4
122122
# via
123123
# -r requirements/test.in
124124
# hypofuzz
@@ -138,17 +138,15 @@ pytz==2024.2
138138
# pandas
139139
pyyaml==6.0.2
140140
# via libcst
141-
redis==5.2.0
141+
redis==5.2.1
142142
# via fakeredis
143143
requests==2.32.3
144-
# via
145-
# dash
146-
# hypofuzz
144+
# via dash
147145
retrying==1.3.4
148146
# via dash
149147
rich==13.9.4
150148
# via hypothesis
151-
six==1.16.0
149+
six==1.17.0
152150
# via
153151
# python-dateutil
154152
# retrying
@@ -173,7 +171,7 @@ typing-extensions==4.12.2
173171
# rich
174172
tzdata==2024.2
175173
# via pandas
176-
urllib3==2.2.3
174+
urllib3==2.3.0
177175
# via requests
178176
werkzeug==3.0.6
179177
# via

requirements/test.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pluggy==1.5.0
2424
# via pytest
2525
ptyprocess==0.7.0
2626
# via pexpect
27-
pytest==8.3.3
27+
pytest==8.3.4
2828
# via
2929
# -r requirements/test.in
3030
# pytest-xdist

0 commit comments

Comments
 (0)