@@ 513,25 513,28 @@ 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")))
+ ;; tests: 373 passed, 1 skipped, 81 warnings
+ #:test-flags
+ #~(list "--ignore=docs/"
+ "--ignore=ml_collections/config_dict/examples/examples_test.py")))
+ (native-inputs
+ (list python-flit-core
+ python-pytest))
(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