Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

setup: remove werkzeug pin #104

Merged
merged 3 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changes
=======

Version 1.2.0 (released 2024-12-12)

- fix: docs reference target not found
- setup: remove werkzeug pin

Version v1.1.1 (released 2024-11-05)

- setup: remove werkzeug pin
Expand Down
9 changes: 7 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Flask-IIIF
# Copyright (C) 2014-2020 CERN.
# Copyright (C) 2022 Graz University of Technology.
# Copyright (C) 2022-2024 Graz University of Technology.
#
# Flask-IIIF is free software; you can redistribute it and/or modify
# it under the terms of the Revised BSD License; see LICENSE file for
Expand Down Expand Up @@ -316,4 +316,9 @@
# Autodoc configuraton.
autoclass_content = "both"

nitpick_ignore = [("py:class", "type")]
nitpick_ignore = [
("py:class", "type"),
("py:class", "t.ClassVar"),
("py:class", "t.Optional"),
("py:class", "t.Collection"),
]
2 changes: 1 addition & 1 deletion flask_iiif/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def protect_api():
self.api_decorator_callback = callback


__version__ = "1.1.1"
__version__ = "1.2.0"

__all__ = (
"IIIF",
Expand Down
2 changes: 0 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ install_requires =
Flask-RESTful>=0.3.7
pillow>=7.0
six>=1.7.2
# remove after flask pin in pytest has been removed
werkzeug<3.1.0

[options.extras_require]
tests =
Expand Down