Skip to content
Snippets Groups Projects
Commit 9f6509c6 authored by Mark H Weaver's avatar Mark H Weaver
Browse files

python-build-system: Fix 'get-python-version'.

* guix/build/python-build-system.scm (get-python-version): Rewrite to handle
  multiple-digit version number components.
parent 494e9b91
No related branches found
No related tags found
No related merge requests found
...@@ -55,7 +55,10 @@ (define* (check #:key tests? test-target #:allow-other-keys) ...@@ -55,7 +55,10 @@ (define* (check #:key tests? test-target #:allow-other-keys)
#t)) #t))
(define (get-python-version python) (define (get-python-version python)
(string-take (string-take-right python 5) 3)) (let* ((version (last (string-split python #\-)))
(components (string-split version #\.))
(major+minor (take components 2)))
(string-join major+minor ".")))
(define* (install #:key outputs inputs (configure-flags '()) (define* (install #:key outputs inputs (configure-flags '())
#:allow-other-keys) #:allow-other-keys)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment