diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-28 22:58:53 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-29 00:20:31 +0000 |
| commit | 7d9250f65aa8285a3ae277f10a4bd0eb2beb13db (patch) | |
| tree | 4693b4a1be6bbc2be28948b1a87c9903c86b9416 /gnu | |
| parent | 677be5977e2380e777a67696d4f23d71bfc818ea (diff) | |
gnu: python-boto3: Update to 1.40.61.
* gnu/packages/python-xyz.scm (python-boto3): Update to 1.40.61.
[arguments] <test-flags>: Run up to 8 threads to improve stability in CI.
[native-inputs]: Remove python-wheel.
Change-Id: I024a49f7774643eb4e3813be22bad000515f598b
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4ce3ca34dc3..b113d7d7fcf 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -20384,29 +20384,29 @@ Amazon Web Services (AWS) API.") (define-public python-boto3 (package (name "python-boto3") - (version "1.35.59") + (version "1.40.61") (source (origin - (method git-fetch) ; no tests in PyPI release + (method git-fetch) (uri (git-reference - (url "https://github.com/boto/boto3") - (commit version))) + (url "https://github.com/boto/boto3") + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "10bdzdaw7qg2m5n5ivb2zzsdl7wgjmz05xyxajd4cmk629ick95m")))) + (base32 "0rjcs9grnrcak6w4l5plqcbwvknmg1k3q0xzg11kpp0sfiszbdph")))) (build-system pyproject-build-system) (arguments (list + ;; tests: 1415 passed, 17 skipped, 1 warning #:test-flags - #~(list "--numprocesses" (number->string (parallel-job-count)) + #~(list "--numprocesses" (number->string (min 8 (parallel-job-count))) ;; Integration tests are trying to connect to AWS. - "--ignore" "tests/integration"))) + "--ignore=tests/integration"))) (native-inputs (list python-mock python-pytest python-pytest-xdist - python-setuptools - python-wheel)) + python-setuptools)) (propagated-inputs (list python-botocore python-jmespath |
