Skip to content

Commit eb40c99

Browse files
authored
build: running edgetest to bump dependencies (#89)
* build: running edgetest to bump dependencies * style: removing underscore based on ruff
1 parent dfc8b73 commit eb40c99

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

edgetest/core.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@ def basedir(self) -> Path:
7575
Path
7676
Base directory for execution.
7777
"""
78-
_basedir = Path.cwd() / ".edgetest"
79-
_basedir.mkdir(exist_ok=True)
78+
basedir = Path.cwd() / ".edgetest"
79+
basedir.mkdir(exist_ok=True)
8080

81-
return _basedir
81+
return basedir
8282

8383
@property
8484
def python_path(self) -> str:

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ classifiers = [
2121
"Programming Language :: Python :: 3.11",
2222
"Programming Language :: Python :: 3.12",
2323
]
24-
dependencies = ["Cerberus<=1.3.5,>=1.3.0", "click<=8.1.7,>=7.0", "pluggy<=1.5.0,>=1.3.0", "tabulate<=0.9.0,>=0.8.9", "packaging<=24.1,>20.6", "tomlkit<=0.11.4,>=0.11.4", "uv<=0.4.26,>=0.2.0"]
24+
dependencies = ["Cerberus<=1.3.5,>=1.3.0", "click<=8.1.8,>=7.0", "pluggy<=1.5.0,>=1.3.0", "tabulate<=0.9.0,>=0.8.9", "packaging<=24.2,>20.6", "tomlkit<=0.11.4,>=0.11.4", "uv<=0.5.15,>=0.2.0"]
2525

2626
dynamic = ["readme", "version"]
2727

requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# This file was autogenerated by uv via the following command:
2-
# uv pip compile --output-file=requirements.txt pyproject.toml
2+
# uv pip compile pyproject.toml -o requirements.txt
33
cerberus==1.3.5
44
# via edgetest (pyproject.toml)
5-
click==8.1.7
5+
click==8.1.8
66
# via edgetest (pyproject.toml)
7-
packaging==24.1
7+
packaging==24.2
88
# via edgetest (pyproject.toml)
99
pluggy==1.5.0
1010
# via edgetest (pyproject.toml)
1111
tabulate==0.9.0
1212
# via edgetest (pyproject.toml)
1313
tomlkit==0.11.4
1414
# via edgetest (pyproject.toml)
15-
uv==0.4.26
15+
uv==0.5.15
1616
# via edgetest (pyproject.toml)

0 commit comments

Comments
 (0)