Skip to content

Commit

Permalink
feat: Drop support for Emacs below 29
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Jan 31, 2025
1 parent 17bd129 commit 58bf20e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version:
- 26.3
- 27.2
- 28.2
- 29.4
experimental: [false]
include:
Expand All @@ -35,11 +32,6 @@ jobs:
- os: windows-latest
emacs-version: snapshot
experimental: true
exclude:
- os: macos-latest
emacs-version: 26.3
- os: macos-latest
emacs-version: 27.2

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 6 additions & 1 deletion Eask
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,13 @@
(source 'melpa)
(source 'jcs-elpa)

(depends-on "emacs" "24.3")
(depends-on "emacs" "29.1")
(depends-on "eglot")
(depends-on "f")

(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432

(add-hook 'eask-before-compile-hook
(lambda ()
;;(setq byte-compile-error-on-warn t)
(setq byte-compile-docstring-max-column 1000)))
4 changes: 2 additions & 2 deletions eglot-ltex-plus.el
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
;; Author: Shen, Jen-Chieh <[email protected]>
;; URL: https://github.com/emacs-languagetool/eglot-ltex-plus
;; Version: 0.2.0
;; Package-Requires: ((emacs "24.3") (eglot "1.4") (f "0.20.0"))
;; Package-Requires: ((emacs "29.1") (eglot "1.4") (f "0.20.0"))
;; Keywords: convenience eglot languagetool checker

;; This file is NOT part of GNU Emacs.
Expand Down Expand Up @@ -63,7 +63,7 @@ https://github.com/ltex-plus/ltex-ls-plus"
(rst-mode :language-id "restructuredtext")
(text-mode :language-id "plaintext"))
"List of major mode that work with LanguageTool."
:type 'list
:type '(list symbol)
:group 'eglot-ltex)

(defcustom eglot-ltex-plus-server-path ""
Expand Down

0 comments on commit 58bf20e

Please sign in to comment.