Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mmerickel committed Aug 25, 2023
1 parent 1352ca8 commit d1cbbcf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
@@ -1,7 +1,7 @@
.. _changes_2.0.2:

2.0.2 (2023-08-24)
==========
==================

Bug Fixes
---------
Expand Down
12 changes: 6 additions & 6 deletions docs/conf.py
Expand Up @@ -63,22 +63,22 @@ def nothing(*arg):
# Looks for objects in external projects
intersphinx_mapping = {
'colander': ('https://docs.pylonsproject.org/projects/colander/en/latest/', None),
'cookbook': ('https://docs.pylonsproject.org/projects/pyramid-cookbook/en/latest/', None),
'cookbook': ('https://docs.pylonsproject.org/projects/pyramid_cookbook/en/latest/', None),
'deform': ('https://docs.pylonsproject.org/projects/deform/en/latest/', None),
'jinja2': ('https://docs.pylonsproject.org/projects/pyramid-jinja2/en/latest/', None),
'jinja2': ('https://docs.pylonsproject.org/projects/pyramid_jinja2/en/latest/', None),
'pylonswebframework': ('https://docs.pylonsproject.org/projects/pylons-webframework/en/latest/', None),
'python': ('https://docs.python.org/3/', None),
'pytest': ('https://docs.pytest.org/en/latest/', None),
'sqla': ('https://docs.sqlalchemy.org/en/latest/', None),
'tm': ('https://docs.pylonsproject.org/projects/pyramid-tm/en/latest/', None),
'toolbar': ('https://docs.pylonsproject.org/projects/pyramid-debugtoolbar/en/latest/', None),
'tm': ('https://docs.pylonsproject.org/projects/pyramid_tm/en/latest/', None),
'toolbar': ('https://docs.pylonsproject.org/projects/pyramid_debugtoolbar/en/latest/', None),
'transaction': ('https://transaction.readthedocs.io/en/latest/', None),
'tutorials': ('https://docs.pylonsproject.org/projects/pyramid-tutorials/en/latest/', None),
'tutorials': ('https://docs.pylonsproject.org/projects/pyramid_tutorials/en/latest/', None),
'venusian': ('https://docs.pylonsproject.org/projects/venusian/en/latest/', None),
'webtest': ('https://docs.pylonsproject.org/projects/webtest/en/latest/', None),
'webob': ('https://docs.pylonsproject.org/projects/webob/en/latest/', None),
'zcml': (
'https://docs.pylonsproject.org/projects/pyramid-zcml/en/latest/', None),
'https://docs.pylonsproject.org/projects/pyramid_zcml/en/latest/', None),
}


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -22,7 +22,7 @@ def readfile(name):
README = readfile('README.rst')
CHANGES = readfile('CHANGES.rst')

VERSION = '2.0.1'
VERSION = '2.0.2'

install_requires = [
'hupper >= 1.5', # ignore_files support
Expand Down

0 comments on commit d1cbbcf

Please sign in to comment.