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 2022.4.0 #16

Merged
merged 5 commits into from
Apr 2, 2022
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
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/run-edgetest-action@v1.1
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