Skip to content

Commit

Permalink
Merge pull request #229 from emacs-lsp/feat/drop-27
Browse files Browse the repository at this point in the history
feat: Drop Emacs 27.x
  • Loading branch information
jcs090218 authored Mar 1, 2025
2 parents e8e525a + b7ebb46 commit 2170823
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
emacs-version:
- 27.2
- 28.2
- 29.4
- 30.1
Expand All @@ -32,12 +31,9 @@ jobs:
- os: windows-latest
emacs-version: snapshot
experimental: true
exclude:
- os: macos-latest
emacs-version: 27.2

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: jcs090218/setup-emacs@master
with:
Expand Down
6 changes: 3 additions & 3 deletions Eask
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

(script "test" "echo \"Error: no test specified\" && exit 1")

(source "gnu")
(source "melpa")
(source 'gnu)
(source 'melpa)

(depends-on "emacs" "27.1")
(depends-on "emacs" "28.1")
(depends-on "lsp-treemacs")
(depends-on "lsp-mode")
(depends-on "dap-mode")
Expand Down
2 changes: 1 addition & 1 deletion lsp-dart.el
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
;; Copyright (C) 2022 Eric Dallo

;; Version: 1.24.3
;; Package-Requires: ((emacs "27.1") (lsp-treemacs "0.3") (lsp-mode "7.0.1") (dap-mode "0.6") (f "0.20.0") (dash "2.14.1") (dart-mode "1.0.5") (jsonrpc "1.0.15") (ht "2.2"))
;; Package-Requires: ((emacs "28.1") (lsp-treemacs "0.3") (lsp-mode "7.0.1") (dap-mode "0.6") (f "0.20.0") (dash "2.14.1") (dart-mode "1.0.5") (jsonrpc "1.0.15") (ht "2.2"))

;; Keywords: languages, extensions
;; URL: https://emacs-lsp.github.io/lsp-dart
Expand Down
2 changes: 1 addition & 1 deletion test/lsp-dart-utils-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
(should (equal (lsp-dart-get-project-entrypoint) (f-expand "lib/main.dart")))
(f-delete "lib" t)))

(ert-deftest lsp-dart-get-project-entrypoint--lib-test ()
(ert-deftest lsp-dart-get-project-entrypoint--bin-test ()
(lsp-dart-test-from-dart-project
(f-mkdir "bin")
(f-touch "bin/main.dart")
Expand Down

0 comments on commit 2170823

Please sign in to comment.