Skip to content

Commit 075d52e

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

File tree

14 files changed

+145
-143
lines changed

14 files changed

+145
-143
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/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: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ name: Windows
44

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

108
jobs:
119
tests:
@@ -25,7 +23,7 @@ jobs:
2523
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
2624
- {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: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ name: Linux
44

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

108
jobs:
119
tests:
@@ -25,7 +23,7 @@ jobs:
2523
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
2624
- {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: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ name: macOS
44

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

108
jobs:
119
tests:
@@ -25,7 +23,7 @@ jobs:
2523
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
2624
- {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 🛎️

.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:

doc-source/_static/style.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
/* This file is managed by 'repo_helper'. Don't edit it directly. */
22

33
div.highlight {
4-
-moz-tab-size: 4; /* Firefox */
5-
tab-size: 4;
4+
-moz-tab-size: 4;
5+
tab-size: 4;
6+
}
7+
8+
.field-list dt, dl.simple dt {
9+
margin-top: 0.5rem;
610
}

0 commit comments

Comments
 (0)