Files

47 lines
1.4 KiB
Diff
Raw Permalink Normal View History

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 = [
2026-04-02 21:31:28 -04:00
-"flit_core>=3.7.1,<3.12.1",
2025-02-16 21:14:06 -05:00
+"flit_core",
]
build-backend = "pep517"
backend-path = ["backends"]
2026-04-02 21:31:28 -04:00
@@ -31,21 +31,21 @@
"Programming Language :: Python :: 3.14",
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",
2026-04-02 21:31:28 -04:00
- "ruamel_yaml>=0.15.0,<=0.19.1",
2023-03-03 11:07:37 -05:00
+ "colorama",
+ "docutils",
2026-04-02 21:31:28 -04:00
+ "ruamel_yaml",
# ruamel_yaml only requires ruamel_yaml_clib for Python versions
2023-03-03 11:07:37 -05:00
# less than or equal to Python 3.10. In order to ensure we have
# a consistent dependency closure across all Python versions,
2026-04-02 21:31:28 -04:00
# we explicitly include ruamel_yaml_clib as a dependency.
- "ruamel_yaml_clib>=0.2.0,<=0.2.15",
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-05-02 11:05:18 -04:00
- "awscrt==0.32.2",
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",
2026-04-02 21:31:28 -04: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"]