We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 864a31a + fc85ae2 commit c3b18c7Copy full SHA for c3b18c7
.github/workflows/ci.yml
@@ -21,7 +21,11 @@ jobs:
21
22
- name: Install prerequisites
23
run: |
24
- brew install boost lua nlohmann-json opencv pandoc postgis potrace
+ # Workaround for github/brew problem. Python is already install
25
+ # on the Github action runner and then homebrew comes along...
26
+ # See also: https://github.com/Homebrew/homebrew-core/issues/173191
27
+ rm -f /usr/local/bin/2to3* /usr/local/bin/idle3* /usr/local/bin/pydoc3* /usr/local/bin/python3*
28
+ brew install boost lua nlohmann-json opencv pandoc postgis potrace python3
29
# --break-system-packages is needed on macOS 14
30
pip3 install --break-system-packages psycopg2 behave osmium
31
mkdir ~/postgres
0 commit comments