Skip to content

Commit 15972e1

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

File tree

16 files changed

+145
-136
lines changed

16 files changed

+145
-136
lines changed

.bumpversion.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ tag = True
77

88
[bumpversion:file:notebook2script/__init__.py]
99

10+
search = : str = "{current_version}"
11+
replace = : str = "{new_version}"
12+
1013
[bumpversion:file:README.rst]
1114

1215
[bumpversion:file:repo_helper.yml]

.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: 0 additions & 2 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:

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 3 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:
@@ -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: 0 additions & 2 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:

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

__pkginfo__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
"""
2828

2929
__version__ = "0.2.0"
30-
3130
repo_root = pathlib.Path(__file__).parent
3231
install_requires = (repo_root / "requirements.txt").read_text(encoding="utf-8").split('\n')
33-
extras_require = {"all": []}
32+
extras_require = {}

0 commit comments

Comments
 (0)