Skip to content

Commit

Permalink
v0.3.2 fixes import issue #17 #20
Browse files Browse the repository at this point in the history
  • Loading branch information
benmack committed Jun 5, 2020
1 parent f4eb89e commit 06656bc
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 11 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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
--------------------
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 14 additions & 6 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion eobox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.10"
__version__ = "0.3.2"

from . import sampledata

Expand Down

0 comments on commit 06656bc

Please # to comment.