From 456aa3428155f2c8a7f0a5e8fe8b56b2a06c46fb Mon Sep 17 00:00:00 2001 From: Faisal Date: Fri, 15 Jul 2022 10:24:59 -0500 Subject: [PATCH] Bump 2022.6.0 to 2022.7.0 (#42) --- docs/source/conf.py | 2 +- edgetest/__init__.py | 2 +- setup.cfg | 37 ++++++++++++++++++------------------- 3 files changed, 20 insertions(+), 21 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 1270006..f7a8d04 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = "Akshay Gupta" # The short X.Y version -version = "2022.6.0" +version = "2022.7.0" # The full version, including alpha/beta/rc tags release = "" diff --git a/edgetest/__init__.py b/edgetest/__init__.py index d6d13cd..eaa9445 100644 --- a/edgetest/__init__.py +++ b/edgetest/__init__.py @@ -1,7 +1,7 @@ """Package initialization.""" -__version__ = "2022.6.0" +__version__ = "2022.7.0" __title__ = "edgetest" __description__ = "Bleeding edge dependency testing" diff --git a/setup.cfg b/setup.cfg index 3b3df66..1c86ba2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -10,13 +10,13 @@ license = Apache Software License maintainer = Akshay Gupta maintainer_email = akshay.gupta2@capitalone.com url = https://github.com/capitalone/edgetest -python_requires = +python_requires = >=3.7.0 -project_urls = +project_urls = Documentation = https://capitalone.github.io/edgetest/ Bug Tracker = https://github.com/capitalone/edgetest/issues Source Code = https://github.com/capitalone/edgetest -classifiers = +classifiers = Intended Audience :: Developers Natural Language :: English Operating System :: OS Independent @@ -31,7 +31,7 @@ classifiers = zip_safe = False include_package_data = True packages = find: -install_requires = +install_requires = Cerberus<=1.3.4,>=1.3.0 click<=8.1.3,>=7.0 pluggy<=1.0.0,>=1.0.0 @@ -39,21 +39,21 @@ install_requires = packaging<=21.3,>20.6 [options.extras_require] -docs = +docs = furo sphinx sphinx-copybutton sphinx-tabs pillow recommonmark -tests = +tests = coverage flake8 mypy pydocstyle pytest pytest-cov -qa = +qa = pylint pip-tools pre-commit @@ -62,12 +62,12 @@ qa = types-click types-pkg_resources types-tabulate -build = +build = build twine wheel bumpver -dev = +dev = coverage flake8 mypy @@ -94,21 +94,21 @@ dev = bumpver [options.entry_points] -console_scripts = +console_scripts = edgetest = edgetest.interface:cli [bumpver] -current_version = "2022.6.0" +current_version = "2022.7.0" version_pattern = "YYYY.MM.INC0" commit_message = "Bump {old_version} to {new_version}" commit = True [bumpver:file_patterns] -docs/source/conf.py = +docs/source/conf.py = version = "{version}" -setup.cfg = +setup.cfg = current_version = "{version}" -edgetest/__init__.py = +edgetest/__init__.py = __version__ = "{version}" [aliases] @@ -141,21 +141,20 @@ allow_redefinition = True pylint_minimum_score = 9.5 [tool:pytest] -markers = +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 [edgetest.envs.core] python_version = 3.9 -upgrade = +upgrade = Cerberus click pluggy tabulate packaging -extras = +extras = tests -deps = +deps = pip-tools -