Skip to content

Commit

Permalink
Drop support for Emacs 25
Browse files Browse the repository at this point in the history
Due to transient dropping Emacs 25:
magit/transient@74b0d74
  • Loading branch information
amake committed Nov 4, 2023
1 parent 46b52a9 commit e70bdc8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
fail-fast: false
matrix:
emacs_version:
- 25.3
- 26.3
- 27.2
- 28.1
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies := transient
dev_dependencies := package-lint
all_deps := $(dependencies) $(dev_dependencies)

test_versions := 25 26 27 28 29
test_versions := 26 27 28 29

.PHONY: test
test: ## Compile and run unit tests
Expand Down
2 changes: 1 addition & 1 deletion macports-core.el
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ If PORT not supplied, choose interactively."
(interactive (list
(oref transient-current-prefix scope)
(transient-args transient-current-command)))
(let* ((all-clean-args (mapcar #'cl-caddr (substring macports-core--clean-flags-infix 1)))
(let* ((all-clean-args (mapcar #'caddr (substring macports-core--clean-flags-infix 1)))
(clean-args (seq-filter (lambda (e) (member e args)) all-clean-args))
(other-args (seq-filter (lambda (e) (not (member e clean-args))) args)))
(macports-core--exec
Expand Down
2 changes: 1 addition & 1 deletion macports.el
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
;; Author: Aaron Madlon-Kay
;; Version: 0.1.0
;; URL: https://github.com/amake/macports.el
;; Package-Requires: ((emacs "25.1") (transient "0.1.0"))
;; Package-Requires: ((emacs "26.1") (transient "0.1.0"))
;; Keywords: convenience

;; This file is not part of GNU Emacs.
Expand Down

0 comments on commit e70bdc8

Please sign in to comment.