diff -pruN 0.0.15-3/debian/changelog 0.0.17-1/debian/changelog
--- 0.0.15-3/debian/changelog	2022-05-26 17:00:49.000000000 +0000
+++ 0.0.17-1/debian/changelog	2022-08-01 09:12:27.000000000 +0000
@@ -1,3 +1,13 @@
+sphinx-markdown-tables (0.0.17-1) unstable; urgency=medium
+
+  * New upstream version 0.0.17 (closes: #1016251)
+  * Remove __pycache__ directory
+  * Bump Standards-Version to 4.6.1 (no changes required)
+  * Add Andrius Merkys to copyright holders of Debian packaging
+  * Update copyright years for Debian packaging
+
+ -- Peter Wienemann <fossdev@posteo.de>  Mon, 01 Aug 2022 11:12:27 +0200
+
 sphinx-markdown-tables (0.0.15-3) unstable; urgency=medium
 
   [ Debian Janitor ]
diff -pruN 0.0.15-3/debian/control 0.0.17-1/debian/control
--- 0.0.15-3/debian/control	2022-05-26 17:00:49.000000000 +0000
+++ 0.0.17-1/debian/control	2022-08-01 09:12:27.000000000 +0000
@@ -9,7 +9,7 @@ Build-Depends:
  dh-python,
  python3-all,
  python3-setuptools,
-Standards-Version: 4.5.0
+Standards-Version: 4.6.1
 Rules-Requires-Root: no
 Homepage: https://github.com/ryanfox/sphinx-markdown-tables
 Vcs-Browser: https://salsa.debian.org/python-team/packages/sphinx-markdown-tables
diff -pruN 0.0.15-3/debian/copyright 0.0.17-1/debian/copyright
--- 0.0.15-3/debian/copyright	2022-05-26 17:00:49.000000000 +0000
+++ 0.0.17-1/debian/copyright	2022-08-01 09:12:27.000000000 +0000
@@ -8,7 +8,8 @@ Copyright: 2018-2020, Ryan Fox <ryan@fox
 License: GPL-3.0
 
 Files: debian/*
-Copyright: 2020, Peter Wienemann <fossdev@posteo.de>
+Copyright: 2020-2022, Peter Wienemann <fossdev@posteo.de>
+           2020, Andrius Merkys <merkys@debian.org>
 License: GPL-3.0
 
 License: GPL-3.0
diff -pruN 0.0.15-3/debian/rules 0.0.17-1/debian/rules
--- 0.0.15-3/debian/rules	2022-05-26 17:00:49.000000000 +0000
+++ 0.0.17-1/debian/rules	2022-08-01 09:12:27.000000000 +0000
@@ -19,4 +19,4 @@ override_dh_auto_install:
 
 override_dh_clean:
 	dh_clean
-	rm -rf sphinx_markdown_tables.egg-info
+	rm -rf sphinx_markdown_tables.egg-info sphinx_markdown_tables/__pycache__
diff -pruN 0.0.15-3/setup.py 0.0.17-1/setup.py
--- 0.0.15-3/setup.py	2020-06-16 03:09:44.000000000 +0000
+++ 0.0.17-1/setup.py	2022-07-29 00:34:28.000000000 +0000
@@ -28,7 +28,7 @@ setup(
     ],
     keywords='sphinx markdown tables',
     packages=['sphinx_markdown_tables'],
-    install_requires=['markdown>=3.0.1'],
+    install_requires=['markdown>=3.4'],
     data_files=[('', ['LICENSE'])],
     project_urls={
         'Bug Reports': 'https://github.com/ryanfox/sphinx-markdown-tables/issues',
diff -pruN 0.0.15-3/sphinx_markdown_tables/__init__.py 0.0.17-1/sphinx_markdown_tables/__init__.py
--- 0.0.15-3/sphinx_markdown_tables/__init__.py	2020-06-16 03:09:44.000000000 +0000
+++ 0.0.17-1/sphinx_markdown_tables/__init__.py	2022-07-29 00:34:28.000000000 +0000
@@ -21,7 +21,7 @@ def process_tables(app, docname, source)
     """
     import markdown
     md = markdown.Markdown(extensions=['markdown.extensions.tables'])
-    table_processor = markdown.extensions.tables.TableProcessor(md.parser)
+    table_processor = markdown.extensions.tables.TableProcessor(md.parser, {})
 
     raw_markdown = source[0]
     blocks = re.split(r'(\n{2,})', raw_markdown)
diff -pruN 0.0.15-3/sphinx_markdown_tables/__version__.py 0.0.17-1/sphinx_markdown_tables/__version__.py
--- 0.0.15-3/sphinx_markdown_tables/__version__.py	2020-06-16 03:09:44.000000000 +0000
+++ 0.0.17-1/sphinx_markdown_tables/__version__.py	2022-07-29 00:34:28.000000000 +0000
@@ -1,2 +1,2 @@
-__version__ = '0.0.15'
+__version__ = '0.0.17'
 
