Skip to content

Commit

Permalink
Merge pull request #6 from capitalone/dev
Browse files Browse the repository at this point in the history
Release 2021.12.3
  • Loading branch information
Faisal authored Dec 20, 2021
2 parents 22d179b + 2b9f185 commit 85096aa
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 55 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,7 @@ venv.bak/
.DS_Store
.idea/
pip-wheel-metadata/


# edgetest
.edgetest
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 = "Faisal Dosani"

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

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

__version__ = "2021.12.2"
__version__ = "2021.12.3"

__title__ = "edgetest-hub"
__description__ = "Edgetest hub plugin"
Expand Down
4 changes: 1 addition & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ cerberus==1.3.4
# via edgetest
click==8.0.3
# via edgetest
docutils==0.17.1
# via edgetest-hub (setup.py)
edgetest==2021.12.3
edgetest==2021.12.5
# via edgetest-hub (setup.py)
importlib-metadata==4.9.0
# via
Expand Down
117 changes: 67 additions & 50 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,79 +10,92 @@ maintainer = Faisal Dosani
maintainer_email = [email protected]
url = https://github.com/capitalone/edgetest-hub
python_requires =
>=3.7.0
>=3.7.0
project_urls =
Documentation = https://capitalone.github.io/edgetest-hub
Bug Tracker = https://github.com/capitalone/edgetest-hub/issues
Source Code = https://github.com/capitalone/edgetest-hub
Documentation = https://capitalone.github.io/edgetest-hub
Bug Tracker = https://github.com/capitalone/edgetest-hub/issues
Source Code = https://github.com/capitalone/edgetest-hub
classifiers =
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9

[options]
zip_safe = False
include_package_data = True
packages = find:
install_requires =
docutils>=0.15.2,<=0.17.2
edgetest
edgetest

[options.extras_require]
docs =
furo
sphinx
sphinx-copybutton
furo
sphinx
sphinx-copybutton
tests =
coverage
flake8
mypy
pydocstyle
pytest
pytest-cov
coverage
flake8
mypy
pydocstyle
pytest
pytest-cov
qa =
black
isort
pip-tools
pre-commit
pylint
black
isort
pip-tools
pre-commit
pylint
build =
build
twine
wheel
bumpver
build
twine
wheel
bumpver
dev =
%(tests)s
%(docs)s
%(qa)s
%(build)s
coverage
flake8
mypy
pydocstyle
pytest
pytest-cov
furo
sphinx
sphinx-copybutton
black
isort
pip-tools
pre-commit
pylint
build
twine
wheel
bumpver

[options.entry_points]
edgetest =
hub = edgetest_hub.plugin
hub = edgetest_hub.plugin

[bumpver]
current_version = "2021.12.2"
current_version = "2021.12.3"
version_pattern = "YYYY.MM.INC0"
commit_message = "Bump {old_version} to {new_version}"
commit = True

[bumpver:file_patterns]
docs/source/conf.py =
version = "{version}"
version = "{version}"
setup.cfg =
current_version = "{version}"
current_version = "{version}"
edgetest_hub/__init__.py =
__version__ = "{version}"
__version__ = "{version}"

[aliases]
lint=pylint
lint = pylint

[bdist_wheel]
python-tag = py3
Expand All @@ -94,11 +107,11 @@ max-complexity = 17
ignore = E203, W503

[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88

[mypy]
python_version = 3.7
Expand All @@ -112,6 +125,10 @@ pylint_minimum_score = 9.5

[tool:pytest]
markers =
unit: mark unit tests that do not require external interfaces and use mocking
integration: mark test that interact with an external system
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]
extras =
tests

0 comments on commit 85096aa

Please sign in to comment.