diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/changelog/1556.bugfix.rst | 7 | ||||
-rw-r--r-- | docs/changelog/examples.rst | 7 | ||||
-rw-r--r-- | docs/conf.py | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/docs/changelog/1556.bugfix.rst b/docs/changelog/1556.bugfix.rst new file mode 100644 index 00000000..66541b79 --- /dev/null +++ b/docs/changelog/1556.bugfix.rst @@ -0,0 +1,7 @@ +Fix the CI failures: + +- drop Python 3.5 support as it's not expected to get to a release before EOL, +- fix test using ``\n`` instead of ``os.linesep``, +- Windows Python 3.6 does not contain ``_overlapped.ReadFileInto`` + +- by :user:`gaborbernat`. diff --git a/docs/changelog/examples.rst b/docs/changelog/examples.rst deleted file mode 100644 index 30c07409..00000000 --- a/docs/changelog/examples.rst +++ /dev/null @@ -1,7 +0,0 @@ -Add a new feature that can be characterized as: - -- simple, -- complicated. - -Remember the filename needs to be ``<issue_number>.<type>.rst``, for example ``1.bugfix.rst`` or ``2.feature.rst`` - by -:user:`gaborbernat`. diff --git a/docs/conf.py b/docs/conf.py index 54309488..1272c963 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -62,7 +62,7 @@ extlinks = { def generate_draft_news(): root = Path(__file__).parents[1] exe = Path(sys.executable) - towncrier = exe.with_name("towncrier{}".format(exe.suffix)) + towncrier = exe.with_name(f"towncrier{exe.suffix}") new = subprocess.check_output([str(towncrier), "--draft", "--version", "NEXT"], cwd=root, universal_newlines=True) (root / "docs" / "_draft.rst").write_text("" if "No significant changes" in new else new) |