Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

Revision 6a8a851c787dffdf128138b0392b94518421e0a5 authored by dependabot[bot] on 06 July 2023, 22:21:18 UTC, committed by GitHub on 06 July 2023, 22:21:18 UTC
Bump scipy from 1.5.4 to 1.10.0
Bumps [scipy](https://github.com/scipy/scipy) from 1.5.4 to 1.10.0.
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](https://github.com/scipy/scipy/compare/v1.5.4...v1.10.0)

---
updated-dependencies:
- dependency-name: scipy
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3579612
  • Files
  • Changes
  • f85b72b
  • /
  • Dockerfile
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • revision
  • directory
  • content
revision badge
swh:1:rev:6a8a851c787dffdf128138b0392b94518421e0a5
directory badge Iframe embedding
swh:1:dir:f85b72bcf2080074e81b36c3e89b8526ae16e494
content badge Iframe embedding
swh:1:cnt:ef2b7c8d833944495cf442bee5ac2bd83c21d2fe

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • revision
  • directory
  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Dockerfile
FROM ubuntu:16.04

ENV LANG C.UTF-8
ENV LANG=en_AU.UTF-8
ENV WORKON_HOME=$HOME/venvs
ENV GDALINST=$HOME/gdalinstall
ENV GDALBUILD=$HOME/gdalbuild
ENV PROJINST=$HOME/gdalinstall
ENV GDALVERSION="3.0.2"
ENV PROJVERSION="6.1.1"
ENV PROJOPT="--with-proj=$GDALINST/gdal-$GDALVERSION"
ENV PATH=$GDALINST/gdal-$GDALVERSION/bin:$PATH
ENV LD_LIBRARY_PATH=$GDALINST/gdal-$GDALVERSION/lib:$LD_LIBRARY_PATH
ENV PROJ_LIB=$GDALINST/gdal-$GDALVERSION/share/proj
ENV GDAL_DATA=$GDALINST/gdal-$GDALVERSION/share/gdal


RUN apt-get update \
    && apt-get install -y build-essential checkinstall libreadline-gplv2-dev \
    libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev \
    libbz2-dev openssl curl libffi-dev

RUN mkdir -p $HOME/opt

RUN cd $HOME/opt \
    && curl -O https://www.python.org/ftp/python/3.7.7/Python-3.7.7.tgz \
    && tar -xzf Python-3.7.7.tgz \
    && cd Python-3.7.7 \
    && ./configure --enable-shared --enable-optimizations --prefix=/usr/local LDFLAGS="-Wl,--rpath=/usr/local/lib" \
    && make altinstall

RUN apt-get install -y build-essential python3-pip \
    apt-utils git libgdal-dev libatlas-base-dev openmpi-bin \
    libopenmpi-dev gfortran wget libhdf5-serial-dev sqlite3 vim

# update pip
RUN python3.7 -m pip install pip --upgrade
RUN python3.7 -m pip install wheel
RUN pip3 install --upgrade setuptools


RUN mkdir -p $GDALBUILD $GDALINST $PROJBUILD $PROJINST

ENV GDALOPTS="  --with-geos \
            --with-expat \
            --without-libtool \
            --with-libz=internal \
            --with-libtiff=internal \
            --with-geotiff=internal \
            --without-gif \
            --without-pg \
            --without-grass \
            --without-libgrass \
            --without-cfitsio \
            --without-pcraster \
            --with-netcdf \
            --with-png=internal \
            --with-jpeg=internal \
            --without-gif \
            --without-ogdi \
            --without-fme \
            --without-hdf4 \
            --with-hdf5 \
            --without-jasper \
            --without-ecw \
            --without-kakadu \
            --without-mrsid \
            --without-jp2mrsid \
            --without-mysql \
            --without-ingres \
            --without-xerces \
            --without-odbc \
            --with-curl \
            --without-sqlite3 \
            --without-idb \
            --without-sde \
            --without-perl \
            --without-python"

RUN cd $PROJBUILD && wget -q https://download.osgeo.org/proj/proj-$PROJVERSION.tar.gz \
    && tar -xzf proj-$PROJVERSION.tar.gz \
    && cd proj-$PROJVERSION \
    && ./configure --prefix=$PROJINST/gdal-$GDALVERSION \
    && make -s -j 2 \
    && make install

RUN  cd $GDALBUILD \
    && wget -q http://download.osgeo.org/gdal/$GDALVERSION/gdal-$GDALVERSION.tar.gz \
    && tar -xzf gdal-$GDALVERSION.tar.gz

RUN cd $GDALBUILD/gdal-$GDALVERSION \
    && ./configure --prefix=$GDALINST/gdal-$GDALVERSION $GDALOPTS $PROJOPT

RUN cd $GDALBUILD/gdal-$GDALVERSION && make

RUN cd $GDALBUILD/gdal-$GDALVERSION  && make install

RUN pip install virtualenv virtualenvwrapper
ENV VIRTUALENVWRAPPER_PYTHON=/usr/local/bin/python3.7

ADD . / PyRate/
SHELL ["/bin/bash", "-c"]
RUN source /usr/local/bin/virtualenvwrapper.sh \
    && mkvirtualenv -p python3.7 pyrate \
    && cd PyRate \
    && sed -i '/^GDAL/d' requirements.txt \
    && workon pyrate \
    && pip install -r requirements.txt -r requirements-dev.txt -r requirements-test.txt \
    && pip install GDAL==$(gdal-config --version) \
    && python setup.py install
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

back to top

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API