From eb40c9904b61f404a2786597a3e25b1541fa4879 Mon Sep 17 00:00:00 2001 From: Akshay Gupta <30963644+ak-gupta@users.noreply.github.com> Date: Tue, 7 Jan 2025 13:08:32 -0500 Subject: [PATCH 1/2] build: running edgetest to bump dependencies (#89) * build: running edgetest to bump dependencies * style: removing underscore based on ruff --- edgetest/core.py | 6 +++--- pyproject.toml | 2 +- requirements.txt | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/edgetest/core.py b/edgetest/core.py index 90d34d8..75c53b9 100644 --- a/edgetest/core.py +++ b/edgetest/core.py @@ -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: diff --git a/pyproject.toml b/pyproject.toml index bdfda50..f7f24e9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] diff --git a/requirements.txt b/requirements.txt index 92b7563..2cb734c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ # 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) @@ -12,5 +12,5 @@ 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) From 40d2190527384acc84b0f66959d256e12561fe3b Mon Sep 17 00:00:00 2001 From: Akshay Gupta <30963644+ak-gupta@users.noreply.github.com> Date: Mon, 13 Jan 2025 09:31:28 -0500 Subject: [PATCH 2/2] chore: bumping version (#90) --- docs/source/conf.py | 2 +- edgetest/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 020dec6..8f7f14a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 = "" diff --git a/edgetest/__init__.py b/edgetest/__init__.py index e0e5c1c..6bc541a 100644 --- a/edgetest/__init__.py +++ b/edgetest/__init__.py @@ -1,6 +1,6 @@ """Package initialization.""" -__version__ = "2024.10.0" +__version__ = "2025.1.0" __title__ = "edgetest" __description__ = "Bleeding edge dependency testing" diff --git a/pyproject.toml b/pyproject.toml index f7f24e9..538b380 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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]