Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2023.4.0 #59

Merged
merged 5 commits into from
Apr 10, 2023
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 @@ -25,7 +25,7 @@
author = "Akshay Gupta"

# The short X.Y version
version = "2022.11.0"
version = "2023.4.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,7 +1,7 @@
"""Package initialization."""


__version__ = "2022.11.0"
__version__ = "2023.4.0"

__title__ = "edgetest"
__description__ = "Bleeding edge dependency testing"
Expand Down
8 changes: 3 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
#
# This file is autogenerated by pip-compile with python 3.9
# To update, run:
# This file is autogenerated by pip-compile with Python 3.9
# by the following command:
#
# pip-compile --output-file=requirements.txt setup.cfg
#
cerberus==1.3.4
# via edgetest (setup.cfg)
click==8.1.3
# via edgetest (setup.cfg)
packaging==21.3
packaging==23.0
# via edgetest (setup.cfg)
pluggy==1.0.0
# via edgetest (setup.cfg)
pyparsing==3.0.9
# via packaging
tabulate==0.9.0
# via edgetest (setup.cfg)
tomlkit==0.11.4
Expand Down
41 changes: 20 additions & 21 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -32,30 +32,30 @@ 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
tabulate<=0.9.0,>=0.8.9
packaging<=21.3,>20.6
packaging<=23.0,>20.6
tomlkit<=0.11.4,>=0.11.4

[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
Expand All @@ -64,12 +64,12 @@ qa =
types-click
types-pkg_resources
types-tabulate
build =
build =
build
twine
wheel
bumpver
dev =
dev =
coverage
flake8
mypy
Expand All @@ -96,21 +96,21 @@ dev =
bumpver

[options.entry_points]
console_scripts =
console_scripts =
edgetest = edgetest.interface:cli

[bumpver]
current_version = "2022.11.0"
current_version = "2023.4.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]
Expand All @@ -133,7 +133,7 @@ use_parentheses = True
line_length = 88

[mypy]
python_version = 3.7
python_version = 3.9
warn_return_any = True
warn_unused_configs = True
ignore_missing_imports = True
Expand All @@ -144,21 +144,20 @@ disable_error_code = empty-body
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