Skip to content

Commit

Permalink
Merge branch 'master' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
kbarnhart committed Aug 31, 2019
2 parents dd99a33 + 048821d commit 1b1b2c5
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 14 deletions.
1 change: 0 additions & 1 deletion .coveralls.yaml

This file was deleted.

3 changes: 2 additions & 1 deletion .travis.yml
Expand Up @@ -64,6 +64,7 @@ install:
- pip install numpy
- pip install -e .
script:
- pip install pytest pytest-cov pytest-datadir coveralls
- pip install pytest pytest-cov coveralls
- pip install jupyter pandas plotnine holoviews terrainbento
- pytest --cov-report=xml:$(pwd)/coverage.xml
after_success: coveralls
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -2,6 +2,7 @@
[![Build Status](https://travis-ci.org/TerrainBento/umami.svg?branch=master)](https://travis-ci.org/TerrainBento/umami)
[![Build status](https://ci.appveyor.com/api/projects/status/0ehba569dttgsuyv?svg=true)](https://ci.appveyor.com/project/kbarnhart/umami)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/TerrainBento/umami/master)
[![Coverage Status](https://coveralls.io/repos/github/TerrainBento/umami/badge.svg?branch=master)](https://coveralls.io/github/TerrainBento/umami?branch=master)

# Umami

Expand Down
9 changes: 4 additions & 5 deletions appveyor.yml
Expand Up @@ -17,7 +17,6 @@ platform:
- x64

os: Previous Visual Studio 2015
# os: Visual Studio 2013

init:
- "ECHO %CONDA_INSTALL_LOCN% %CONDA_PY% %HOME% %PLATFORM%"
Expand All @@ -28,17 +27,17 @@ install:
- cmd: conda update --yes --quiet conda
- cmd: set PYTHONUNBUFFERED=1
- cmd: conda config --set always_yes yes
- cmd: pip install twine pytest pytest-cov pytest-datadir
- cmd: pip install pytest
- cmd: pip install jupyter pandas plotnine holoviews terrainbento
- cmd: conda info
- cmd: conda list

build: false

test_script:
- pip install numpy"
- pip install -e ."
- pip install numpy
- pip install -e .
- pytest -vvv

artifacts:
# Archive the generated conda package in the ci.appveyor.com build report.
- path: 'dist\*'
9 changes: 9 additions & 0 deletions binder/postBuild
@@ -0,0 +1,9 @@
#!/bin/bash

pip install jupyter
pip install holoviews
pip install pandas
pip install plotnine>=0.6.0
pip install terrainbento>=1.1

pip install -e .
2 changes: 1 addition & 1 deletion environment-dev.yml
Expand Up @@ -2,7 +2,7 @@ name: umami-dev
channels:
- conda-forge
dependencies:
- python
- python>=3.6
# for development
- black
- flake8
Expand Down
7 changes: 1 addition & 6 deletions setup.py
Expand Up @@ -5,6 +5,7 @@

setup(
name="umami",
python_requires=">=3.6",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="Umami calculates landscape metrics",
Expand All @@ -19,12 +20,6 @@
install_requires=[
"scipy",
"numpy",
"jupyter",
"holoviews",
"pandas",
"landlab>=1.10",
"terrainbento>=1.1",
"plotnine>=0.6.0",
],
package_data={"": ["tests/data/*"]},
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 1b1b2c5

Please sign in to comment.