Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit da4e44d

Browse filesBrowse files
[repo-helper] Configuration Update (#18)
* Updated files with 'repo_helper'. * Updated files with 'repo_helper'. Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 74e25d4 commit da4e44d
Copy full SHA for da4e44d

File tree

6 files changed

+20
-19
lines changed
Filter options

6 files changed

+20
-19
lines changed

‎.github/workflows/mypy.yml

Copy file name to clipboardExpand all lines: .github/workflows/mypy.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
python -VV
4848
python -m site
4949
python -m pip install --upgrade pip setuptools wheel
50-
python -m pip install --upgrade tox virtualenv
50+
python -m pip install --upgrade tox virtualenv!=20.16.0
5151
5252
- name: "Run mypy"
5353
if: steps.changes.outputs.code == 'true'

‎.github/workflows/python_ci.yml

Copy file name to clipboardExpand all lines: .github/workflows/python_ci.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "windows-2019"
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-beta.3'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.1'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,7 +33,7 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38-click{7,8},build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39-click{7,8},build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
36-
- {python-version: "3.11.0-beta.3", testenvs: "py311-dev-click{7,8},build", experimental: True}
36+
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev-click{7,8},build", experimental: True}
3737

3838
steps:
3939
- name: Checkout 🛎️
@@ -62,7 +62,7 @@ jobs:
6262
python -VV
6363
python -m site
6464
python -m pip install --upgrade pip setuptools wheel
65-
python -m pip install --upgrade tox virtualenv
65+
python -m pip install --upgrade tox virtualenv!=20.16.0
6666
6767
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6868
if: steps.setup-python.outcome == 'success'

‎.github/workflows/python_ci_linux.yml

Copy file name to clipboardExpand all lines: .github/workflows/python_ci_linux.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: "ubuntu-20.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
26-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-beta.3'
26+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.1'
2727

2828
strategy:
2929
fail-fast: False
@@ -34,7 +34,7 @@ jobs:
3434
- {python-version: "3.8", testenvs: "py38-click{7,8},build", experimental: False}
3535
- {python-version: "3.9", testenvs: "py39-click{7,8},build", experimental: False}
3636
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
37-
- {python-version: "3.11.0-beta.3", testenvs: "py311-dev-click{7,8},build", experimental: True}
37+
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev-click{7,8},build", experimental: True}
3838

3939
steps:
4040
- name: Checkout 🛎️
@@ -63,7 +63,7 @@ jobs:
6363
python -VV
6464
python -m site
6565
python -m pip install --upgrade pip setuptools wheel
66-
python -m pip install --upgrade tox virtualenv
66+
python -m pip install --upgrade tox virtualenv!=20.16.0
6767
python -m pip install --upgrade coverage_pyver_pragma
6868
6969
- name: "Run Tests for Python ${{ matrix.config.python-version }}"

‎.github/workflows/python_ci_macos.yml

Copy file name to clipboardExpand all lines: .github/workflows/python_ci_macos.yml
+3-3Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: "macos-latest"
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-beta.3'
25+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10,3.11.0-rc.1'
2626

2727
strategy:
2828
fail-fast: False
@@ -33,7 +33,7 @@ jobs:
3333
- {python-version: "3.8", testenvs: "py38-click{7,8},build", experimental: False}
3434
- {python-version: "3.9", testenvs: "py39-click{7,8},build", experimental: False}
3535
- {python-version: "3.10", testenvs: "py310-click{7,8},build", experimental: False}
36-
- {python-version: "3.11.0-beta.3", testenvs: "py311-dev-click{7,8},build", experimental: True}
36+
- {python-version: "3.11.0-rc.1", testenvs: "py311-dev-click{7,8},build", experimental: True}
3737

3838
steps:
3939
- name: Checkout 🛎️
@@ -62,7 +62,7 @@ jobs:
6262
python -VV
6363
python -m site
6464
python -m pip install --upgrade pip setuptools wheel
65-
python -m pip install --upgrade tox virtualenv
65+
python -m pip install --upgrade tox virtualenv!=20.16.0
6666
6767
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6868
if: steps.setup-python.outcome == 'success'

‎.pre-commit-config.yaml

Copy file name to clipboardExpand all lines: .pre-commit-config.yaml
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ exclude: ^(tests/test_snippet_fmt_/.*\.rst|tests/example.rst)$
55

66
repos:
77
- repo: https://github.com/repo-helper/pyproject-parser
8-
rev: v0.6.1
8+
rev: v0.7.0
99
hooks:
1010
- id: reformat-pyproject
1111

@@ -30,7 +30,7 @@ repos:
3030
- id: end-of-file-fixer
3131

3232
- repo: https://github.com/domdfcoding/pre-commit-hooks
33-
rev: v0.3.0
33+
rev: v0.4.0
3434
hooks:
3535
- id: requirements-txt-sorter
3636
args:
@@ -40,13 +40,13 @@ repos:
4040
- id: bind-requirements
4141

4242
- repo: https://github.com/domdfcoding/flake8-dunder-all
43-
rev: v0.2.1
43+
rev: v0.2.2
4444
hooks:
4545
- id: ensure-dunder-all
4646
files: ^snippet_fmt/.*\.py$
4747

4848
- repo: https://github.com/domdfcoding/flake2lint
49-
rev: v0.4.1
49+
rev: v0.4.2
5050
hooks:
5151
- id: flake2lint
5252

@@ -84,7 +84,7 @@ repos:
8484
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$
8585

8686
- repo: https://github.com/domdfcoding/dep_checker
87-
rev: v0.6.2
87+
rev: v0.7.0
8888
hooks:
8989
- id: dep_checker
9090
args:

‎tox.ini

Copy file name to clipboardExpand all lines: tox.ini
+5-4Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ envlist =
2929
skip_missing_interpreters = True
3030
isolated_build = True
3131
requires =
32-
pip>=21
32+
pip>=21,!=22.2
3333
tox-envlist>=0.2.1
34+
virtualenv!=20.16.0
3435

3536
[envlists]
3637
test =
@@ -81,15 +82,15 @@ changedir = {toxinidir}
8182
ignore_errors = True
8283
skip_install = True
8384
deps =
84-
flake8>=3.8.2
85+
flake8>=3.8.2,<5
8586
flake8-2020>=1.6.0
8687
flake8-builtins>=1.5.3
8788
flake8-docstrings>=1.5.0
8889
flake8-dunder-all>=0.1.1
8990
flake8-encodings>=0.1.0
9091
flake8-github-actions>=0.1.0
91-
flake8-noqa>=1.1.0
92-
flake8-pyi>=20.10.0
92+
flake8-noqa>=1.1.0,<=1.2.2
93+
flake8-pyi>=20.10.0,<=22.8.0
9394
flake8-pytest-style>=1.3.0
9495
flake8-quotes>=3.3.0
9596
flake8-slots>=0.1.0

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.