Skip to content

Commit ad60382

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

File tree

4 files changed

+18
-15
lines changed

4 files changed

+18
-15
lines changed

.github/workflows/python_ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,18 @@ jobs:
1111
tests:
1212
name: "Python ${{ matrix.config.python-version }}"
1313
runs-on: "windows-2019"
14+
continue-on-error: ${{ matrix.config.experimental }}
1415
env:
1516
USING_COVERAGE: '3.6,3.7,3.8,3.9'
1617

1718
strategy:
1819
fail-fast: False
1920
matrix:
2021
config:
21-
- {python-version: "3.6", testenvs: "py36,build"}
22-
- {python-version: "3.7", testenvs: "py37,build"}
23-
- {python-version: "3.8", testenvs: "py38,build"}
24-
- {python-version: "3.9", testenvs: "py39,build"}
22+
- {python-version: "3.6", testenvs: "py36,build", experimental: False}
23+
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
24+
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
25+
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
2526

2627
steps:
2728
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,19 @@ jobs:
1111
tests:
1212
name: "Python ${{ matrix.config.python-version }}"
1313
runs-on: "ubuntu-20.04"
14+
continue-on-error: ${{ matrix.config.experimental }}
1415
env:
1516
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy3'
1617

1718
strategy:
1819
fail-fast: False
1920
matrix:
2021
config:
21-
- {python-version: "3.6", testenvs: "py36,build"}
22-
- {python-version: "3.7", testenvs: "py37,build"}
23-
- {python-version: "3.8", testenvs: "py38,build"}
24-
- {python-version: "3.9", testenvs: "py39,build"}
25-
- {python-version: "pypy3", testenvs: "pypy3,build"}
22+
- {python-version: "3.6", testenvs: "py36,build", experimental: False}
23+
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
24+
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
25+
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26+
- {python-version: "pypy3", testenvs: "pypy3,build", experimental: False}
2627

2728
steps:
2829
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,19 @@ jobs:
1111
tests:
1212
name: "Python ${{ matrix.config.python-version }}"
1313
runs-on: "macos-latest"
14+
continue-on-error: ${{ matrix.config.experimental }}
1415
env:
1516
USING_COVERAGE: '3.6,3.7,3.8,3.9,pypy3'
1617

1718
strategy:
1819
fail-fast: False
1920
matrix:
2021
config:
21-
- {python-version: "3.6", testenvs: "py36,build"}
22-
- {python-version: "3.7", testenvs: "py37,build"}
23-
- {python-version: "3.8", testenvs: "py38,build"}
24-
- {python-version: "3.9", testenvs: "py39,build"}
25-
- {python-version: "pypy3", testenvs: "pypy3,build"}
22+
- {python-version: "3.6", testenvs: "py36,build", experimental: False}
23+
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
24+
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
25+
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26+
- {python-version: "pypy3", testenvs: "pypy3,build", experimental: False}
2627

2728
steps:
2829
- name: Checkout 🛎️

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
envlist = py36, py37, py38, py39, pypy3, mypy, build
2020
skip_missing_interpreters = True
2121
requires =
22-
pip>=20.3.1
22+
pip>=20.3.3
2323
tox-envlist>=0.1.0
2424
isolated_build = True
2525

0 commit comments

Comments
 (0)