Skip to content

Allow time-1.15 #350

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ task:
# See https://github.com/anarazel/pg-vm-images/blob/main/packer/openbsd.pkrvars.hcl
image: family/pg-ci-openbsd-vanilla
platform: openbsd
install_script: pkg_add ghc cabal-install git autoconf-2.71
install_script: pkg_add ghc cabal-install git autoconf-2.71p0
script:
- export AUTOCONF_VERSION=2.71
- export CABAL_DIR=/tmp/.cabal
Expand Down
7 changes: 6 additions & 1 deletion unix.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ library
build-depends:
base >= 4.12.0.0 && < 4.23,
bytestring >= 0.9.2 && < 0.13,
time >= 1.9.1 && < 1.15
time >= 1.9.1 && < 1.16

if flag(os-string)
build-depends: filepath >= 1.5.0.0, os-string >= 2.0.0
Expand Down Expand Up @@ -187,6 +187,11 @@ test-suite unix-tests
build-depends: filepath >= 1.5.0.0, os-string >= 2.0.0
else
build-depends: filepath >= 1.4.100.0 && < 1.5.0.0

-- https://github.com/haskellari/splitmix/issues/101
if os(openbsd)
build-depends: splitmix < 0.1.3 || > 0.1.3.1

ghc-options: -Wall -with-rtsopts=-V0

test-suite FdReadBuf001
Expand Down
Loading