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

pin typing-extensions<4.2 to fix st2client install #5638

Merged
merged 1 commit into from
May 4, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ Changed

* Bump black to v22.3.0 - This is used internally to reformat our python code. #5606

* Pin ``typing-extensions<4.2`` (used indirectly by st2client) to maintain python 3.6 support. #5638


3.6.0 - October 29, 2021
------------------------

Expand Down
2 changes: 2 additions & 0 deletions fixed-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ argparse==1.12.2
argcomplete==1.12.2
prettytable==2.1.0
importlib-metadata==3.10.1
# importlib-metadata requires typing-extensions but v4.2.0 requires py3.7+
typing-extensions<4.2
# NOTE: sseclient has various issues which sometimes hang the connection for a long time, etc.
sseclient-py==1.7
stevedore==1.30.1
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ sseclient-py==1.7
stevedore==1.30.1
tenacity>=3.2.1,<7.0.0
tooz==2.8.0
typing-extensions<4.2
udatetime==0.0.16
unittest2
webob==1.8.7
Expand Down
2 changes: 2 additions & 0 deletions st2client/in-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Remember to list implicit packages here, otherwise version won't be fixated!
importlib-metadata
# importlib-metadata requires typing-extensions
typing-extensions
argcomplete
prettytable
pytz
Expand Down
1 change: 1 addition & 0 deletions st2client/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ pyyaml==5.4.1
requests[security]==2.25.1
six==1.13.0
sseclient-py==1.7
typing-extensions<4.2