guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit ab39435fe8839d0f07044005908c38b8945a8dbe
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Oct 31 21:05:54 2025 +0000

    gnu: python-ml-collections: Update to 1.1.0.
    
    * gnu/packages/machine-learning.scm (python-ml-collections): Update to 
1.1.0.
    [native-inputs]: Remove python-pylint and python-pytest-xdist.
    [propagated-inputs]: Remove python-six.
    
    Change-Id: Id6e1f5ffaae45c846073b4237d70ba5ac07664b3
---
 gnu/packages/machine-learning.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/machine-learning.scm 
b/gnu/packages/machine-learning.scm
index 4dcd0334f0..8eec0b6f84 100644
--- a/gnu/packages/machine-learning.scm
+++ b/gnu/packages/machine-learning.scm
@@ -513,25 +513,25 @@ transforms.")
 (define-public python-ml-collections
   (package
     (name "python-ml-collections")
-    (version "1.0.0")
+    (version "1.1.0")
     (source
      (origin
        (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/google/ml_collections";)
-             (commit (string-append "v" version))))
+              (url "https://github.com/google/ml_collections";)
+              (commit (string-append "v" version))))
        (sha256
-        (base32 "1f3rwbgnnvgh2jgnkwxfjdw18yly41hlx9fy56h0x36zyy8p0j21"))))
+        (base32 "1lv7vs84v4zwyrqg2zdlkrx3x6w08j9lyz74m8vk55ysl4399pqv"))))
     (build-system pyproject-build-system)
     (arguments
      (list
       #:test-flags '(list "--pyargs" "ml_collections/config_dict/tests")))
+    (native-inputs
+     (list python-pytest
+           python-flit-core))
     (propagated-inputs
-     (list python-absl-py python-pyyaml python-six))
-    (native-inputs (list python-pylint
-                         python-pytest
-                         python-pytest-xdist
-                         python-flit-core))
+     (list python-absl-py
+           python-pyyaml))
     (home-page "https://github.com/google/ml_collections";)
     (synopsis "Python collections designed for Machine Learning usecases")
     (description

Reply via email to