Skip to content

Commit 3e5fc69

Browse files
Updated files with 'repo_helper'. (#44)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 9429d62 commit 3e5fc69

File tree

12 files changed

+34
-30
lines changed

12 files changed

+34
-30
lines changed

.github/workflows/conda_ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,18 +19,18 @@ jobs:
1919

2020
steps:
2121
- name: Checkout 🛎️
22-
uses: "actions/checkout@v3"
22+
uses: "actions/checkout@v4"
2323

2424
- name: Setup Python 🐍
25-
uses: "actions/setup-python@v4"
25+
uses: "actions/setup-python@v5"
2626
with:
2727
python-version: "3.8"
2828

2929
- name: Setup Conda
3030
uses: conda-incubator/setup-miniconda@v2
3131
with:
3232
activate-environment: env
33-
conda-build-version: 3.23.3
33+
conda-build-version: 3.28.4
3434
python-version: "3.8"
3535
miniforge-variant: Mambaforge
3636

.github/workflows/docs_test_action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout 🛎️
20-
uses: "actions/checkout@v3"
20+
uses: "actions/checkout@v4"
2121

2222
- name: Check for changed files
2323
uses: dorny/paths-filter@v2

.github/workflows/flake8.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout 🛎️
23-
uses: "actions/checkout@v3"
23+
uses: "actions/checkout@v4"
2424

2525
- name: Check for changed files
2626
uses: dorny/paths-filter@v2
@@ -33,7 +33,7 @@ jobs:
3333
3434
- name: Setup Python 🐍
3535
if: steps.changes.outputs.code == 'true'
36-
uses: "actions/setup-python@v4"
36+
uses: "actions/setup-python@v5"
3737
with:
3838
python-version: "3.8"
3939

.github/workflows/mypy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout 🛎️
28-
uses: "actions/checkout@v3"
28+
uses: "actions/checkout@v4"
2929

3030
- name: Check for changed files
3131
uses: dorny/paths-filter@v2
@@ -38,7 +38,7 @@ jobs:
3838
3939
- name: Setup Python 🐍
4040
if: steps.changes.outputs.code == 'true'
41-
uses: "actions/setup-python@v4"
41+
uses: "actions/setup-python@v5"
4242
with:
4343
python-version: "3.8"
4444

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout 🛎️
45-
uses: "actions/checkout@v3"
45+
uses: "actions/checkout@v4"
4646

4747
- name: Check for changed files
4848
if: startsWith(github.ref, 'refs/tags/') != true
@@ -57,7 +57,7 @@ jobs:
5757
- name: Setup Python 🐍
5858
id: setup-python
5959
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
60-
uses: "actions/setup-python@v4"
60+
uses: "actions/setup-python@v5"
6161
with:
6262
python-version: "${{ matrix.config.python-version }}"
6363

.github/workflows/python_ci_linux.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343

4444
steps:
4545
- name: Checkout 🛎️
46-
uses: "actions/checkout@v3"
46+
uses: "actions/checkout@v4"
4747

4848
- name: Check for changed files
4949
if: startsWith(github.ref, 'refs/tags/') != true
@@ -58,7 +58,7 @@ jobs:
5858
- name: Setup Python 🐍
5959
id: setup-python
6060
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
61-
uses: "actions/setup-python@v4"
61+
uses: "actions/setup-python@v5"
6262
with:
6363
python-version: "${{ matrix.config.python-version }}"
6464

@@ -88,10 +88,10 @@ jobs:
8888
runs-on: "ubuntu-20.04"
8989
steps:
9090
- name: Checkout 🛎️
91-
uses: "actions/checkout@v3"
91+
uses: "actions/checkout@v4"
9292

9393
- name: Setup Python 🐍
94-
uses: "actions/setup-python@v4"
94+
uses: "actions/setup-python@v5"
9595
with:
9696
python-version: 3.8
9797

@@ -137,11 +137,11 @@ jobs:
137137
runs-on: "ubuntu-20.04"
138138
steps:
139139
- name: Checkout 🛎️
140-
uses: "actions/checkout@v3"
140+
uses: "actions/checkout@v4"
141141
if: startsWith(github.ref, 'refs/tags/')
142142

143143
- name: Setup Python 🐍
144-
uses: "actions/setup-python@v4"
144+
uses: "actions/setup-python@v5"
145145
if: startsWith(github.ref, 'refs/tags/')
146146
with:
147147
python-version: 3.8
@@ -182,18 +182,18 @@ jobs:
182182
if: startsWith(github.ref, 'refs/tags/') || (startsWith(github.event.head_commit.message, 'Bump version') != true)
183183
steps:
184184
- name: Checkout 🛎️
185-
uses: "actions/checkout@v3"
185+
uses: "actions/checkout@v4"
186186

187187
- name: Setup Python 🐍
188-
uses: "actions/setup-python@v4"
188+
uses: "actions/setup-python@v5"
189189
with:
190190
python-version: 3.8
191191

192192
- name: Setup Conda
193193
uses: conda-incubator/setup-miniconda@v2
194194
with:
195195
activate-environment: env
196-
conda-build-version: 3.23.3
196+
conda-build-version: 3.28.4
197197
python-version: "3.8"
198198
miniforge-variant: Mambaforge
199199

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
steps:
4343
- name: Checkout 🛎️
44-
uses: "actions/checkout@v3"
44+
uses: "actions/checkout@v4"
4545

4646
- name: Check for changed files
4747
if: startsWith(github.ref, 'refs/tags/') != true
@@ -56,7 +56,7 @@ jobs:
5656
- name: Setup Python 🐍
5757
id: setup-python
5858
if: ${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
59-
uses: "actions/setup-python@v4"
59+
uses: "actions/setup-python@v5"
6060
with:
6161
python-version: "${{ matrix.config.python-version }}"
6262

.pre-commit-config.yaml

Lines changed: 6 additions & 6 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.9.0
11+
rev: v0.9.1
1212
hooks:
1313
- id: reformat-pyproject
1414

@@ -43,13 +43,13 @@ repos:
4343
- id: bind-requirements
4444

4545
- repo: https://github.com/domdfcoding/flake8-dunder-all
46-
rev: v0.3.0
46+
rev: v0.3.1
4747
hooks:
4848
- id: ensure-dunder-all
4949
files: ^sdjson/.*\.py$
5050

5151
- repo: https://github.com/domdfcoding/flake2lint
52-
rev: v0.4.2
52+
rev: v0.4.3
5353
hooks:
5454
- id: flake2lint
5555

@@ -76,18 +76,18 @@ repos:
7676
- id: forbid-crlf
7777

7878
- repo: https://github.com/python-formate/snippet-fmt
79-
rev: v0.1.4
79+
rev: v0.1.5
8080
hooks:
8181
- id: snippet-fmt
8282

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

8989
- repo: https://github.com/domdfcoding/dep_checker
90-
rev: v0.7.1
90+
rev: v0.8.0
9191
hooks:
9292
- id: dep_checker
9393
args:

.readthedocs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ build:
1919
jobs:
2020
post_create_environment:
2121
- pip install .
22+
post_install:
23+
- pip install sphinxcontrib-applehelp==1.0.4 sphinxcontrib-devhelp==1.0.2 sphinxcontrib-htmlhelp==2.0.1
24+
sphinxcontrib-jsmath==1.0.1 sphinxcontrib-qthelp==1.0.3 sphinxcontrib-serializinghtml==1.1.5

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ sdjson
108108
:target: https://github.com/domdfcoding/singledispatch-json/commit/master
109109
:alt: GitHub last commit
110110

111-
.. |maintained| image:: https://img.shields.io/maintenance/yes/2023
111+
.. |maintained| image:: https://img.shields.io/maintenance/yes/2024
112112
:alt: Maintenance
113113

114114
.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/sdjson

0 commit comments

Comments
 (0)