Skip to content

Commit 5e9639a

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

20 files changed

+161
-198
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,7 @@ tag = True
1313

1414
[bumpversion:file:seed_intersphinx_mapping/__init__.py]
1515

16+
search = : str = "{current_version}"
17+
replace = : str = "{new_version}"
18+
1619
[bumpversion:file:pyproject.toml]

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,10 @@ THE ISSUE WILL BE CLOSED IF INSUFFICIENT INFORMATION IS PROVIDED.
1717

1818

1919
## Steps to Reproduce
20-
<!--Please add a series of steps to reproduce the issue-->
20+
<!--Please add a series of steps to reproduce the issue.
21+
22+
If possible, please include a small, self-contained reproduction.
23+
-->
2124

2225
1.
2326
2.

.github/workflows/conda_ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ name: Conda Tests
44

55
on:
66
push:
7-
pull_request:
87
branches: ["master"]
98

109
jobs:

.github/workflows/docs_test_action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
---
33
name: "Docs Check"
44
on:
5-
- pull_request
65
- push
76

87
jobs:

.github/workflows/flake8.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ name: Flake8
44

55
on:
66
push:
7-
pull_request:
8-
branches: ["master"]
97

108
jobs:
119
Run:

.github/workflows/mypy.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ name: mypy
44

55
on:
66
push:
7-
pull_request:
8-
branches: ["master"]
97

108
jobs:
119
Run:
@@ -14,7 +12,7 @@ jobs:
1412

1513
strategy:
1614
matrix:
17-
os: ['windows-2019', 'macos-latest', 'ubuntu-20.04']
15+
os: ['ubuntu-20.04', 'windows-2019']
1816
fail-fast: false
1917

2018
steps:

.github/workflows/python_ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@ name: Windows
44

55
on:
66
push:
7-
pull_request:
8-
branches: ["master"]
97

108
jobs:
119
tests:
1210
name: "windows-2019 / Python ${{ matrix.config.python-version }}"
1311
runs-on: "windows-2019"
1412
continue-on-error: ${{ matrix.config.experimental }}
1513
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6,pypy-3.7'
14+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1715

1816
strategy:
1917
fail-fast: False
@@ -23,9 +21,9 @@ jobs:
2321
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2422
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2523
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
24+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2725
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
26+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2927

3028
steps:
3129
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@ name: Linux
44

55
on:
66
push:
7-
pull_request:
8-
branches: ["master"]
97

108
jobs:
119
tests:
1210
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
1311
runs-on: "ubuntu-20.04"
1412
continue-on-error: ${{ matrix.config.experimental }}
1513
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6,pypy-3.7'
14+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1715

1816
strategy:
1917
fail-fast: False
@@ -23,9 +21,9 @@ jobs:
2321
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2422
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2523
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
24+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2725
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
26+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2927

3028
steps:
3129
- name: Checkout 🛎️
@@ -127,7 +125,7 @@ jobs:
127125

128126
- name: Upload distribution to PyPI 🚀
129127
if: startsWith(github.ref, 'refs/tags/')
130-
uses: pypa/gh-action-pypi-publish@master
128+
uses: pypa/gh-action-pypi-publish@v1.4.2
131129
with:
132130
user: __token__
133131
password: ${{ secrets.PYPI_TOKEN }}

.github/workflows/python_ci_macos.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@ name: macOS
44

55
on:
66
push:
7-
pull_request:
8-
branches: ["master"]
97

108
jobs:
119
tests:
1210
name: "macos-latest / Python ${{ matrix.config.python-version }}"
1311
runs-on: "macos-latest"
1412
continue-on-error: ${{ matrix.config.experimental }}
1513
env:
16-
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.5,pypy-3.6,pypy-3.7'
14+
USING_COVERAGE: '3.6,3.7,3.8,3.9,3.10.0-alpha.6,pypy-3.6,pypy-3.7'
1715

1816
strategy:
1917
fail-fast: False
@@ -23,9 +21,9 @@ jobs:
2321
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2422
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2523
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
26-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
24+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2725
- {python-version: "pypy-3.6", testenvs: "pypy36,build", experimental: False}
28-
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: False}
26+
- {python-version: "pypy-3.7", testenvs: "pypy37,build", experimental: True}
2927

3028
steps:
3129
- name: Checkout 🛎️

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ repos:
7474
exclude: ^(doc-source/conf|__pkginfo__|make_conda_recipe|setup)\.(_)?py$
7575

7676
- repo: https://github.com/domdfcoding/dep_checker
77-
rev: v0.5.0
77+
rev: v0.6.0
7878
hooks:
7979
- id: dep_checker
8080
args:

0 commit comments

Comments
 (0)