-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from capitalone/dev
Release v2023.8.0
- Loading branch information
Showing
13 changed files
with
49 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,14 @@ jobs: | |
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.8' | ||
python-version: '3.10' | ||
- name: Install dependencies | ||
run: python -m pip install -r requirements.txt .[dev] | ||
run: python -m pip install .[dev] | ||
- name: Build | ||
run: make sphinx | ||
shell: bash | ||
- name: Publish | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: gh-pages | ||
folder: docs/_build/html | ||
folder: docs/_build/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
* @fdosani @ak-gupta | ||
* @fdosani @ak-gupta @jdawang @gladysteh99 @NikhilJArora |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,56 +9,56 @@ author_email = [email protected] | |
maintainer = Akshay Gupta | ||
maintainer_email = [email protected] | ||
url = https://github.com/capitalone/edgetest-conda | ||
python_requires = | ||
>=3.7.0 | ||
project_urls = | ||
python_requires = | ||
>=3.8.0 | ||
project_urls = | ||
Documentation = https://capitalone.github.io/edgetest-conda | ||
Bug Tracker = https://github.com/capitalone/edgetest-conda/issues | ||
Source Code = https://github.com/capitalone/edgetest-conda | ||
classifiers = | ||
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 | ||
Programming Language :: Python :: 3.10 | ||
Programming Language :: Python :: 3.11 | ||
|
||
[options] | ||
zip_safe = False | ||
include_package_data = True | ||
packages = find: | ||
install_requires = | ||
install_requires = | ||
edgetest>=2022.3.0 | ||
|
||
[options.extras_require] | ||
docs = | ||
docs = | ||
furo | ||
sphinx | ||
sphinx-copybutton | ||
sphinx-tabs | ||
tests = | ||
tests = | ||
coverage | ||
flake8 | ||
mypy | ||
pydocstyle | ||
pytest | ||
pytest-cov | ||
qa = | ||
qa = | ||
black | ||
isort | ||
pip-tools | ||
pre-commit | ||
pylint | ||
build = | ||
build = | ||
build | ||
twine | ||
wheel | ||
bumpver | ||
dev = | ||
dev = | ||
coverage | ||
flake8 | ||
mypy | ||
|
@@ -80,21 +80,21 @@ dev = | |
bumpver | ||
|
||
[options.entry_points] | ||
edgetest = | ||
edgetest = | ||
conda = edgetest_conda.plugin | ||
|
||
[bumpver] | ||
current_version = "2023.4.0" | ||
current_version = "2023.8.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_conda/__init__.py = | ||
edgetest_conda/__init__.py = | ||
__version__ = "{version}" | ||
|
||
[aliases] | ||
|
@@ -117,7 +117,7 @@ use_parentheses = True | |
line_length = 88 | ||
|
||
[mypy] | ||
python_version = 3.9 | ||
python_version = 3.10 | ||
warn_return_any = True | ||
warn_unused_configs = True | ||
ignore_missing_imports = True | ||
|
@@ -127,17 +127,16 @@ 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 = | ||
python_version = 3.10 | ||
upgrade = | ||
edgetest | ||
extras = | ||
extras = | ||
tests | ||
deps = | ||
deps = | ||
pip-tools | ||
|