Skip to content

Commit 738c011

Browse files
Updated files with 'repo_helper'.
1 parent 85d9837 commit 738c011

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
Run:
1818
name: "Flake8"
19-
runs-on: "ubuntu-20.04"
19+
runs-on: "ubuntu-22.04"
2020

2121
steps:
2222
- name: Checkout 🛎️

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: ['ubuntu-20.04']
23+
os: ['ubuntu-22.04']
2424
fail-fast: false
2525

2626
steps:

.github/workflows/python_ci_linux.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ permissions:
1919

2020
jobs:
2121
tests:
22-
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
23-
runs-on: "ubuntu-20.04"
22+
name: "ubuntu-22.04 / Python ${{ matrix.config.python-version }}"
23+
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
2626
USING_COVERAGE: '3.7,3.8,3.9,3.10'
@@ -74,11 +74,12 @@ jobs:
7474
with:
7575
name: "coverage-${{ matrix.config.python-version }}"
7676
path: .coverage
77+
include-hidden-files: true
7778

7879

7980
Coverage:
8081
needs: tests
81-
runs-on: "ubuntu-20.04"
82+
runs-on: "ubuntu-22.04"
8283
steps:
8384
- name: Checkout 🛎️
8485
uses: "actions/checkout@v4"
@@ -116,6 +117,7 @@ jobs:
116117
with:
117118
name: "combined-coverage"
118119
path: .coverage
120+
include-hidden-files: true
119121

120122
- name: "Upload Combined Coverage to Coveralls"
121123
if: ${{ steps.show.outcome != 'failure' }}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ci:
88

99
repos:
1010
- repo: https://github.com/repo-helper/pyproject-parser
11-
rev: v0.11.1
11+
rev: v0.13.0
1212
hooks:
1313
- id: reformat-pyproject
1414

@@ -81,7 +81,7 @@ repos:
8181
- id: snippet-fmt
8282

8383
- repo: https://github.com/python-formate/formate
84-
rev: v0.7.0
84+
rev: v0.8.0
8585
hooks:
8686
- id: formate
8787
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ Automated tests
3838
-------------------
3939

4040
Tests are run with ``tox`` and ``pytest``.
41-
To run tests for a specific Python version, such as Python 3.6:
41+
To run tests for a specific Python version, such as Python 3.10:
4242

4343
.. code-block:: bash
4444
45-
$ tox -e py36
45+
$ tox -e py310
4646
4747
4848
To run tests for all Python versions, simply run:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ tox-raspi-ci
6464
:target: https://github.com/domdfcoding/tox-raspi-ci/commit/master
6565
:alt: GitHub last commit
6666

67-
.. |maintained| image:: https://img.shields.io/maintenance/yes/2024
67+
.. |maintained| image:: https://img.shields.io/maintenance/yes/2025
6868
:alt: Maintenance
6969

7070
.. end shields

0 commit comments

Comments
 (0)