Skip to content

Commit d5710c2

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

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,3 @@ replace = : str = "{new_version}"
1717
[bumpversion:file:doc-source/index.rst]
1818

1919
[bumpversion:file:pyproject.toml]
20-
21-
[bumpversion:file:setup.cfg]
22-
search = name = {current_version}
23-
replace = name = {new_version}

.github/workflows/python_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: "windows-2019"
1212
continue-on-error: ${{ matrix.config.experimental }}
1313
env:
14-
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.6'
14+
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.7'
1515

1616
strategy:
1717
fail-fast: False
@@ -20,7 +20,7 @@ jobs:
2020
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2121
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2222
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
23-
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
23+
- {python-version: "3.10.0-alpha.7", testenvs: "py310-dev,build", experimental: True}
2424

2525
steps:
2626
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: "ubuntu-20.04"
1212
continue-on-error: ${{ matrix.config.experimental }}
1313
env:
14-
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.6'
14+
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.7'
1515

1616
strategy:
1717
fail-fast: False
@@ -20,7 +20,7 @@ jobs:
2020
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2121
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2222
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
23-
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
23+
- {python-version: "3.10.0-alpha.7", testenvs: "py310-dev,build", experimental: True}
2424

2525
steps:
2626
- name: Checkout 🛎️

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: "macos-latest"
1212
continue-on-error: ${{ matrix.config.experimental }}
1313
env:
14-
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.6'
14+
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.7'
1515

1616
strategy:
1717
fail-fast: False
@@ -20,7 +20,7 @@ jobs:
2020
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2121
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2222
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
23-
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
23+
- {python-version: "3.10.0-alpha.7", testenvs: "py310-dev,build", experimental: True}
2424

2525
steps:
2626
- name: Checkout 🛎️

formate.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ known_third_party = [
3939
"domdf_python_tools",
4040
"first",
4141
"github",
42+
"importlib_metadata",
4243
"pluggy",
4344
"pytest",
4445
"pytest_cov",

tests/requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ backports-entry-points-selectable>=1.0.2
33
coincidence>=0.2.0
44
coverage>=5.1
55
coverage-pyver-pragma>=0.2.1
6+
importlib-metadata>=3.6.0
67
pytest>=6.0.0
78
pytest-cov>=2.8.1
8-
pytest-randomly>=3.6.0
9+
pytest-randomly>=3.7.0
910
pytest-timeout>=1.4.2

tox.ini

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,10 @@ basepython = python3.7
104104
skip_install = True
105105
ignore_errors = True
106106
whitelist_externals = /bin/bash
107+
passenv =
108+
COV_PYTHON_VERSION
109+
COV_PLATFORM
110+
COV_PYTHON_IMPLEMENTATION
107111
changedir = {toxinidir}
108112
deps =
109113
coverage>=5

0 commit comments

Comments
 (0)