Skip to content

Commit af07029

Browse files
author
Wes Kendall
committed
Mkdocs
1 parent 9689238 commit af07029

24 files changed

+43
-749
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,6 @@ instance/
8080
# Scrapy stuff:
8181
.scrapy
8282

83-
# Sphinx documentation
84-
docs/_build/
85-
8683
# PyBuilder
8784
target/
8885

README.rst

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[tool.black]
22
line-length = 99
3-
target-version = ['py37']
3+
target-version = ['py38']

{{ cookiecutter.repo_name }}/.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
test_pg_max:
4949
executor:
5050
name: opus10/python-pg
51-
pg_version: "15.2"
51+
pg_version: "16.0"
5252
steps:
5353
- opus10/test
5454

{{ cookiecutter.repo_name }}/.git-tidy/log.tpl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,13 @@
77
# Changelog
88
{% endif %}
99
{% for tag, commits_by_tag in commits.exclude('summary', '.*\[skip ci\].*', match=True).group('tag').items() %}
10+
1011
## {{ tag|default('Unreleased', True) }} {% if tag.date %}({{ tag.date.date() }}){% endif %}
1112

1213
{% for type, commits_by_type in commits_by_tag.group('type', ascending_keys=True, none_key_last=True).items() %}
14+
1315
### {{ type|default('Other', True)|title }}
16+
1417
{% for commit in commits_by_type %}
1518
{% if not commit.is_parsed %}
1619
- {{ commit.sha[:7] }}: Commit could not be parsed.
@@ -23,6 +26,5 @@
2326
{% endif %}
2427
{% endfor %}
2528
{% endfor %}
26-
2729
{% endfor %}
2830
{%- endraw -%}

{{ cookiecutter.repo_name }}/.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,6 @@ instance/
8080
# Scrapy stuff:
8181
.scrapy
8282

83-
# Sphinx documentation
84-
docs/_build/
85-
8683
# PyBuilder
8784
target/
8885

{{ cookiecutter.repo_name }}/.readthedocs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@ python:
33
version: 3.8
44
install:
55
- requirements: docs/requirements.txt
6+
mkdocs:
7+
configuration: mkdocs.yml
8+
fail_on_warning: false

0 commit comments

Comments
 (0)