diff options
| author | Lex Neva <github.com@lexneva.name> | 2020-01-11 22:26:27 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2020-01-29 01:29:49 -0500 |
| commit | b883c95eb993fd6397d064c2be424bdf99135dfd (patch) | |
| tree | 6a8dc34274a637580e440950985a3c8dbd6ca2f5 /.github/workflows | |
| parent | 3ca9babd85b031d8f842e1b83064189695e5c55d (diff) | |
use ubuntu 16.04 instead
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 485b9071..ad550285 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,7 @@ on: - "v*" jobs: linux: - runs-on: ubuntu-latest + runs-on: ubuntu-16.04 steps: - uses: actions/checkout@v1 with: @@ -29,13 +29,13 @@ jobs: sudo apt-get install libgeos-dev # for wxPython - sudo apt-get install glib-networking libsdl1.2-dev + sudo apt-get install glib-networking libsdl2-dev # for PyGObject sudo apt install libgirepository1.0-dev # wxPython doen't publish linux wheels in pypi - wget -q https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.04/wxPython-4.0.7-cp27-cp27mu-linux_x86_64.whl + wget -q https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04/wxPython-4.0.7-cp27-cp27mu-linux_x86_64.whl pip install wxPython*.whl # We can't use the shapely wheel because it includes the geos |
