Skip to content

Commit 6473b8a

Browse files
fortaaCeleritasCelery
authored andcommitted
python: make it compatible with python 3.13
A trivial update of the jedi package. Bug: #439
1 parent b177c17 commit 6473b8a

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Anaconda mode provides the following features
2222

2323
## Supported Python Versions
2424

25-
2.7, 3.4 - 3.12
25+
2.7, 3.4 - 3.13
2626

2727
## Installation
2828

anaconda-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
(declare-function posframe-show "posframe")
9595

9696
;;; Server.
97-
(defvar anaconda-mode-server-version "0.1.16"
97+
(defvar anaconda-mode-server-version "0.1.17"
9898
"Server version needed to run `anaconda-mode'.")
9999

100100
(defvar anaconda-mode-process-name "anaconda-mode"

anaconda-mode.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
from __future__ import print_function
32
import sys
43
import os
@@ -25,7 +24,7 @@
2524
jedi_dep = ('jedi', '0.17.2')
2625
server_directory += '-py2'
2726
else:
28-
jedi_dep = ('jedi', '0.19.1')
27+
jedi_dep = ('jedi', '0.19.2')
2928
server_directory += '-py3'
3029
service_factory_dep = ('service_factory', '0.1.6')
3130

0 commit comments

Comments
 (0)