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 v2024.4.0 #54

Merged
merged 5 commits into from
Apr 19, 2024
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 .github/workflows/edgetest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
edgetest-flags: '-c setup.cfg --export'
base-branch: 'dev'
skip-pr: 'false'
python-version: 3.10
python-version: '3.10'
2 changes: 1 addition & 1 deletion edgetest_conda/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Package initialization."""

__version__ = "2023.8.0"
__version__ = "2024.4.0"

__title__ = "edgetest-conda"
__description__ = "Conda edgetest plugin"
Expand Down
24 changes: 24 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#
# This file is autogenerated by pip-compile with Python 3.11
# by the following command:
#
# pip-compile --output-file=requirements.txt setup.cfg
#

cerberus==1.3.4
# via edgetest
click==8.1.3
# via edgetest
edgetest==2024.2.0
# via edgetest-conda (setup.cfg)
packaging==23.0
# via edgetest
pluggy==1.0.0
# via edgetest
tabulate==0.9.0
# via edgetest
tomlkit==0.11.4
# via edgetest

# The following packages are considered to be unsafe in a requirements file:
# setuptools
36 changes: 18 additions & 18 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ author_email = [email protected]
maintainer = Akshay Gupta
maintainer_email = [email protected]
url = https://github.com/capitalone/edgetest-conda
python_requires =
python_requires =
>=3.8.0
project_urls =
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
Expand All @@ -30,35 +30,34 @@ classifiers =
[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
Expand All @@ -80,7 +79,7 @@ dev =
bumpver

[options.entry_points]
edgetest =
edgetest =
conda = edgetest_conda.plugin

[bumpver]
Expand All @@ -90,11 +89,11 @@ 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]
Expand Down Expand Up @@ -127,16 +126,17 @@ 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.10
upgrade =
upgrade =
edgetest
extras =
extras =
tests
deps =
deps =
pip-tools

10 changes: 5 additions & 5 deletions tests/test_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,11 @@

TABLE_OUTPUT = """

============= =============== =================== =================
Environment Passing tests Upgraded packages Package version
============= =============== =================== =================
myenv True myupgrade 0.2.0
============= =============== =================== =================
============= ================== =============== =================== ================== =================
Environment Setup successful Passing tests Upgraded packages Lowered packages Package version
============= ================== =============== =================== ================== =================
myenv True True myupgrade 0.2.0
============= ================== =============== =================== ================== =================
"""


Expand Down
Loading