Skip to content
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
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 = "2026.5.0"
version = "2026.5.1"
# 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__ = "2026.5.0"
__version__ = "2026.5.1"

__title__ = "edgetest"
__description__ = "Bleeding edge dependency testing"
Expand Down
29 changes: 12 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[build-system]
build-backend = "setuptools.build_meta"

requires = [
"setuptools>=64.0.0",
]
Expand Down Expand Up @@ -31,16 +30,15 @@ dynamic = [
"readme",
"version",
]

dependencies = [
"cerberus<=1.3.8,>=1.3.5",
"click<=8.3.1,>=7.0",
"packaging<=26.0,>20.6",
"click<=8.4.1,>=8.3.0",
"packaging<=26.2,>20.6",
"pluggy<=1.6.0,>=1.5.0",
"pyproject-fmt<=2.16.0,>=2.0.0",
"tabulate<=0.9.0,>=0.8.9",
"tomlkit<=0.14.0,>=0.11.4",
"uv<=0.10.2,>=0.6.0",
"pyproject-fmt<=2.21.2,>=2.0.0",
"tabulate<=0.10.0,>=0.8.9",
"tomlkit<=0.15.0,>=0.11.4",
"uv<=0.11.16,>=0.6.0",
]
optional-dependencies.build = [ "build", "bumpver", "twine", "wheel" ]
optional-dependencies.dev = [
Expand All @@ -67,7 +65,6 @@ optional-dependencies.qa = [
"types-tabulate",
]
optional-dependencies.tests = [ "coverage", "pytest", "pytest-cov" ]

urls."Bug Tracker" = "https://github.com/capitalone/edgetest/issues"
urls."Documentation" = "https://capitalone.github.io/edgetest/"
urls."Source Code" = "https://github.com/capitalone/edgetest"
Expand All @@ -76,10 +73,8 @@ scripts.edgetest = "edgetest.interface:cli"
[tool.setuptools]
include-package-data = true
zip-safe = false

[tool.setuptools.dynamic]
version = { attr = "edgetest.__version__" }
readme = { file = [
dynamic.version = { attr = "edgetest.__version__" }
dynamic.readme = { file = [
"README.md",
], content-type = "text/markdown" }

Expand Down Expand Up @@ -137,12 +132,12 @@ indent = 4
keep_full_version = true
max_supported_python = "3.14"

[tool.pytest.ini_options]
markers = [
[tool.pytest]
ini_options.markers = [
"unit: mark unit tests that do not require external interfaces and use mocking",
"integration: mark test that interact with an external system",
]
addopts = "--verbose"
ini_options.addopts = "--verbose"

[tool.mypy]
python_version = "3.12"
Expand Down Expand Up @@ -186,7 +181,7 @@ lower = [
]

[bumpver]
current_version = "2026.5.0"
current_version = "2026.5.1"
version_pattern = "YYYY.MM.INC0"

[bumpver.file_patterns]
Expand Down
5 changes: 0 additions & 5 deletions setup.py

This file was deleted.

Loading
Loading