Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.
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
3 changes: 3 additions & 0 deletions contrib/opencensus-ext-flask/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

- Add support for Flask 2
([#1032](https://github.com/census-instrumentation/opencensus-python/pull/1032))

## 0.7.5
Released 2021-05-13

Expand Down
2 changes: 1 addition & 1 deletion contrib/opencensus-ext-flask/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
include_package_data=True,
long_description=open('README.rst').read(),
install_requires=[
'flask >= 0.12.3, < 2.0.0, != 1.1.3',
'flask >= 0.12.3, < 3.0.0, != 1.1.3',
'opencensus >= 0.9.dev0, < 1.0.0',
],
extras_require={},
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ deps =

commands =
py3{6,7,8,9}-unit: {[constants]unit-base-command}
py{27,34,35}-unit: {[constants]unit-base-command} --ignore=contrib/opencensus-ext-stackdriver
py{27,34,35}-unit: {[constants]unit-base-command} --ignore=contrib/opencensus-ext-stackdriver --ignore=contrib/opencensus-ext-flask

; TODO system tests
lint: isort --check-only --diff --recursive .
Expand Down