From 06656bcfbd08878971543b8f54a97ca34d2f988d Mon Sep 17 00:00:00 2001 From: benmack Date: Fri, 5 Jun 2020 22:02:22 +0200 Subject: [PATCH] v0.3.2 fixes import issue #17 #20 --- CHANGELOG.rst | 15 ++++++++++++--- README.md | 9 ++++++++- environment.yml | 20 ++++++++++++++------ eobox/__init__.py | 2 +- 4 files changed, 35 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e878fac..e5387e1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,18 +1,27 @@ Change Log ========== -All notable changes to **eo-box** will be listed here. +All notable changes to **eo-box** will be listed here starting from version 3.2. [develop] – YYYY-MM-DD ---------------------- Added ~~~~~ -* ``extract`` can be run in parallel via the argument ``n_jobs`` (**eo-learn-raster**). Changed ~~~~~~~ -* Tests in *extraction.py* now with fixtures. + +[0.3.2] – 2020-06-05 +-------------------- + +Added +~~~~~ +* many things... + +Changed +~~~~~~~ +* many things... [0.1.0] – 2018-12-27 -------------------- diff --git a/README.md b/README.md index df6807f..1b95eec 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,14 @@ So far, the following subpackages are available: The package requires Python 3. It can be installed with the following command: ```bash -pip3 install eobox +pip install eobox +``` + +The *environment.yaml* in the repository can be used to setup a conda environment with all dependencies required for using and building the package and running the tests and documentation code. + +```bash +conda env create --name=eobox --file=environment.yml +pip install eobox ``` ## Documentation diff --git a/environment.yml b/environment.yml index c731c7c..740fde9 100644 --- a/environment.yml +++ b/environment.yml @@ -1,21 +1,29 @@ -name: _eotools +name: eobox channels: - conda-forge - defaults dependencies: -- python>=3.5 +- affine +- descartes - cython - libgdal - gdal - geopandas - matplotlib - pandas +- pip +- python=3.6 +- pytest>=3.6.0 +- m2r - numpy - rasterio - seaborn - tqdm +- scikit-learn +- sphinx>=1.8 +- twine +- nbsphinx +- ipython +- jupyter - pip: - - sphinx>=1.8 - - sphinx-rtd-theme - - nbsphinx - - ipython + - sphinx-rtd-theme \ No newline at end of file diff --git a/eobox/__init__.py b/eobox/__init__.py index 7a3d579..8b655b2 100644 --- a/eobox/__init__.py +++ b/eobox/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.10" +__version__ = "0.3.2" from . import sampledata