Skip to content

Commit 02da3b2

Browse files
committed
CircleCI: Fix wheelhouse build failure on ubuntu focal
1 parent 7af38b6 commit 02da3b2

File tree

11 files changed

+16
-0
lines changed

11 files changed

+16
-0
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ RandomWords
99
amqp==5.3.1
1010
apscheduler==3.11.0
1111
argcomplete==3.5.2
12+
backports.zoneinfo[tzdata]; python_version<"3.9"
1213
bcrypt==4.2.1
1314
cffi==1.17.1
1415
chardet==5.2.0

st2actions/in-requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ logshipper@ git+https://github.com/StackStorm/logshipper.git@stackstorm_patched
2121
virtualenv
2222
# needed by requests
2323
chardet
24+
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
25+
backports.zoneinfo[tzdata]; python_version<"3.9"

st2actions/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# in-requirements.txt for that component and then run 'make requirements' to
77
# update the component requirements.txt
88
apscheduler==3.11.0
9+
backports.zoneinfo[tzdata]; python_version<"3.9"
910
chardet==5.2.0
1011
eventlet==0.38.2
1112
gitpython==3.1.43

st2api/in-requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ pymongo
1111
six
1212
gunicorn
1313
simplejson
14+
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
15+
backports.zoneinfo[tzdata]; python_version<"3.9"

st2api/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# If you want to update depdencies for a single component, modify the
66
# in-requirements.txt for that component and then run 'make requirements' to
77
# update the component requirements.txt
8+
backports.zoneinfo[tzdata]; python_version<"3.9"
89
eventlet==0.38.2
910
gunicorn==23.0.0
1011
jsonschema==3.2.0

st2common/in-requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,5 @@ gitdb
5151
lockfile
5252
# needed by requests
5353
chardet
54+
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
55+
backports.zoneinfo[tzdata]; python_version<"3.9"

st2common/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# update the component requirements.txt
88
amqp==5.3.1
99
apscheduler==3.11.0
10+
backports.zoneinfo[tzdata]; python_version<"3.9"
1011
cffi==1.17.1
1112
chardet==5.2.0
1213
ciso8601

st2reactor/in-requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ jsonschema
77
kombu
88
oslo.config
99
six
10+
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
11+
backports.zoneinfo[tzdata]; python_version<"3.9"

st2reactor/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# in-requirements.txt for that component and then run 'make requirements' to
77
# update the component requirements.txt
88
apscheduler==3.11.0
9+
backports.zoneinfo[tzdata]; python_version<"3.9"
910
eventlet==0.38.2
1011
jsonpath-rw==1.4.0
1112
jsonschema==3.2.0

st2stream/in-requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ pyparsing
1010
pymongo
1111
six
1212
gunicorn
13+
# needed by kombu (dh_virtualenv on ubuntu focal is failing to put tzdata in the wheelhouse)
14+
backports.zoneinfo[tzdata]; python_version<"3.9"

st2stream/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# If you want to update depdencies for a single component, modify the
66
# in-requirements.txt for that component and then run 'make requirements' to
77
# update the component requirements.txt
8+
backports.zoneinfo[tzdata]; python_version<"3.9"
89
eventlet==0.38.2
910
gunicorn==23.0.0
1011
jsonschema==3.2.0

0 commit comments

Comments
 (0)