Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update development dependencies (non-major) #516

Merged
merged 3 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
alabaster==0.7.16
astroid==2.15.8
autoflake==1.7.8
autoflake==2.3.1
Babel==2.14.0
beautifulsoup4==4.12.3
black==23.12.1
Expand All @@ -26,7 +26,7 @@ distlib==0.3.8
distro==1.9.0
docutils==0.19
filelock==3.13.1
flake8==4.0.1
flake8==7.0.0
furo==2024.1.29
html5lib==1.1
httplib2==0.22.0
Expand All @@ -48,7 +48,7 @@ lxml==5.1.0
Markdown==3.5.2
markdown-it-py==3.0.0
MarkupSafe==2.1.5
mccabe==0.6.1
mccabe==0.7.0
mdurl==0.1.2
more-itertools==10.2.0
mypy==1.8.0
Expand All @@ -62,12 +62,12 @@ pkginfo==1.9.6
platformdirs==4.2.0
pluggy==1.4.0
polib==1.2.0
pycodestyle==2.8.0
pycodestyle==2.11.1
pycparser==2.21
pydantic==1.10.14
pydantic-yaml==0.11.2
pydocstyle==6.3.0
pyflakes==2.4.0
pyflakes==3.2.0
Pygments==2.17.2
pylint==2.17.7
pylint-fixme-info==1.0.3
Expand All @@ -88,7 +88,7 @@ requests-toolbelt==1.0.0
requests-unixsocket==0.3.0
rfc3986==2.0.0
rich==13.7.0
ruff==0.1.6
ruff==0.3.5
SecretStorage==3.3.3
six==1.16.0
snowballstemmer==2.2.0
Expand Down Expand Up @@ -117,10 +117,10 @@ tomlkit==0.12.3
tornado==6.4
tox==4.12.1
twine==4.0.2
types-Deprecated==1.2.9.20240106
types-PyYAML==6.0.12.12
types-Deprecated==1.2.9.20240311
types-PyYAML==6.0.12.20240311
types-requests==2.31.0.6
types-setuptools==69.0.0.20240125
types-setuptools==69.2.0.20240317
types-tabulate==0.9.0.20240106
types-urllib3==1.26.25.14
typing_extensions==4.9.0
Expand Down
4 changes: 2 additions & 2 deletions requirements-doc.txt
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ sphinxcontrib-qthelp==1.0.7
sphinxcontrib-serializinghtml==1.1.10
tabulate==0.9.0
tornado==6.4
types-Deprecated==1.2.9.20240106
types-PyYAML==6.0.12.12
types-Deprecated==1.2.9.20240311
types-PyYAML==6.0.12.20240311
typing_extensions==4.9.0
urllib3==1.26.18
wadllib==1.3.6
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ six==1.16.0
spdx==2.5.1
spdx-lookup==0.3.3
tabulate==0.9.0
types-Deprecated==1.2.9.20240106
types-PyYAML==6.0.12.12
types-Deprecated==1.2.9.20240311
types-PyYAML==6.0.12.20240311
typing_extensions==4.9.0
urllib3==1.26.18
wadllib==1.3.6
Expand Down
2 changes: 1 addition & 1 deletion rockcraft/pebble.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def define_pebble_layer(
pebble_layers_path_in_base + "/[0-9][0-9][0-9]-???*.yaml"
) + glob.glob(pebble_layers_path_in_base + "/[0-9][0-9][0-9]-???*.yml")

prefixes = list(map(lambda l: Path(l).name[:3], existing_pebble_layers))
prefixes = list(map(lambda layer: Path(layer).name[:3], existing_pebble_layers))
prefixes.sort()
emit.progress(
f"Found {len(existing_pebble_layers)} Pebble layers in the base's root filesystem"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ test =
pytest-check>=2.0
pytest-mock
pytest-subprocess
ruff==0.1.6
ruff==0.3.5
tox
types-requests
types-setuptools
Expand Down
Loading