-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: Fixed some errors related to package upgrades
- CRS now needs to check for "towgs84" - Handling netcdf4-python's new datetime objects - Fix quoting for select by SQL
- Loading branch information
Showing
15 changed files
with
102 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,19 +4,19 @@ MAINTAINER [email protected] | |
|
||
RUN apt-get -y update | ||
RUN apt-get -y upgrade | ||
RUN apt-get -y install build-essential \ | ||
gfortran | ||
#RUN apt-get -y install build-essential \ | ||
# gfortran | ||
RUN apt-get clean | ||
|
||
RUN conda update -y --all | ||
RUN conda install -y -c nesii ocgis esmpy nose | ||
RUN conda install -y -c conda-forge -c nesii ocgis=1.3.2 esmpy=7.0.0 icclim=4.2.5 nose | ||
|
||
RUN conda remove -y ocgis | ||
RUN git clone -b next --depth=1 https://github.com/NCPP/ocgis.git | ||
RUN git clone -b v1.3.2 --depth=1 https://github.com/NCPP/ocgis.git | ||
RUN cd ocgis && python setup.py install | ||
|
||
ENV GDAL_DATA /opt/conda/share/gdal | ||
RUN cd && nosetests -a '!slow,!remote,!data' /ocgis/src/ocgis/test | ||
RUN cd && python -c "from ocgis.test import run_simple; run_simple(verbose=False)" | ||
|
||
RUN rm -r /opt/conda/pkgs/* | ||
RUN rm -r /ocgis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ channels: | |
- nesii | ||
|
||
dependencies: | ||
- python=2.7 | ||
- ocgis=1.3.2 | ||
- esmpy=7.0.0 | ||
- icclim=4.2.5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.