Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ jobs:
- { cabal: "3.14", os: windows-latest, ghc: "9.10.2" }
- { cabal: "3.14", os: windows-latest, ghc: "9.12.2" }
# MacOS
# Fails with linker errors
# > ld: warning: -single_module is obsolete
# > <command line>: can't load framework: Security (not found)
# - { cabal: "3.14", os: macOS-13, ghc: "8.6.5" }
# - { cabal: "3.14", os: macOS-13, ghc: "8.8.4" }
- { cabal: "3.14", os: macOS-13, ghc: "8.10.7" }
- { cabal: "3.14", os: macOS-13, ghc: "9.0.2" }
Comment on lines -43 to -44
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Instead of dropping them we should be able to switch to macOS-15-intel

Suggested change
- { cabal: "3.14", os: macOS-13, ghc: "8.10.7" }
- { cabal: "3.14", os: macOS-13, ghc: "9.0.2" }
- { cabal: "3.14", os: macOS-15-intel, ghc: "8.10.7" }
- { cabal: "3.14", os: macOS-15-intel, ghc: "9.0.2" }

#
# Fails with:
# > <command line>: can't load framework: Security (not found)
# - { cabal: "3.14", os: macOS-15-intel, ghc: "8.8.4" }
- { cabal: "3.14", os: macOS-15-intel, ghc: "8.10.7" }
- { cabal: "3.14", os: macOS-15-intel, ghc: "9.0.2" }
- { cabal: "3.14", os: macOS-latest, ghc: "9.2.8" }
- { cabal: "3.14", os: macOS-latest, ghc: "9.4.8" }
- { cabal: "3.14", os: macOS-latest, ghc: "9.6.7" }
Expand All @@ -66,7 +65,7 @@ jobs:
name: Cache ~/.cabal/store
with:
path: ${{ steps.setup-haskell-cabal.outputs.cabal-store }}
key: ${{ runner.os }}-${{ matrix.ghc }}---CACHE_V3
key: ${{ runner.os }}-${{ matrix.ghc }}-CACHE_V4
# ----------------
- name: "Install PAPI"
run: |
Expand Down
17 changes: 8 additions & 9 deletions vector/vector.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,26 @@ Bug-Reports: https://github.com/haskell/vector/issues
Category: Data, Data Structures
Synopsis: Efficient Arrays
Description:
.
An efficient implementation of @Int@-indexed arrays (both mutable
and immutable), with a powerful loop optimisation framework .
.

It is structured as follows:
.

["Data.Vector"] Boxed vectors of arbitrary types.
.

["Data.Vector.Unboxed"] Unboxed vectors with an adaptive
representation based on data type families.
.

["Data.Vector.Storable"] Unboxed vectors of 'Storable' types.
.

["Data.Vector.Primitive"] Unboxed vectors of primitive types as
defined by the @primitive@ package. "Data.Vector.Unboxed" is more
flexible at no performance cost.
.

["Data.Vector.Generic"] Generic interface to the vector types.
.

There is also a (draft) tutorial on common uses of vector.
.

* <http://haskell.org/haskellwiki/Numeric_Haskell:_A_Vector_Tutorial>

Tested-With:
Expand Down
Loading