2021-12-17 21:51:26 -05:00
|
|
|
Keep awscrt pinned. This is the only user, and presumably
|
|
|
|
|
Amazon has a good reason for not bumping the version yet.
|
|
|
|
|
|
2025-06-22 12:34:22 -04:00
|
|
|
diff -ru aws-cli-2.27.40-orig/pyproject.toml aws-cli-2.27.40/pyproject.toml
|
|
|
|
|
--- aws-cli-2.27.40-orig/pyproject.toml 2025-06-22 00:00:00.000000000 +0000
|
|
|
|
|
+++ aws-cli-2.27.40/pyproject.toml 2025-06-22 00:00:00.000000000 +0000
|
2025-02-16 21:14:06 -05:00
|
|
|
@@ -1,6 +1,6 @@
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = [
|
|
|
|
|
-"flit_core>=3.7.1,<3.9.1",
|
|
|
|
|
+"flit_core",
|
|
|
|
|
]
|
|
|
|
|
build-backend = "pep517"
|
|
|
|
|
backend-path = ["backends"]
|
2026-01-31 11:25:45 -05:00
|
|
|
@@ -30,21 +30,21 @@
|
2025-05-04 16:32:53 -04:00
|
|
|
"Programming Language :: Python :: 3.13",
|
2022-10-03 10:22:45 -04:00
|
|
|
]
|
|
|
|
|
dependencies = [
|
2023-01-23 22:26:27 -05:00
|
|
|
- "colorama>=0.2.5,<0.4.7",
|
2022-12-11 17:22:15 -05:00
|
|
|
- "docutils>=0.10,<0.20",
|
2022-10-03 10:22:45 -04:00
|
|
|
- "ruamel.yaml>=0.15.0,<=0.17.21",
|
2023-03-03 11:07:37 -05:00
|
|
|
+ "colorama",
|
|
|
|
|
+ "docutils",
|
|
|
|
|
+ "ruamel.yaml",
|
|
|
|
|
# ruamel.yaml only requires ruamel.yaml.clib for Python versions
|
|
|
|
|
# less than or equal to Python 3.10. In order to ensure we have
|
|
|
|
|
# a consistent dependency closure across all Python versions,
|
|
|
|
|
# we explicitly include ruamel.yaml.clib as a dependency.
|
2025-05-04 16:32:53 -04:00
|
|
|
- "ruamel.yaml.clib>=0.2.0,<=0.2.12",
|
2025-07-26 18:07:21 -04:00
|
|
|
- "prompt-toolkit>=3.0.24,<3.0.52",
|
2023-04-05 18:30:59 -04:00
|
|
|
- "distro>=1.5.0,<1.9.0",
|
2026-01-31 11:25:45 -05:00
|
|
|
- "awscrt==0.31.1",
|
2024-09-18 22:12:18 -04:00
|
|
|
- "python-dateutil>=2.1,<=2.9.0",
|
2022-10-03 10:22:45 -04:00
|
|
|
- "jmespath>=0.7.1,<1.1.0",
|
2026-01-31 11:25:45 -05:00
|
|
|
- "urllib3>=1.25.4,<=2.6.3",
|
|
|
|
|
- "wcwidth<0.3.0",
|
2023-03-03 11:07:37 -05:00
|
|
|
+ "ruamel.yaml.clib",
|
2022-10-03 10:22:45 -04:00
|
|
|
+ "prompt-toolkit",
|
|
|
|
|
+ "distro",
|
2022-12-13 10:10:39 -05:00
|
|
|
+ "awscrt",
|
2022-10-03 10:22:45 -04:00
|
|
|
+ "python-dateutil",
|
|
|
|
|
+ "jmespath",
|
|
|
|
|
+ "urllib3",
|
2026-01-31 11:25:45 -05:00
|
|
|
+ "wcwidth",
|
2022-10-03 10:22:45 -04:00
|
|
|
]
|
|
|
|
|
dynamic = ["version"]
|
2021-12-17 21:51:26 -05:00
|
|
|
|