From 6376f8152c7533adce9d5258c9c6d17adb6a43aa Mon Sep 17 00:00:00 2001 From: Faisal Date: Wed, 9 Mar 2022 10:24:49 -0400 Subject: [PATCH 1/5] adding edgetest action and setup cfg (#11) --- .github/workflows/edgetest.yml | 21 +++++++++++++++++++++ setup.cfg | 9 +++++++-- 2 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/edgetest.yml diff --git a/.github/workflows/edgetest.yml b/.github/workflows/edgetest.yml new file mode 100644 index 0000000..ffa3188 --- /dev/null +++ b/.github/workflows/edgetest.yml @@ -0,0 +1,21 @@ +# This workflow runs edgetest on edgetest-conda @ 17:35 UTC Fridays. +# https://github.com/fdosani/run-edgetest-action + +name: Run edgetest +on: + schedule: + - cron: '35 17 * * 5' +jobs: + edgetest: + runs-on: ubuntu-latest + name: running edgetest + steps: + - uses: actions/checkout@v2 + with: + ref: dev + - id: run-edgetest + uses: fdosani/run-edgetest-action@v1.1 + with: + edgetest-flags: '-c setup.cfg --export' + base-branch: 'dev' + skip-pr: 'false' \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index da1c35d..d4a0abf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -131,7 +131,12 @@ markers = integration: mark test that interact with an external system addopts = --verbose -[edgetest] -extras = +[edgetest.envs.core] +python_version = 3.9 +upgrade = + edgetest +extras = tests +deps = + pip-tools From 366a7cb91659d53dd7ee6eb20915d3fd2d3dc564 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Mar 2022 13:47:43 -0400 Subject: [PATCH 2/5] [create-pull-request] automated change (#12) Co-authored-by: fdosani --- requirements.txt | 16 ++++------------ setup.cfg | 6 +++--- 2 files changed, 7 insertions(+), 15 deletions(-) diff --git a/requirements.txt b/requirements.txt index 151cafd..abd792c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,31 +1,23 @@ # -# This file is autogenerated by pip-compile with python 3.7 +# This file is autogenerated by pip-compile with python 3.9 # To update, run: # -# pip-compile +# pip-compile --output-file=requirements.txt setup.cfg # cerberus==1.3.4 # via edgetest click==8.0.3 # via edgetest edgetest==2021.12.5 - # via edgetest-conda (setup.py) -importlib-metadata==4.9.0 - # via - # click - # pluggy + # via edgetest-conda (setup.cfg) packaging==21.3 # via edgetest pluggy==1.0.0 # via edgetest -pyparsing==3.0.6 +pyparsing==3.0.7 # via packaging tabulate==0.8.9 # via edgetest -typing-extensions==4.0.1 - # via importlib-metadata -zipp==3.6.0 - # via importlib-metadata # The following packages are considered to be unsafe in a requirements file: # setuptools diff --git a/setup.cfg b/setup.cfg index d4a0abf..3e34986 100644 --- a/setup.cfg +++ b/setup.cfg @@ -133,10 +133,10 @@ addopts = --verbose [edgetest.envs.core] python_version = 3.9 -upgrade = +upgrade = edgetest -extras = +extras = tests -deps = +deps = pip-tools From fd61998d10e187d06cf5187954e59646895f8918 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Mar 2022 13:58:02 -0400 Subject: [PATCH 3/5] [create-pull-request] automated change (#13) Co-authored-by: fdosani --- requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index abd792c..7ec0cb8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,9 +6,9 @@ # cerberus==1.3.4 # via edgetest -click==8.0.3 +click==8.0.4 # via edgetest -edgetest==2021.12.5 +edgetest==2022.3.0 # via edgetest-conda (setup.cfg) packaging==21.3 # via edgetest From 34ad4e4796c50a6cedbbc58e8b71724bb3260f1f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 1 Apr 2022 13:56:43 -0400 Subject: [PATCH 4/5] [create-pull-request] automated change (#14) Co-authored-by: fdosani --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 7ec0cb8..feed3bd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ cerberus==1.3.4 # via edgetest click==8.0.4 # via edgetest -edgetest==2022.3.0 +edgetest==2022.3.1 # via edgetest-conda (setup.cfg) packaging==21.3 # via edgetest From 2221026ef547cc8f34acaa4df2d03b46dccb84ae Mon Sep 17 00:00:00 2001 From: Faisal Date: Fri, 1 Apr 2022 17:58:38 -0300 Subject: [PATCH 5/5] Bump 2021.12.1 to 2022.4.0 (#15) * Bump 2021.12.1 to 2022.4.0 * updating precommit versions * typo fix --- .pre-commit-config.yaml | 6 +++--- docs/source/conf.py | 2 +- edgetest_conda/__init__.py | 2 +- setup.cfg | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e81511b..946c6ff 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,11 +1,11 @@ exclude: ^notebooks/ repos: - repo: https://github.com/psf/black - rev: 20.8b1 + rev: 22.3.0 hooks: - id: black types: [file, python] - language_version: python3.7 + language_version: python3.9 - repo: https://github.com/pre-commit/mirrors-isort rev: v5.5.4 hooks: @@ -16,7 +16,7 @@ repos: - id: flake8 additional_dependencies: [flake8-docstrings] files: ^edgetest_conda/ - language_version: python3.7 + language_version: python3.9 - repo: https://github.com/jazzband/pip-tools rev: 5.5.0 hooks: diff --git a/docs/source/conf.py b/docs/source/conf.py index 34fc11c..4f2ed75 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = 'Akshay Gupta' # The short X.Y version -version = "2021.12.1" +version = "2022.4.0" # The full version, including alpha/beta/rc tags release = '' diff --git a/edgetest_conda/__init__.py b/edgetest_conda/__init__.py index baea5cf..bf52ca8 100644 --- a/edgetest_conda/__init__.py +++ b/edgetest_conda/__init__.py @@ -1,6 +1,6 @@ """Package initialization.""" -__version__ = "2021.12.1" +__version__ = "2022.4.0" __title__ = "edgetest-conda" __description__ = "Conda edgetest plugin" diff --git a/setup.cfg b/setup.cfg index 3e34986..1010b5a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -83,7 +83,7 @@ edgetest = conda = edgetest_conda.plugin [bumpver] -current_version = "2021.12.1" +current_version = "2022.4.0" version_pattern = "YYYY.MM.INC0" commit_message = "Bump {old_version} to {new_version}" commit = True