diff options
| author | Mike Taves <mwtoews@gmail.com> | 2021-11-26 13:23:30 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-26 13:23:30 +1300 |
| commit | f14e533fd788ac605972e3b6ad8e31c459f43c25 (patch) | |
| tree | 0fb6b4e29f74d89d5f191bc8ff24b17ebec7165f /.github | |
| parent | 3636c8f8e76be8bd9bf98810ead5ab1d77f6ecab (diff) | |
| download | PROJ-f14e533fd788ac605972e3b6ad8e31c459f43c25.tar.gz PROJ-f14e533fd788ac605972e3b6ad8e31c459f43c25.zip | |
DOC: rewrite parts of plot.py to use geojson instead of fiona (#2959)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/doc_build.yml | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/.github/workflows/doc_build.yml b/.github/workflows/doc_build.yml index 3d4e543d..85f93697 100644 --- a/.github/workflows/doc_build.yml +++ b/.github/workflows/doc_build.yml @@ -6,25 +6,18 @@ jobs: plots: name: Plots runs-on: ubuntu-latest - env: - PROJ_EXE: proj + defaults: + run: + shell: bash -l {0} steps: - name: Checkout uses: actions/checkout@v2 - uses: conda-incubator/setup-miniconda@v2 with: - channels: conda-forge - auto-update-conda: true - - name: Setup - shell: bash -l {0} - run: | - conda update -n base -c defaults conda - conda install descartes shapely geopandas matplotlib proj + environment-file: docs/plot/environment.yml - name: Plot - shell: bash -l {0} working-directory: ./docs/plot - run: | - ./plot.sh + run: ./plot.py plotdefs.json images/ - uses: actions/upload-artifact@v2 with: |
