Skip to content

Commit ee13a0e

Browse files
Updated files with 'repo_helper'.
1 parent fa89aff commit ee13a0e

File tree

8 files changed

+15
-10
lines changed

8 files changed

+15
-10
lines changed

.github/workflows/docs_test_action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- '!tests/**'
3030
3131
- name: Install and Build 🔧
32-
uses: sphinx-toolbox/sphinx-action@sphinx-3.3.1
32+
uses: sphinx-toolbox/sphinx-action@sphinx-3.3.1-py38
3333
if: steps.changes.outputs.code == 'true'
3434
with:
3535
pre-build-command: python -m pip install tox

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

2626
steps:

.github/workflows/octocheese.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
schedule:
77
- cron: 0 12 * * *
88

9+
permissions:
10+
contents: write
11+
912
jobs:
1013
Run:
1114
runs-on: ubuntu-latest

.github/workflows/python_ci.yml

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

1919
jobs:
2020
tests:
21-
name: "windows-2019 / Python ${{ matrix.config.python-version }}"
22-
runs-on: "windows-2019"
21+
name: "windows-2022 / Python ${{ matrix.config.python-version }}"
22+
runs-on: "windows-2022"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
2525
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13,pypy-3.7,pypy-3.8,pypy-3.9,pypy-3.10'

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162
163163
- name: Upload distribution to PyPI 🚀
164164
if: startsWith(github.ref, 'refs/tags/')
165-
uses: pypa/gh-action-pypi-publish@v1.4.2
165+
uses: pypa/gh-action-pypi-publish@v1.13.0
166166
with:
167167
user: __token__
168168
password: ${{ secrets.PYPI_TOKEN }}

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ repos:
6262
- id: rst-inline-touching-normal
6363

6464
- repo: https://github.com/asottile/pyupgrade
65-
rev: v2.12.0
65+
rev: v3.3.0
6666
hooks:
6767
- id: pyupgrade
6868
args:
69-
- --py36-plus
69+
- --py37-plus
7070
- --keep-runtime-typing
7171

7272
- repo: https://github.com/Lucas-C/pre-commit-hooks

doc-source/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
default-values>=0.6.0
2+
docutils<0.22
23
domdf-sphinx-theme>=0.3.0
34
extras-require>=0.5.0
45
html-section>=0.3.0
56
pandas>=1.1.2
67
pytest>=6.2.0
78
pytest-regressions>=2.0.2
89
pytz>=2019.1
10+
roman>=4.0
911
seed-intersphinx-mapping>=1.2.2
1012
sphinx>=3.0.3
1113
sphinx-autofixture>=0.2.1

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ download = True
6969
setenv =
7070
PYTHONDEVMODE=1
7171
PIP_DISABLE_PIP_VERSION_CHECK=1
72-
UNSAFE_PYO3_SKIP_VERSION_CHECK=1
7372

7473
[testenv:py312]
7574
download = True
@@ -125,11 +124,12 @@ deps =
125124
flake8-sphinx-links>=0.0.4
126125
flake8-strftime>=0.1.1
127126
flake8-typing-imports>=1.10.0
127+
git+https://github.com/domdfcoding/restructuredtext-lint.git@fix-deprecations
128128
git+https://github.com/domdfcoding/flake8-rst-docstrings-sphinx.git
129129
git+https://github.com/domdfcoding/flake8-rst-docstrings.git
130130
git+https://github.com/python-formate/flake8-unused-arguments.git@magic-methods
131131
git+https://github.com/python-formate/flake8-missing-annotations.git
132-
pydocstyle>=6.0.0
132+
git+https://github.com/domdfcoding/pydocstyle.git@stub-functions
133133
pygments>=2.7.1
134134
importlib_metadata<4.5.0; python_version<'3.8'
135135
commands = python3 -m flake8_rst_docstrings_sphinx domdf_python_tools tests --allow-toolbox {posargs}
@@ -148,7 +148,7 @@ ignore_errors = True
148148
changedir = {toxinidir}
149149
extras = all
150150
deps =
151-
mypy==0.971
151+
mypy==1.17.1
152152
-r{toxinidir}/tests/requirements.txt
153153
-r{toxinidir}/stubs.txt
154154
pprint36

0 commit comments

Comments
 (0)