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

MNT: use gdal 3.8.3 in environment-dev.yml #343

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
4 changes: 2 additions & 2 deletions docs/source/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,13 +157,13 @@ variables because the location of the GDAL binaries and headers cannot be
automatically determined.

After activating the `pyogrio-dev` environment the `CONDA_PREFIX` environment variable
will be available. Assuming GDAL 3.6.2 is installed, you will be able to set the
will be available. Assuming GDAL 3.8.3 is installed, you will be able to set the
necessary environment variables as follows:

```bash
set GDAL_INCLUDE_PATH=%CONDA_PREFIX%\Library\include
set GDAL_LIBRARY_PATH=%CONDA_PREFIX%\Library\lib
set GDAL_VERSION=3.6.2
set GDAL_VERSION=3.8.3
```

Now you should be able to run `python setup.py develop` to build the extensions in
Expand Down
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
dependencies:
- numpy
- geopandas-base
- libgdal==3.6.2
- libgdal==3.8.3
- pyarrow
- shapely>=2
# Specific for dev
Expand Down