File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,15 @@ classifiers = [
24
24
' Programming Language :: Python :: 3.10' , # ubuntu2204
25
25
' Programming Language :: Python :: 3.11' , # MacOS
26
26
' Programming Language :: Python :: 3.12' , # MacOS
27
+ ' Programming Language :: Python :: 3.13' , # MacOS
27
28
]
28
29
29
30
dependencies = [
30
31
' pyyaml' ,
31
32
' requests' ,
32
33
' distro' ,
33
34
' jinja2' ,
34
- ' boto3' ,
35
+ ' boto3==1.23.10 ' ,
35
36
]
36
37
37
38
[project .urls ]
Original file line number Diff line number Diff line change 2
2
pyyaml
3
3
distro
4
4
jinja2
5
- boto3 ; python_version >= '3.6'
5
+ # https://github.com/boto/boto3/issues/4398
6
+ # This version is the last compatible with python 3.6.8
7
+ boto3 == 1.23.10 ; python_version >= '3.6'
Original file line number Diff line number Diff line change 19
19
# Old setuptools versions (which pip2 uses) don't support range comparisons
20
20
# (like :python_version >= "3.6") in extras_require, so do this ourselves here.
21
21
if sys .version_info >= (3 , 6 ):
22
- install_requires .append ('boto3' )
22
+ install_requires .append ('boto3==1.23.10 ' )
23
23
24
24
setup (
25
25
name = 'alibuild' ,
You can’t perform that action at this time.
0 commit comments