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 boto3 #900

Merged
merged 5 commits into from
Jan 20, 2025
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@ classifiers = [
'Programming Language :: Python :: 3.10', # ubuntu2204
'Programming Language :: Python :: 3.11', # MacOS
'Programming Language :: Python :: 3.12', # MacOS
'Programming Language :: Python :: 3.13', # MacOS
]

dependencies = [
'pyyaml',
'requests',
'distro',
'jinja2',
'boto3',
'boto3==1.23.10',
]

[project.urls]
Expand Down
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ requests
pyyaml
distro
jinja2
boto3; python_version >= '3.6'
# https://github.com/boto/boto3/issues/4398
# This version is the last compatible with python 3.6.8
boto3==1.23.10; python_version >= '3.6'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Old setuptools versions (which pip2 uses) don't support range comparisons
# (like :python_version >= "3.6") in extras_require, so do this ourselves here.
if sys.version_info >= (3, 6):
install_requires.append('boto3')
install_requires.append('boto3==1.23.10')

Check warning on line 22 in setup.py

View check run for this annotation

Codecov / codecov/patch

setup.py#L22

Added line #L22 was not covered by tests

setup(
name='alibuild',
Expand Down
Loading