Skip to content

Commit 660c2dd

Browse files
authored
Merge pull request #91 from capitalone/dev
v2025.1.0
2 parents 2bd3833 + 40d2190 commit 660c2dd

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
author = "Akshay Gupta"
2525

2626
# The short X.Y version
27-
version = "2024.10.0"
27+
version = "2025.1.0"
2828
# The full version, including alpha/beta/rc tags
2929
release = ""
3030

edgetest/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Package initialization."""
22

3-
__version__ = "2024.10.0"
3+
__version__ = "2025.1.0"
44

55
__title__ = "edgetest"
66
__description__ = "Bleeding edge dependency testing"

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

+2-2
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

@@ -94,7 +94,7 @@ lower = [
9494
# BUMPVER --------------------------------------------------------------------
9595

9696
[bumpver]
97-
current_version = "2024.10.0"
97+
current_version = "2025.1.0"
9898
version_pattern = "YYYY.MM.INC0"
9999

100100
[bumpver.file_patterns]

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)