Skip to content

Commit 2dfd661

Browse files
committed
Update hls-stan-plugin bounds
1 parent f82ae7a commit 2dfd661

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
name: Test hls-splice-plugin
160160
run: cabal test hls-splice-plugin --test-options="$TEST_OPTS" || cabal test hls-splice-plugin --test-options="$TEST_OPTS"
161161

162-
- if: matrix.test && matrix.ghc != '9.2' && !startsWith(matrix.ghc,'9.8')
162+
- if: matrix.test && matrix.ghc != '9.2'
163163
name: Test hls-stan-plugin
164164
run: cabal test hls-stan-plugin --test-options="$TEST_OPTS" || cabal test hls-stan-plugin --test-options="$TEST_OPTS"
165165

docs/support/plugin-support.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ For example, a plugin to provide a formatter which has itself been abandoned has
6262
| `hls-stylish-haskell-plugin` | 2 | 9.8 |
6363
| `hls-overloaded-record-dot-plugin` | 2 | 9.0 |
6464
| `hls-floskell-plugin` | 3 | 9.6, 9.8 |
65-
| `hls-stan-plugin` | 3 | 9.2.(4-8), 9.8 |
65+
| `hls-stan-plugin` | 3 | 9.2.(4-8) |
6666
| `hls-retrie-plugin` | 3 | 9.8 |
6767
| `hls-splice-plugin` | 3 | 9.8 |

haskell-language-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ common hlint
247247
cpp-options: -Dhls_hlint
248248

249249
common stan
250-
if flag(stan) && (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.8.0))
250+
if flag(stan) && (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.10.0))
251251
build-depends: hls-stan-plugin == 2.4.0.0
252252
cpp-options: -Dhls_stan
253253

plugins/hls-stan-plugin/hls-stan-plugin.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ flag pedantic
2626
manual: True
2727

2828
library
29-
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.8.0))
29+
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.10.0))
3030
buildable: True
3131
else
3232
buildable: False
@@ -59,7 +59,7 @@ library
5959
OverloadedStrings
6060

6161
test-suite test
62-
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.8.0))
62+
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.10.0))
6363
buildable: True
6464
else
6565
buildable: False

0 commit comments

Comments
 (0)