Skip to content

Commit

Permalink
Updated files with 'repo_helper'.
Browse files Browse the repository at this point in the history
  • Loading branch information
repo-helper[bot] committed Sep 3, 2022
1 parent 60e4a4f commit 9ca7e0b
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
jobs:
Run:
name: "Flake8"
runs-on: "ubuntu-18.04"
runs-on: "ubuntu-20.04"

steps:
- name: Checkout 🛎️
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox virtualenv
python -m pip install --upgrade tox virtualenv!=20.16.0
- name: "Run mypy"
if: steps.changes.outputs.code == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox virtualenv
python -m pip install --upgrade tox virtualenv!=20.16.0
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
if: steps.setup-python.outcome == 'success'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox virtualenv
python -m pip install --upgrade tox virtualenv!=20.16.0
python -m pip install --upgrade coverage_pyver_pragma
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox virtualenv
python -m pip install --upgrade tox virtualenv!=20.16.0
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
if: steps.setup-python.outcome == 'success'
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ repos:
- id: bind-requirements

- repo: https://github.com/domdfcoding/flake8-dunder-all
rev: v0.2.1
rev: v0.2.2
hooks:
- id: ensure-dunder-all
files: ^repo_helper_devenv/.*\.py$

- repo: https://github.com/domdfcoding/flake2lint
rev: v0.4.1
rev: v0.4.2
hooks:
- id: flake2lint

Expand All @@ -67,7 +67,7 @@ repos:
- --keep-runtime-typing

- repo: https://github.com/Lucas-C/pre-commit-hooks
rev: v1.2.0
rev: v1.3.1
hooks:
- id: remove-crlf
- id: forbid-crlf
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ repo_helper_devenv
:target: https://github.com/repo-helper/repo_helper_devenv/actions?query=workflow%3A%22mypy%22
:alt: mypy status

.. |requires| image:: https://dependency-dash.herokuapp.com/github/repo-helper/repo_helper_devenv/badge.svg
:target: https://dependency-dash.herokuapp.com/github/repo-helper/repo_helper_devenv/
.. |requires| image:: https://dependency-dash.repo-helper.uk/github/repo-helper/repo_helper_devenv/badge.svg
:target: https://dependency-dash.repo-helper.uk/github/repo-helper/repo_helper_devenv/
:alt: Requirements Status

.. |coveralls| image:: https://img.shields.io/coveralls/github/repo-helper/repo_helper_devenv/master?logo=coveralls
Expand Down
4 changes: 2 additions & 2 deletions doc-source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ repo_helper_devenv
:workflow: mypy
:alt: mypy status

.. |requires| image:: https://dependency-dash.herokuapp.com/github/repo-helper/repo_helper_devenv/badge.svg
:target: https://dependency-dash.herokuapp.com/github/repo-helper/repo_helper_devenv/
.. |requires| image:: https://dependency-dash.repo-helper.uk/github/repo-helper/repo_helper_devenv/badge.svg
:target: https://dependency-dash.repo-helper.uk/github/repo-helper/repo_helper_devenv/
:alt: Requirements Status

.. |coveralls| coveralls-shield::
Expand Down
11 changes: 7 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ envlist = py36, py37, py38, py39, py310, mypy, build
skip_missing_interpreters = True
isolated_build = True
requires =
pip>=21
pip>=21,!=22.2
tox-envlist>=0.2.1
virtualenv!=20.16.0

[envlists]
test = py36, py37, py38, py39, py310
Expand All @@ -33,6 +34,7 @@ cov = py36, coverage
setenv =
PYTHONDEVMODE=1
PIP_DISABLE_PIP_VERSION_CHECK=1
SETUPTOOLS_USE_DISTUTILS=stdlib
deps = -r{toxinidir}/tests/requirements.txt
commands =
python --version
Expand Down Expand Up @@ -64,15 +66,15 @@ changedir = {toxinidir}
ignore_errors = True
skip_install = True
deps =
flake8>=3.8.2
flake8>=3.8.2,<5
flake8-2020>=1.6.0
flake8-builtins>=1.5.3
flake8-docstrings>=1.5.0
flake8-dunder-all>=0.1.1
flake8-encodings>=0.1.0
flake8-github-actions>=0.1.0
flake8-noqa>=1.1.0
flake8-pyi>=20.10.0
flake8-noqa>=1.1.0,<=1.2.2
flake8-pyi>=20.10.0,<=22.8.0
flake8-pytest-style>=1.3.0
flake8-quotes>=3.3.0
flake8-slots>=0.1.0
Expand Down Expand Up @@ -123,6 +125,7 @@ passenv =
COV_PYTHON_VERSION
COV_PLATFORM
COV_PYTHON_IMPLEMENTATION
*
changedir = {toxinidir}
deps =
coverage>=5
Expand Down

0 comments on commit 9ca7e0b

Please sign in to comment.