Skip to content
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

README: Note GHC 9.2.6-or-later requirement #1969

Merged
merged 2 commits into from
Nov 2, 2023
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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,6 @@ jobs:
- name: Install on MacOS
test: |
cd saw-remote-api/python/
poetry update
poetry install
poetry run mypy --install-types --non-interactive saw_client/ || true
poetry run mypy --install-types --non-interactive saw_client/
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ To build SAWScript and related utilities from source:
to install them: <https://www.haskell.org/ghcup/>. We recommend
Cabal 3.4 or newer, and GHC 8.10, 9.2, or 9.4.

(If you are using the GHC 9.2 series, make sure to use 9.2.6 or later
to avoid [this bug](https://gitlab.haskell.org/ghc/ghc/-/issues/22491).)

* Ensure that you have the C libraries and header files for
`terminfo`, which generally comes as part of `ncurses` on most
platforms. On Fedora, it is part of the `ncurses-compat-libs` package.
Expand Down
1 change: 0 additions & 1 deletion saw-remote-api/scripts/run_rpc_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ function run_test {
}

echo "Setting up python environment for remote server clients..."
poetry update
poetry install

echo "Typechecking code with mypy..."
Expand Down
1 change: 0 additions & 1 deletion saw-remote-api/scripts/test_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ sleep 5 # let the server catch its breath and be ready for requests


echo "Setting up python environment for remote server clients...";
poetry update;
poetry install;

export SAW_SERVER_URL="http://localhost:8080/";
Expand Down
Loading