Skip to content

Commit 72a66b8

Browse files
minor changes in examples notebook
1 parent 17542cd commit 72a66b8

8 files changed

+42
-63
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ __pycache__
44

55
build/
66
dist/
7-
*.egg-info/
7+
*.egg-info/
8+
conda.stuff/

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Bias-Adjustment-Python
2-
2+
[![Generic badge](https://img.shields.io/badge/license-MIT-green.svg)](https://shields.io/)
3+
[![Generic badge](https://img.shields.io/badge/python-3.7+-blue.svg)](https://shields.io/)
4+
[![GitHub](https://badgen.net/badge/icon/github?icon=github&label)](https://github.com/btschwertfeger/Bias-Adjustment-Python)
35
Collection of different scale- and distribution-based bias adjustment techniques for climatic research. (see `examples.ipynb` for help)
46

57
Bias adjustment procedures in Python are very slow, so they should not be used on large data sets.

cmethods/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION = (0,0,0,0,1,16)
1+
VERSION = (0,5)
22
__version__ = '.'.join(map(str, VERSION))
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
xarray
21
numpy
2+
xarray
33
tqdm

examples.ipynb

+21-45
Large diffs are not rendered by default.

requirements.txt

-5
This file was deleted.

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717

1818
# What packages are required for this module to be executed?
1919
REQUIRED = [
20-
'xarray', 'tqdm' # <- always conflicts on install with tqdm
20+
'xarray', 'numpy', 'tqdm' # <- always conflicts on install with tqdm
2121
]
2222

2323
# What packages are optional?
2424
EXTRAS = {
25-
# 'fancy feature': ['django'],
25+
'working examples notebook': ['matplotlib'],
2626
}
2727

2828
here = os.path.abspath(os.path.dirname(__file__))

test.ipynb

+12-7
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)