-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated dependencies * correct dtype of list with selection conflict type * got rid of fiona requirement * improved downloading of example data * deprecated plotting for now as sklearn API has changed * v0.1.2
- Loading branch information
1 parent
d833735
commit 418388c
Showing
8 changed files
with
30 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
|
||
__author__ = """Jannis M. Hoch, Sophie de Bruin, Niko Wanders""" | ||
__email__ = '[email protected]' | ||
__version__ = '0.1.1' | ||
__version__ = '0.1.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,5 @@ dependencies: | |
- pillow==8.1.0 | ||
- geopandas>=0.8.0 | ||
- rasterio>=1.1.0 | ||
- fiona | ||
- rasterstats>=0.14.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[bumpversion] | ||
current_version = 0.1.1 | ||
current_version = 0.1.2 | ||
commit = True | ||
tag = True | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,8 +17,7 @@ | |
'numpy>=1.21.0', | ||
'scikit-learn>=0.22.1', | ||
'seaborn>=0.11', | ||
'numpy>=1.21.0'] | ||
|
||
] | ||
|
||
setup_requirements = ['pytest-runner', ] | ||
|
||
|
@@ -27,16 +26,15 @@ | |
setup( | ||
author="Jannis M. Hoch", | ||
author_email='[email protected]', | ||
python_requires='>=3.6', | ||
python_requires='>=3.9', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
], | ||
description="Python-model build on scikit-learn functions, designed to facilitate the set-up, execution, and evaluation of machine-learning models for the study of the climate-conflict nexus.", | ||
entry_points={ | ||
|
@@ -55,6 +53,6 @@ | |
test_suite='tests', | ||
tests_require=test_requirements, | ||
url='https://copro.readthedocs.io/', | ||
version='0.1.1', | ||
version='0.1.2', | ||
zip_safe=False, | ||
) |