Skip to content

Commit 55579d8

Browse files
committed
Updated files with `git_helper.
1 parent bfcbca5 commit 55579d8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
github_username = "domdfcoding"
6161
web = github_url = f"https://github.com/domdfcoding/domdf_python_tools"
6262
project_urls = {
63-
"Documentation": f"https://domdf_python_tools.readthedocs.io", # TODO: Make this link match the package version
63+
"Documentation": f"https://domdf_python_tools.readthedocs.io",
6464
"Issue Tracker": f"{github_url}/issues",
6565
"Source Code": github_url,
6666
}

doc-source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
project = "domdf_python_tools"
2828
slug = re.sub(r'\W+', '-', project.lower())
2929
release = version = __version__
30-
copyright = "2019-2020 Dominic Davis-Foster"
30+
copyright = "2019-2020 Dominic Davis-Foster" # noqa
3131
language = 'en'
3232
package_root = "domdf_python_tools"
3333

make_conda_recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from docutils.core import publish_file
99
from io import StringIO
1010

11-
from __pkginfo__ import *
11+
from __pkginfo__ import * # noqa
1212

1313
recipe_dir = repo_root / "conda"
1414

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is managed by `git_helper`. Don't edit it directly
33
"""Setup script"""
44

5-
from __pkginfo__ import *
5+
from __pkginfo__ import * # noqa
66

77
from setuptools import setup, find_packages
88

0 commit comments

Comments
 (0)