Skip to content

Commit 3fcbdd0

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

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/python_ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "windows-2019"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,7 +23,7 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37-click{7.1,8.0.0a1},build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38-click{7.1,8.0.0a1},build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39-click{7.1,8.0.0a1},build", experimental: False}
26-
- {python-version: "3.10.0-alpha.4", testenvs: "py310-dev-click{7.1,8.0.0a1},build", experimental: True}
26+
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev-click{7.1,8.0.0a1},build", experimental: True}
2727

2828
steps:
2929
- name: Checkout 🛎️
@@ -46,6 +46,7 @@ jobs:
4646

4747
- name: "Upload Coverage 🚀"
4848
uses: actions/upload-artifact@v2
49+
if: ${{ always() }}
4950
with:
5051
name: "coverage-${{ matrix.config.python-version }}"
5152
path: .coverage

.github/workflows/python_ci_linux.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "ubuntu-20.04"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4,pypy-3.6'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,7 +23,7 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37-click{7.1,8.0.0a1},build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38-click{7.1,8.0.0a1},build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39-click{7.1,8.0.0a1},build", experimental: False}
26-
- {python-version: "3.10.0-alpha.4", testenvs: "py310-dev-click{7.1,8.0.0a1},build", experimental: True}
26+
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev-click{7.1,8.0.0a1},build", experimental: True}
2727
- {python-version: "pypy-3.6", testenvs: "pypy3-click{7.1,8.0.0a1},build", experimental: False}
2828

2929
steps:
@@ -48,6 +48,7 @@ jobs:
4848

4949
- name: "Upload Coverage 🚀"
5050
uses: actions/upload-artifact@v2
51+
if: ${{ always() }}
5152
with:
5253
name: "coverage-${{ matrix.config.python-version }}"
5354
path: .coverage

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: "macos-latest"
1414
continue-on-error: ${{ matrix.config.experimental }}
1515
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.4,pypy-3.6'
16+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6'
1717

1818
strategy:
1919
fail-fast: False
@@ -23,7 +23,7 @@ jobs:
2323
- {python-version: "3.7", testenvs: "py37-click{7.1,8.0.0a1},build", experimental: False}
2424
- {python-version: "3.8", testenvs: "py38-click{7.1,8.0.0a1},build", experimental: False}
2525
- {python-version: "3.9", testenvs: "py39-click{7.1,8.0.0a1},build", experimental: False}
26-
- {python-version: "3.10.0-alpha.4", testenvs: "py310-dev-click{7.1,8.0.0a1},build", experimental: True}
26+
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev-click{7.1,8.0.0a1},build", experimental: True}
2727
- {python-version: "pypy-3.6", testenvs: "pypy3-click{7.1,8.0.0a1},build", experimental: False}
2828

2929
steps:
@@ -47,6 +47,7 @@ jobs:
4747

4848
- name: "Upload Coverage 🚀"
4949
uses: actions/upload-artifact@v2
50+
if: ${{ always() }}
5051
with:
5152
name: "coverage-${{ matrix.config.python-version }}"
5253
path: .coverage

.pre-commit-config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ repos:
5959
- id: pyupgrade
6060
args:
6161
- --py36-plus
62+
- --keep-runtime-typing
6263

6364
- repo: https://github.com/Lucas-C/pre-commit-hooks
6465
rev: v1.1.9

0 commit comments

Comments
 (0)