Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
oprypin committed Aug 22, 2022
1 parent b8135cb commit 663d05d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


test_requirements = [
'pytest',
'pytest <5; python_version < "3.0"',
Expand All @@ -23,7 +24,7 @@ def read(fname):

setup(
name='mkdocs-redirects',
version='1.0.6',
version='1.1.0',
description='A MkDocs plugin for dynamic page redirects to prevent broken links.',
long_description=read('README.md'),
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -60,7 +61,7 @@ def read(fname):
packages=find_packages(),
entry_points={
'mkdocs.plugins': [
'redirects = mkdocs_redirects.plugin:RedirectPlugin'
'redirects = mkdocs_redirects.plugin:RedirectPlugin',
]
}
},
)

0 comments on commit 663d05d

Please sign in to comment.