Skip to content

Commit

Permalink
Remove frozen botocore version requirements from aio libs
Browse files Browse the repository at this point in the history
  • Loading branch information
vemel committed Nov 27, 2024
1 parent f350e41 commit 79f607a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ setup(
"{{ package.data.get_service_pypi_name(service_name) }}",
{% endfor -%}
],
"{{ package.library_name }}": ["{{ package.library_name }}=={{ package.library_version }}", "botocore=={{ package.botocore_version }}"],
"{{ package.library_name }}": ["{{ package.library_name }}=={{ package.library_version }}"],
{% for service_name in package.service_names -%}
"{{ service_name.extras_name }}": ["{{ package.data.get_service_pypi_name(service_name) }}"],
{% endfor -%}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ setup(
"typing-extensions>=4.1.0; python_version<\"3.12\"",
],
extras_require={
"{{ package.library_name }}": ["{{ package.library_name }}=={{ package.library_version }}", "botocore=={{ package.botocore_version }}"],
"{{ package.library_name }}": ["{{ package.library_name }}=={{ package.library_version }}"],
},
zip_safe=False,
)
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ setup(
"{{ package.data.get_service_pypi_name(service_name) }}>={{ package.min_library_version }}, <{{ package.max_library_version }}",
{% endfor -%}
],
"{{ package.library_name }}": ["{{ package.library_name }}=={{ package.library_version }}", "botocore=={{ package.botocore_version }}"],
"{{ package.library_name }}": ["{{ package.library_name }}=={{ package.library_version }}"],
{% for service_name in package.service_names -%}
"{{ service_name.extras_name }}": ["{{ package.data.get_service_pypi_name(service_name) }}>={{ package.min_library_version }}, <{{ package.max_library_version }}"],
{% endfor -%}
Expand Down

0 comments on commit 79f607a

Please sign in to comment.