Skip to content

Commit

Permalink
v1.7.0: Updates for Python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
nottrobin committed Jan 30, 2023
1 parent e9b62ce commit 673bd11
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ v1.6.2, 2018-08-24 -- Add base_canonical variable for use in custom templates
v1.6.3, 2019-05-08 -- Update the copyright year in the footer
v1.6.4, 2021-10-20 -- Update pyyaml and gitpython
v1.6.5, 2021-10-20 -- GitPython 3.1.20 (works with more python versions)
v1.7.0, 2023-01-30 -- Update code and dependencies to work with Python 3.10
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name="ubuntudesign.documentation-builder",
version="1.6.5",
version="1.7.0",
author="Canonical webteam",
author_email="[email protected]",
url="https://github.com/ubuntudesign/documentation-builder",
Expand All @@ -30,14 +30,14 @@
long_description=open("README.rst").read(),
install_requires=[
"GitPython==3.1.20",
"Jinja2==2.8",
"Markdown==2.6.6",
"Jinja2==3.1.2 ",
"markdown==2.6.11",
"mdx-anchors-away==1.0.1",
"mdx-foldouts==1.0.0",
"python-frontmatter==0.2.1",
"pygments==2.2.0",
"pygments==2.4.0",
"PyYAML==6.0",
"beautifulsoup4==4.5.1",
"beautifulsoup4==4.11.1",
"markdown_urlize==0.2.0",
],
setup_requires=["pytest-runner"],
Expand Down
2 changes: 1 addition & 1 deletion ubuntudesign/documentation_builder/operations.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Core modules
import re
import tempfile
from collections import Mapping
from collections.abc import Mapping
from copy import deepcopy
from glob import glob, iglob
from os import makedirs, path
Expand Down

0 comments on commit 673bd11

Please sign in to comment.