File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 4141 submodules : true
4242 - name : >-
4343 Verify that `requirements/runtime-deps.in`
44- is in sync with `setup.cfg `
44+ is in sync with `pyproject.toml `
4545 run: |
4646 set -eEuo pipefail
4747 make sync-direct-runtime-deps
Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ dependencies = [
4141 " propcache >= 0.2.0" ,
4242 " yarl >= 1.17.0, < 2.0" ,
4343]
44- dynamic = [" version" ]
44+ dynamic = [
45+ " version" ,
46+ ]
4547
4648[project .optional-dependencies ]
4749speedups = [
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ pytest-mock
1111pytest_codspeed
1212python-on-whales
1313slotscheck
14- tomli; python_version < "3.11"
1514trustme
1615uvloop; platform_system != "Windows"
1716valkey
Original file line number Diff line number Diff line change 11#
2- # This file is autogenerated by pip-compile with Python 3.10
2+ # This file is autogenerated by pip-compile with Python 3.12
33# by the following command:
44#
55# pip-compile --allow-unsafe --output-file=requirements/lint.txt --strip-extras requirements/lint.in
@@ -98,9 +98,8 @@ six==1.17.0
9898 # via python-dateutil
9999slotscheck==0.19.1
100100 # via -r requirements/lint.in
101- tomli==2.3.0 ; python_version < "3.11"
101+ tomli==2.3.0
102102 # via
103- # -r requirements/lint.in
104103 # mypy
105104 # pytest
106105 # slotscheck
Original file line number Diff line number Diff line change 77if sys .version_info >= (3 , 11 ):
88 import tomllib
99else :
10- import tomli as tomllib # noqa: I900
10+ raise RuntimeError ( f"Use Python 3.11+ to run 'make sync-direct-runtime-deps'" )
1111
1212data = tomllib .loads (Path ("pyproject.toml" ).read_text ())
1313reqs = (
You can’t perform that action at this time.
0 commit comments