Skip to content

Commit d9b24ac

Browse files
author
dafnevk
committed
Prepared for release 1.0.1
1 parent ad685f0 commit d9b24ac

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ install:
1818
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy
1919
- source activate test-environment
2020
- pip install -r requirements.txt
21-
- conda install -c https://conda.anaconda.org/menpo opencv3
2221
- pip install coverage
2322
- pip install codacy-coverage
2423

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## 1.0.1 - 2016-09-28
6+
## Changed
7+
- Changed setup.py so that installation is completely possible through pip
8+
59
## 1.0.0 - 2016-07-15
610
### Added
711
- The first release of the salient regions detectors software in Python. This implementation is (almost) equivalent to

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515

1616
setup(
1717
name='salientregions',
18-
version='1.0.0',
18+
version='1.0.1',
1919
install_requires=requirements,
2020
description='Package for finding salient regions in images',
2121
#long_description=readme,
2222
author='Netherlands eScience Center',
2323
url='https://github.com/NLeSC/SalientRegions-python',
24-
download_url = 'https://github.com/NLeSC/SalientDetector-python/tarball/v1.0.0',
24+
download_url = 'https://github.com/NLeSC/SalientDetector-python/tarball/v1.0.1',
2525
packages=find_packages(exclude=('tests'))
2626
)

0 commit comments

Comments
 (0)