gnu: Update references to python3.10 directory.

* gnu/packages/admin.scm (ansible)[native-search-paths]: Refer to python3.11
directory.
* gnu/packages/bioinformatics.scm (scvelo)[arguments]: Same.
* gnu/packages/ebook.scm (calibre)[arguments]: Same.
* gnu/packages/engineering.scm (cadabra2)[arguments]: Same.
* gnu/packages/gnuzilla.scm (make-l10n-package)[arguments]: Same.
* gnu/packages/machine-learning.scm (python-vosk)[arguments]: Same.
* gnu/packages/python-science.scm (python-pandas-2)[arguments]: Same.
* gnu/packages/version-control.scm (mercurial)[native-search-paths]: Same.
* gnu/packages/irc.scm (go-gopkg-in-irc-v3): Update comment.

Change-Id: If2ea1060b42b137474d5cfda6611df6e6fc85270
This commit is contained in:
Ricardo Wurmus 2025-01-23 10:48:05 +01:00 committed by Andreas Enge
parent af689c9765
commit dead8b3a52
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3
9 changed files with 9 additions and 9 deletions

View file

@ -3280,7 +3280,7 @@ provides the following commands:
;; variable in the tests/cpan.scm test.
(list (search-path-specification
(variable "GUIX_PYTHONPATH")
(files (list "lib/python3.10/site-packages")))))
(files (list "lib/python3.11/site-packages")))))
(home-page "https://www.ansible.com/")
(synopsis "Radically simple IT automation")
(description "Ansible aims to be a radically simple IT automation system.

View file

@ -24174,7 +24174,7 @@ aligner.")
;; /tmp/guix-build-*.
(with-directory-excursion
(string-append #$output
"/lib/python3.10/site-packages/scvelo/core/tests/")
"/lib/python3.11/site-packages/scvelo/core/tests/")
(apply invoke "pytest" "-v" test-flags))))))))
(propagated-inputs
(list python-anndata

View file

@ -249,7 +249,7 @@ tags = [\"WS_X11\"]")
(string-append "[tool.sip.project]
sip-include-dirs = [\""
#$(this-package-input "python-pyqt")
"/lib/python3.10/site-packages/PyQt5/bindings\"]")))
"/lib/python3.11/site-packages/PyQt5/bindings\"]")))
(substitute* "src/calibre/ebooks/pdf/pdftohtml.py"
(("PDFTOHTML = 'pdftohtml'")
(string-append "PDFTOHTML = \""

View file

@ -5342,7 +5342,7 @@ and mogan.")
(("'\" [+] python_path [+]")
(string-append "'\" + std::string(\""
(assoc-ref outputs "out")
"/lib/python3.10/site-packages"
"/lib/python3.11/site-packages"
"\") +")))))
(add-before 'check 'prepare-checks
(lambda _

View file

@ -1662,7 +1662,7 @@ their corresponding VERSION, SOURCE and LOCALES variables."
(setenv "MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE" "system")
(setenv "GUIX_PYTHONPATH"
(string-append (getcwd)
"/obj/_virtualenvs/build/lib/python3.10/site-packages"))
"/obj/_virtualenvs/build/lib/python3.11/site-packages"))
(setenv "BUILD_BACKENDS" "FasterMake,RecursiveMake")))
(replace 'build ;build and install data files
(lambda* (#:key outputs #:allow-other-keys)

View file

@ -919,7 +919,7 @@ parsers")
;; unmaintained clone of <https://github.com/ircdocs/parser-tests>
;; which is packed in Guix as python-irc-parser-tests. Tests data
;; (YAML files) are distributed as Python package and located in
;; <lib/python3.10/site-packages/parser_tests/data/>.
;; <lib/python3.11/site-packages/parser_tests/data/>.
(add-before 'check 'install-testcases-data
(lambda* (#:key import-path #:allow-other-keys)
(with-directory-excursion (string-append "src/" import-path)

View file

@ -6779,7 +6779,7 @@ simple speech recognition.")
"library_dirs=["
"'" #$vosk-api "/lib'"
"],\n\t"
"libraries=['vosk', 'python3.10'],\n\t"
"libraries=['vosk', 'python3.11'],\n\t"
"include_dirs=["
"'" #$vosk-api "/src'" "])")))
(substitute* "vosk/__init__.py"

View file

@ -1643,7 +1643,7 @@ doing practical, real world data analysis in Python.")
(lambda _
(copy-recursively
(string-append #$output
"/lib/python3.10/site-packages/pandas/_libs")
"/lib/python3.11/site-packages/pandas/_libs")
"pandas/_libs"))))))
(propagated-inputs
(list python-dateutil

View file

@ -2702,7 +2702,7 @@ execution of any hook written in any language before every commit.")
(native-search-paths
(list (search-path-specification
(variable "HGEXTENSIONPATH")
(files '("lib/python3.10/site-packages/hgext3rd")))))
(files '("lib/python3.11/site-packages/hgext3rd")))))
(home-page "https://www.mercurial-scm.org/")
(synopsis "Decentralized version control system")
(description