Skip to content

Commit 7fd7235

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

File tree

7 files changed

+11
-12
lines changed

7 files changed

+11
-12
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-py39
3333
if: steps.changes.outputs.code == 'true'
3434
with:
3535
pre-build-command: python -m pip install tox

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
161161
- name: Upload distribution to PyPI 🚀
162162
if: startsWith(github.ref, 'refs/tags/')
163-
uses: pypa/gh-action-pypi-publish@v1.4.2
163+
uses: pypa/gh-action-pypi-publish@v1.13.0
164164
with:
165165
user: __token__
166166
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

.readthedocs.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,5 @@ build:
2020
post_create_environment:
2121
- pip install .[readme,cli]
2222
post_install:
23-
- pip install sphinxcontrib-applehelp==1.0.4 sphinxcontrib-devhelp==1.0.2
24-
sphinxcontrib-htmlhelp==2.0.1 sphinxcontrib-jsmath==1.0.1
25-
sphinxcontrib-qthelp==1.0.3 sphinxcontrib-serializinghtml==1.1.5
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

__pkginfo__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
__all__ = ["extras_require"]
44

55
extras_require = {
6-
"readme": ["docutils<0.22.2,>=0.16", "readme-renderer[md]>=27.0"],
6+
"readme": ["docutils<0.22,>=0.16", "readme-renderer[md]>=27.0"],
77
"cli": ["click>=7.1.2", "consolekit>=1.4.1", "sdjson>=0.3.1"],
88
"all": [
99
"click>=7.1.2",
1010
"consolekit>=1.4.1",
11-
"docutils<0.22.2,>=0.16",
11+
"docutils<0.22,>=0.16",
1212
"readme-renderer[md]>=27.0",
1313
"sdjson>=0.3.1"
1414
]

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ pyproject-fmt = "pyproject_parser.__main__:reformat"
5151
pyproject-info = "pyproject_parser.__main__:info"
5252

5353
[project.optional-dependencies]
54-
readme = [ "docutils>=0.16", "readme-renderer[md]>=27.0",]
54+
readme = [ "docutils<0.22,>=0.16", "readme-renderer[md]>=27.0",]
5555
cli = [ "click>=7.1.2", "consolekit>=1.4.1", "sdjson>=0.3.1",]
5656
all = [
5757
"click>=7.1.2",
5858
"consolekit>=1.4.1",
59-
"docutils>=0.16",
59+
"docutils<0.22,>=0.16",
6060
"readme-renderer[md]>=27.0",
6161
"sdjson>=0.3.1",
6262
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ setenv =
7777
[testenv:docs]
7878
setenv = SHOW_TODOS = 1
7979
passenv = SPHINX_BUILDER
80-
basepython = python3.8
80+
basepython = python3.9
8181
changedir = {toxinidir}/doc-source
8282
extras = readme,cli
8383
deps = -r{toxinidir}/doc-source/requirements.txt

0 commit comments

Comments
 (0)