Skip to content

Commit 7bd8f06

Browse files
Updated files with 'repo_helper'. (#60)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 76c0fb5 commit 7bd8f06

File tree

12 files changed

+26
-24
lines changed

12 files changed

+26
-24
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', 'windows-2019']
23+
os: ['ubuntu-22.04', 'windows-2019']
2424
fail-fast: false
2525

2626
steps:

.github/workflows/python_ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,4 @@ jobs:
7373
with:
7474
name: "coverage-${{ matrix.config.python-version }}"
7575
path: .coverage
76+
include-hidden-files: true

.github/workflows/python_ci_linux.yml

Lines changed: 6 additions & 5 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.6,3.7,3.8,3.9,3.10'
@@ -29,7 +29,6 @@ jobs:
2929
fail-fast: False
3030
matrix:
3131
config:
32-
- {python-version: "3.6", testenvs: "py36-pillow{8.1,8.2,8.3,8.4},build", experimental: False}
3332
- {python-version: "3.7", testenvs: "py37-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
3433
- {python-version: "3.8", testenvs: "py38-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
3534
- {python-version: "3.9", testenvs: "py39-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
@@ -75,11 +74,12 @@ jobs:
7574
with:
7675
name: "coverage-${{ matrix.config.python-version }}"
7776
path: .coverage
77+
include-hidden-files: true
7878

7979

8080
Coverage:
8181
needs: tests
82-
runs-on: "ubuntu-20.04"
82+
runs-on: "ubuntu-22.04"
8383
steps:
8484
- name: Checkout 🛎️
8585
uses: "actions/checkout@v4"
@@ -117,6 +117,7 @@ jobs:
117117
with:
118118
name: "combined-coverage"
119119
path: .coverage
120+
include-hidden-files: true
120121

121122
- name: "Upload Combined Coverage to Coveralls"
122123
if: ${{ steps.show.outcome != 'failure' }}
@@ -128,7 +129,7 @@ jobs:
128129
Deploy:
129130
needs: tests
130131

131-
runs-on: "ubuntu-20.04"
132+
runs-on: "ubuntu-22.04"
132133
steps:
133134
- name: Checkout 🛎️
134135
uses: "actions/checkout@v4"

.github/workflows/python_ci_macos.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ permissions:
1818

1919
jobs:
2020
tests:
21-
name: "macos-13 / Python ${{ matrix.config.python-version }}"
22-
runs-on: "macos-13"
21+
name: "macos-${{ matrix.config.os-ver }} / Python ${{ matrix.config.python-version }}"
22+
runs-on: "macos-${{ matrix.config.os-ver }}"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
2525
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10'
@@ -28,11 +28,11 @@ jobs:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.6", testenvs: "py36-pillow{8.1,8.2,8.3,8.4},build", experimental: False}
32-
- {python-version: "3.7", testenvs: "py37-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
33-
- {python-version: "3.8", testenvs: "py38-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
34-
- {python-version: "3.9", testenvs: "py39-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
35-
- {python-version: "3.10", testenvs: "py310-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
31+
- {python-version: "3.6", os-ver: "13", testenvs: "py36-pillow{8.1,8.2,8.3,8.4},build", experimental: False}
32+
- {python-version: "3.7", os-ver: "13", testenvs: "py37-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
33+
- {python-version: "3.8", os-ver: "14", testenvs: "py38-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
34+
- {python-version: "3.9", os-ver: "14", testenvs: "py39-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
35+
- {python-version: "3.10", os-ver: "14", testenvs: "py310-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2},build", experimental: False}
3636

3737
steps:
3838
- name: Checkout 🛎️
@@ -73,3 +73,4 @@ jobs:
7373
with:
7474
name: "coverage-${{ matrix.config.python-version }}"
7575
path: .coverage
76+
include-hidden-files: true

.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$

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python:
1313
- requirements: requirements.txt
1414
- requirements: doc-source/requirements.txt
1515
build:
16-
os: ubuntu-20.04
16+
os: ubuntu-22.04
1717
tools:
1818
python: '3.9'
1919
jobs:

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
@@ -100,7 +100,7 @@ Can also create wordclouds from directories of source files or a single source f
100100
:target: https://github.com/domdfcoding/wordle/commit/master
101101
:alt: GitHub last commit
102102

103-
.. |maintained| image:: https://img.shields.io/maintenance/yes/2024
103+
.. |maintained| image:: https://img.shields.io/maintenance/yes/2025
104104
:alt: Maintenance
105105

106106
.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/wordle

doc-source/contributing.rst

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

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

4242
.. prompt:: bash
4343

44-
tox -e py36
44+
tox -e py310
4545

4646

4747
To run tests for all Python versions, simply run:

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Can also create wordclouds from directories of source files or a single source f
106106
:last-commit:
107107
:alt: GitHub last commit
108108

109-
.. |maintained| maintained-shield:: 2024
109+
.. |maintained| maintained-shield:: 2025
110110
:alt: Maintenance
111111

112112
.. |pypi-downloads| pypi-shield::

tox.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ test =
4646
py38-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2}
4747
py39-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2}
4848
py310-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2}
49-
py311-dev-pillow{8.1,8.2,8.3,8.4,9.0,9.1,9.2}
5049
qa = mypy, lint
5150
cov = py37-pillow8.1, coverage
5251

0 commit comments

Comments
 (0)