Skip to content

Commit

Permalink
Merge pull request #51 from brittonsmith/fix
Browse files Browse the repository at this point in the history
Change from apt-get to apt.
  • Loading branch information
brittonsmith committed Aug 27, 2021
2 parents f967f8e + 5fea7b6 commit 01fe6b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .circleci/config.yml
Expand Up @@ -22,8 +22,9 @@ commands:
name: "Install yt_georaster and dependencies."
no_output_timeout: 20m
command: |
sudo apt-get update
sudo apt-get install -y gdal-bin libgdal-dev
sudo apt update
sudo apt upgrade
sudo apt install -y gdal-bin libgdal-dev
export CPLUS_INCLUDE_PATH=/usr/include/gdal
export C_INCLUDE_PATH=/usr/include/gdal
if [ ! -d $HOME/venv ]; then
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -88,7 +88,7 @@ def run(self):
"rasterio",
"scipy",
"shapely",
"yt",
"yt>=4.0.1",
],
classifiers=[
"Development Status :: 4 - Beta",
Expand Down

0 comments on commit 01fe6b3

Please sign in to comment.