File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -24,14 +24,15 @@ classifiers = [
2424 ' Programming Language :: Python :: 3.10' , # ubuntu2204
2525 ' Programming Language :: Python :: 3.11' , # MacOS
2626 ' Programming Language :: Python :: 3.12' , # MacOS
27+ ' Programming Language :: Python :: 3.13' , # MacOS
2728]
2829
2930dependencies = [
3031 ' pyyaml' ,
3132 ' requests' ,
3233 ' distro' ,
3334 ' jinja2' ,
34- ' boto3' ,
35+ ' boto3==1.23.10 ' ,
3536]
3637
3738[project .urls ]
Original file line number Diff line number Diff line change 22pyyaml
33distro
44jinja2
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 1919# Old setuptools versions (which pip2 uses) don't support range comparisons
2020# (like :python_version >= "3.6") in extras_require, so do this ourselves here.
2121if sys .version_info >= (3 , 6 ):
22- install_requires .append ('boto3' )
22+ install_requires .append ('boto3==1.23.10 ' )
2323
2424setup (
2525 name = 'alibuild' ,
You can’t perform that action at this time.
0 commit comments