Skip to content

Commit

Permalink
Merge pull request #16 from capitalone/dev
Browse files Browse the repository at this point in the history
Release 2022.4.0
  • Loading branch information
Faisal authored Apr 2, 2022
2 parents 7c9552b + 2221026 commit e05f4fe
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 21 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/edgetest.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
with:
edgetest-flags: '-c setup.cfg --export'
base-branch: 'dev'
skip-pr: 'false'
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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:
Expand Down
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 = "2021.12.1"
version = "2022.4.0"
# The full version, including alpha/beta/rc tags
release = ''

Expand Down
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__ = "2021.12.1"
__version__ = "2022.4.0"

__title__ = "edgetest-conda"
__description__ = "Conda edgetest plugin"
Expand Down
20 changes: 6 additions & 14 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
click==8.0.4
# via edgetest
edgetest==2021.12.5
# via edgetest-conda (setup.py)
importlib-metadata==4.9.0
# via
# click
# pluggy
edgetest==2022.3.1
# 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
9 changes: 7 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -131,7 +131,12 @@ markers =
integration: mark test that interact with an external system
addopts = --verbose

[edgetest]
[edgetest.envs.core]
python_version = 3.9
upgrade =
edgetest
extras =
tests
deps =
pip-tools

0 comments on commit e05f4fe

Please sign in to comment.