Skip to content

Commit 1fa9382

Browse files
committed
req test
1 parent a67f15d commit 1fa9382

8 files changed

Lines changed: 231 additions & 181 deletions

File tree

dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Customize the manifest version strategy
2+
3+
version: 2
4+
updates:
5+
- package-ecosystem: "pip"
6+
directory: "/"
7+
schedule:
8+
interval: "daily"
9+
# Only allow updates to the lockfile for pip and
10+
# ignore any version updates that affect the manifest
11+
versioning-strategy: lockfile-only

docs/source/conf.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,15 @@
159159

160160
# One entry per manual page. List of tuples
161161
# (source start file, name, description, authors, manual section).
162-
man_pages = [(master_doc, "python_package_template", "PythonPackageTemplate Documentation", [author], 1)]
162+
man_pages = [
163+
(
164+
master_doc,
165+
"python_package_template",
166+
"PythonPackageTemplate Documentation",
167+
[author],
168+
1,
169+
)
170+
]
163171

164172
# -- Options for Texinfo output -------------------------------------------
165173

projectname/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323
def dist_is_editable(dist):
2424
"""
25-
Return True if given Distribution is an editable install.
26-
"""
25+
Return True if given Distribution is an editable install.
26+
"""
2727
import sys
2828
from pathlib import Path
2929

0 commit comments

Comments
 (0)