Skip to content

Commit 3f87474

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

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: steps.changes.outputs.code == 'true'
3636
uses: "actions/setup-python@v5"
3737
with:
38-
python-version: "3.8"
38+
python-version: "3.9"
3939

4040
- name: Install dependencies 🔧
4141
if: steps.changes.outputs.code == 'true'

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if: steps.changes.outputs.code == 'true'
4141
uses: "actions/setup-python@v5"
4242
with:
43-
python-version: "3.8"
43+
python-version: "3.9"
4444

4545
- name: Install dependencies 🔧
4646
run: |

.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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ additional-files = [
5656
always = [ "dependency_dash", "dependency_dash.github", "dependency_dash.pypi", "dependency_dash.routes",]
5757

5858
[tool.mypy]
59-
python_version = "3.8"
59+
python_version = "3.9"
6060
namespace_packages = true
6161
check_untyped_defs = true
6262
warn_unused_ignores = true

tox.ini

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ commands =
5353
check-wheel-contents dist/
5454

5555
[testenv:lint]
56-
basepython = python3.8
56+
basepython = python3.9
5757
changedir = {toxinidir}
5858
ignore_errors = True
5959
skip_install = True
@@ -73,6 +73,7 @@ deps =
7373
flake8-sphinx-links>=0.0.4
7474
flake8-strftime>=0.1.1
7575
flake8-typing-imports>=1.10.0
76+
git+https://github.com/domdfcoding/restructuredtext-lint.git@fix-deprecations
7677
git+https://github.com/domdfcoding/flake8-rst-docstrings-sphinx.git
7778
git+https://github.com/domdfcoding/flake8-rst-docstrings.git
7879
git+https://github.com/python-formate/flake8-unused-arguments.git@magic-methods
@@ -83,15 +84,15 @@ deps =
8384
commands = python3 -m flake8_rst_docstrings_sphinx dependency_dash --allow-toolbox {posargs}
8485

8586
[testenv:perflint]
86-
basepython = python3.8
87+
basepython = python3.9
8788
changedir = {toxinidir}
8889
ignore_errors = True
8990
skip_install = True
9091
deps = perflint
9192
commands = python3 -m perflint dependency_dash {posargs}
9293

9394
[testenv:mypy]
94-
basepython = python3.8
95+
basepython = python3.9
9596
ignore_errors = True
9697
changedir = {toxinidir}
9798
deps =
@@ -100,7 +101,7 @@ deps =
100101
commands = mypy dependency_dash {posargs}
101102

102103
[testenv:pyup]
103-
basepython = python3.8
104+
basepython = python3.9
104105
skip_install = True
105106
ignore_errors = True
106107
changedir = {toxinidir}

0 commit comments

Comments
 (0)