gnu: python: Temporarily make python 2 the default.
* gnu/packages/python.scm (python-2): Rename this to... * gnu/packages/python.scm (python): ...this, rename this to... * gnu/packages/python.scm (python-3): ...this. Reverts to version 2 as the default input for packages requiring Python.
This commit is contained in:
parent
93d44bd8de
commit
77c7f8f41b
|
@ -31,7 +31,7 @@
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module (guix build-system python))
|
#:use-module (guix build-system python))
|
||||||
|
|
||||||
(define-public python-2
|
(define-public python
|
||||||
(package
|
(package
|
||||||
(name "python")
|
(name "python")
|
||||||
(version "2.7.5")
|
(version "2.7.5")
|
||||||
|
@ -151,8 +151,8 @@ packages; exception-based error handling; and very high level dynamic
|
||||||
data types.")
|
data types.")
|
||||||
(license psfl)))
|
(license psfl)))
|
||||||
|
|
||||||
(define-public python
|
(define-public python-3
|
||||||
(package (inherit python-2)
|
(package (inherit python)
|
||||||
(version "3.3.2")
|
(version "3.3.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
|
Loading…
Reference in New Issue