Skip to content

Commit

Permalink
CircleCI: Fix wheelhouse build failure on ubuntu focal
Browse files Browse the repository at this point in the history
  • Loading branch information
cognifloyd committed Dec 19, 2024
1 parent 7af38b6 commit 02da3b2
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ RandomWords
amqp==5.3.1
apscheduler==3.11.0
argcomplete==3.5.2
backports.zoneinfo[tzdata]; python_version<"3.9"
bcrypt==4.2.1
cffi==1.17.1
chardet==5.2.0
Expand Down
2 changes: 2 additions & 0 deletions st2actions/in-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,5 @@ logshipper@ git+https://github.com/StackStorm/logshipper.git@stackstorm_patched
virtualenv
# needed by requests
chardet
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
backports.zoneinfo[tzdata]; python_version<"3.9"
1 change: 1 addition & 0 deletions st2actions/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# in-requirements.txt for that component and then run 'make requirements' to
# update the component requirements.txt
apscheduler==3.11.0
backports.zoneinfo[tzdata]; python_version<"3.9"
chardet==5.2.0
eventlet==0.38.2
gitpython==3.1.43
Expand Down
2 changes: 2 additions & 0 deletions st2api/in-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,5 @@ pymongo
six
gunicorn
simplejson
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
backports.zoneinfo[tzdata]; python_version<"3.9"
1 change: 1 addition & 0 deletions st2api/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# If you want to update depdencies for a single component, modify the
# in-requirements.txt for that component and then run 'make requirements' to
# update the component requirements.txt
backports.zoneinfo[tzdata]; python_version<"3.9"
eventlet==0.38.2
gunicorn==23.0.0
jsonschema==3.2.0
Expand Down
2 changes: 2 additions & 0 deletions st2common/in-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,3 +51,5 @@ gitdb
lockfile
# needed by requests
chardet
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
backports.zoneinfo[tzdata]; python_version<"3.9"
1 change: 1 addition & 0 deletions st2common/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
# update the component requirements.txt
amqp==5.3.1
apscheduler==3.11.0
backports.zoneinfo[tzdata]; python_version<"3.9"
cffi==1.17.1
chardet==5.2.0
ciso8601
Expand Down
2 changes: 2 additions & 0 deletions st2reactor/in-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ jsonschema
kombu
oslo.config
six
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
backports.zoneinfo[tzdata]; python_version<"3.9"
1 change: 1 addition & 0 deletions st2reactor/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# in-requirements.txt for that component and then run 'make requirements' to
# update the component requirements.txt
apscheduler==3.11.0
backports.zoneinfo[tzdata]; python_version<"3.9"
eventlet==0.38.2
jsonpath-rw==1.4.0
jsonschema==3.2.0
Expand Down
2 changes: 2 additions & 0 deletions st2stream/in-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ pyparsing
pymongo
six
gunicorn
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
backports.zoneinfo[tzdata]; python_version<"3.9"
1 change: 1 addition & 0 deletions st2stream/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# If you want to update depdencies for a single component, modify the
# in-requirements.txt for that component and then run 'make requirements' to
# update the component requirements.txt
backports.zoneinfo[tzdata]; python_version<"3.9"
eventlet==0.38.2
gunicorn==23.0.0
jsonschema==3.2.0
Expand Down

0 comments on commit 02da3b2

Please sign in to comment.