Skip to content

Commit c0b985c

Browse files
[repo-helper] Configuration Update (#72)
* Updated files with 'repo_helper'. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 5e87f85 commit c0b985c

File tree

8 files changed

+12
-25
lines changed

8 files changed

+12
-25
lines changed

.github/workflows/cleanup.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.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@v1"
20+
uses: "actions/checkout@v2"
2121

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

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: "windows-2019"
2222
continue-on-error: ${{ matrix.config.experimental }}
2323
env:
24-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-a1,pypy-3.6,pypy-3.7'
24+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-alpha.2,pypy-3.6,pypy-3.7'
2525

2626
strategy:
2727
fail-fast: False
@@ -32,7 +32,7 @@ jobs:
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3434
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35-
- {python-version: "3.11.0-a1", testenvs: "py311-dev,build", experimental: True}
35+
- {python-version: "3.11.0-alpha.2", testenvs: "py311-dev,build", experimental: True}
3636
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3737
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3838

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "ubuntu-20.04"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
25-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-a1,pypy-3.6,pypy-3.7'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-alpha.2,pypy-3.6,pypy-3.7'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,7 +33,7 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
36-
- {python-version: "3.11.0-a1", testenvs: "py311-dev,build", experimental: True}
36+
- {python-version: "3.11.0-alpha.2", testenvs: "py311-dev,build", experimental: True}
3737
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
3838
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3939

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: "macos-latest"
2222
continue-on-error: ${{ matrix.config.experimental }}
2323
env:
24-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-a1,pypy-3.6,pypy-3.7'
24+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-alpha.2,pypy-3.7'
2525

2626
strategy:
2727
fail-fast: False
@@ -32,8 +32,7 @@ jobs:
3232
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
3333
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
3434
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35-
- {python-version: "3.11.0-a1", testenvs: "py311-dev,build", experimental: True}
36-
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
35+
- {python-version: "3.11.0-alpha.2", testenvs: "py311-dev,build", experimental: True}
3736
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
3837

3938
steps:

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ repos:
3030
- id: end-of-file-fixer
3131

3232
- repo: https://github.com/domdfcoding/pre-commit-hooks
33-
rev: v0.2.1
33+
rev: v0.3.0
3434
hooks:
3535
- id: requirements-txt-sorter
3636
args:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ name = "domdf_python_tools"
77
version = "3.1.0"
88
description = "Helpful functions for Python 🐍 🛠️"
99
readme = "README.rst"
10+
requires-python = ">=3.6"
1011
keywords = [ "utilities",]
11-
dynamic = [ "requires-python", "classifiers", "dependencies",]
12+
dynamic = [ "classifiers", "dependencies",]
1213

1314
[[project.authors]]
1415
name = "Dominic Davis-Foster"

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,14 @@ deps =
7474
flake8-noqa>=1.1.0
7575
flake8-pyi>=20.10.0
7676
flake8-pytest-style>=1.3.0
77+
flake8-quotes>=3.3.0
7778
flake8-slots>=0.1.0
7879
flake8-sphinx-links>=0.0.4
7980
flake8-strftime>=0.1.1
8081
flake8-typing-imports>=1.10.0
81-
git+https://github.com/domdfcoding/flake8-quotes.git
8282
git+https://github.com/domdfcoding/flake8-rst-docstrings-sphinx.git
8383
git+https://github.com/domdfcoding/flake8-rst-docstrings.git
84+
git+https://github.com/python-formate/flake8-unused-arguments.git@magic-methods
8485
pydocstyle>=6.0.0
8586
pygments>=2.7.1
8687
importlib_metadata<4.5.0; python_version<'3.8'

0 commit comments

Comments
 (0)