Skip to content

Commit

Permalink
Merge pull request #91 from capitalone/dev
Browse files Browse the repository at this point in the history
v2025.1.0
  • Loading branch information
ak-gupta authored Jan 13, 2025
2 parents 2bd3833 + 40d2190 commit 660c2dd
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = "Akshay Gupta"

# The short X.Y version
version = "2024.10.0"
version = "2025.1.0"
# The full version, including alpha/beta/rc tags
release = ""

Expand Down
2 changes: 1 addition & 1 deletion edgetest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Package initialization."""

__version__ = "2024.10.0"
__version__ = "2025.1.0"

__title__ = "edgetest"
__description__ = "Bleeding edge dependency testing"
Expand Down
6 changes: 3 additions & 3 deletions edgetest/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ def basedir(self) -> Path:
Path
Base directory for execution.
"""
_basedir = Path.cwd() / ".edgetest"
_basedir.mkdir(exist_ok=True)
basedir = Path.cwd() / ".edgetest"
basedir.mkdir(exist_ok=True)

return _basedir
return basedir

@property
def python_path(self) -> str:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
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"]
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"]

dynamic = ["readme", "version"]

Expand Down Expand Up @@ -94,7 +94,7 @@ lower = [
# BUMPVER --------------------------------------------------------------------

[bumpver]
current_version = "2024.10.0"
current_version = "2025.1.0"
version_pattern = "YYYY.MM.INC0"

[bumpver.file_patterns]
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# This file was autogenerated by uv via the following command:
# uv pip compile --output-file=requirements.txt pyproject.toml
# uv pip compile pyproject.toml -o requirements.txt
cerberus==1.3.5
# via edgetest (pyproject.toml)
click==8.1.7
click==8.1.8
# via edgetest (pyproject.toml)
packaging==24.1
packaging==24.2
# via edgetest (pyproject.toml)
pluggy==1.5.0
# via edgetest (pyproject.toml)
tabulate==0.9.0
# via edgetest (pyproject.toml)
tomlkit==0.11.4
# via edgetest (pyproject.toml)
uv==0.4.26
uv==0.5.15
# via edgetest (pyproject.toml)

0 comments on commit 660c2dd

Please sign in to comment.