Skip to content

Commit

Permalink
Add support for Python 3.11 and 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
kschwab committed Nov 23, 2023
1 parent 6e64170 commit 92a6295
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Anaconda mode provides the following features

## Supported Python Versions

2.7, 3.4 - 3.10
2.7, 3.4 - 3.12

## Installation

Expand Down
4 changes: 2 additions & 2 deletions anaconda-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

;; Author: Artem Malyshev <[email protected]>
;; URL: https://github.com/proofit404/anaconda-mode
;; Version: 0.1.15
;; Version: 0.1.16
;; Package-Requires: ((emacs "25.1") (pythonic "0.1.0") (dash "2.6.0") (s "1.9") (f "0.16.2"))
;; Keywords: convenience anaconda

Expand Down Expand Up @@ -94,7 +94,7 @@
(declare-function posframe-show "posframe")

;;; Server.
(defvar anaconda-mode-server-version "0.1.15"
(defvar anaconda-mode-server-version "0.1.16"
"Server version needed to run `anaconda-mode'.")

(defvar anaconda-mode-process-name "anaconda-mode"
Expand Down
2 changes: 1 addition & 1 deletion anaconda-mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
jedi_dep = ('jedi', '0.17.2')
server_directory += '-py2'
else:
jedi_dep = ('jedi', '0.18.1')
jedi_dep = ('jedi', '0.19.1')
server_directory += '-py3'
service_factory_dep = ('service_factory', '0.1.6')

Expand Down

0 comments on commit 92a6295

Please sign in to comment.