update packages

This commit is contained in:
2025-06-22 17:08:08 +02:00
parent 54e5633369
commit 16a0a6db93
558 changed files with 68349 additions and 26568 deletions

View File

@@ -1,18 +1,14 @@
(define-package "anaconda-mode" "20250310.1512" "Code navigation, documentation lookup and completion for Python"
'((emacs "25.1")
;; -*- no-byte-compile: t; lexical-binding: nil -*-
(define-package "anaconda-mode" "20250430.227"
"Code navigation, documentation lookup and completion for Python."
'((emacs "25.1")
(pythonic "0.1.0")
(dash "2.6.0")
(s "1.9")
(f "0.16.2"))
:commit "28b3e0088ac7113390aa006bf277c8aa14e561a2" :authors
'(("Artem Malyshev" . "proofit404@gmail.com"))
:maintainers
'(("Artem Malyshev" . "proofit404@gmail.com"))
:maintainer
'("Artem Malyshev" . "proofit404@gmail.com")
:keywords
'("convenience" "anaconda")
:url "https://github.com/proofit404/anaconda-mode")
;; Local Variables:
;; no-byte-compile: t
;; End:
(dash "2.6.0")
(s "1.9")
(f "0.16.2"))
:url "https://github.com/proofit404/anaconda-mode"
:commit "ee1562c6b443be9208910c700e229824b2f1af7a"
:revdesc "ee1562c6b443"
:keywords '("convenience" "anaconda")
:authors '(("Artem Malyshev" . "proofit404@gmail.com"))
:maintainers '(("Artem Malyshev" . "proofit404@gmail.com")))

View File

@@ -4,7 +4,8 @@
;; Author: Artem Malyshev <proofit404@gmail.com>
;; URL: https://github.com/proofit404/anaconda-mode
;; Version: 0.1.16
;; Package-Version: 20250430.227
;; Package-Revision: ee1562c6b443
;; Package-Requires: ((emacs "25.1") (pythonic "0.1.0") (dash "2.6.0") (s "1.9") (f "0.16.2"))
;; Keywords: convenience anaconda

View File

@@ -77,7 +77,8 @@ def install_deps_pip():
import venv
temp_dir = pathlib.Path(tempfile.mkdtemp())
venv.create(temp_dir, with_pip=True)
cmd = [temp_dir / 'bin' / 'pip', 'install', '--target', server_directory]
binname = 'Scripts' if sys.platform == 'win32' else 'bin'
cmd = [temp_dir / binname / 'pip', 'install', '--target', server_directory]
cmd.extend(missing_dependencies)
try:
subprocess.check_call(cmd)