Skip to content

Commit 450d879

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

18 files changed

+146
-171
lines changed

.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/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: 2 additions & 4 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.7,3.8,3.9,3.10.0-alpha.5'
14+
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.6'
1715

1816
strategy:
1917
fail-fast: False
@@ -22,7 +20,7 @@ jobs:
2220
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2321
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2422
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
25-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
23+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2624

2725
steps:
2826
- name: Checkout 🛎️

.github/workflows/python_ci_linux.yml

Lines changed: 3 additions & 5 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.7,3.8,3.9,3.10.0-alpha.5'
14+
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.6'
1715

1816
strategy:
1917
fail-fast: False
@@ -22,7 +20,7 @@ jobs:
2220
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2321
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2422
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
25-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
23+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2624

2725
steps:
2826
- name: Checkout 🛎️
@@ -124,7 +122,7 @@ jobs:
124122

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

.github/workflows/python_ci_macos.yml

Lines changed: 2 additions & 4 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.7,3.8,3.9,3.10.0-alpha.5'
14+
USING_COVERAGE: '3.7,3.8,3.9,3.10.0-alpha.6'
1715

1816
strategy:
1917
fail-fast: False
@@ -22,7 +20,7 @@ jobs:
2220
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
2321
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
2422
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
25-
- {python-version: "3.10.0-alpha.5", testenvs: "py310-dev,build", experimental: True}
23+
- {python-version: "3.10.0-alpha.6", testenvs: "py310-dev,build", experimental: True}
2624

2725
steps:
2826
- 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:

.readthedocs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ version: 2
55
sphinx:
66
builder: html
77
configuration: doc-source/conf.py
8-
formats: all
8+
formats:
9+
- pdf
10+
- htmlzip
911
python:
1012
version: 3.8
1113
install:

MANIFEST.in

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)