File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
docs/sphinx/source/whatsnew Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -46,11 +46,13 @@ install:
46
46
- echo "install"
47
47
- conda env create --file ci/requirements-$CONDA_ENV.yml
48
48
- source activate test_env # all envs are named test_env in the yml files
49
- - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
49
+ # needed to make sure that pandas is compiled against the right
50
+ # version of numpy
51
+ - if [[ "$CONDA_ENV" == "2.7" ]]; then
50
52
pip uninstall numpy --yes;
51
53
pip uninstall pandas --yes;
52
- pip install --no-cache-dir numpy==1.9.3 ;
53
- pip install --no-cache-dir pandas==0.14.1 ;
54
+ pip install --no-cache-dir numpy==1.9.0 ;
55
+ pip install --no-cache-dir pandas==0.14.0 ;
54
56
fi
55
57
- conda list
56
58
- echo $PATH
Original file line number Diff line number Diff line change 55
55
Requirements
56
56
~~~~~~~~~~~~
57
57
58
- * pvlib now requires pandas >= 0.14.1 and numpy >= 1.9.3 , both
59
- released in mid 2014. Most of pvlib will work with lesser versions.
58
+ * pvlib now requires pandas >= 0.14.0 and numpy >= 1.9.0 , both
59
+ released in 2014. Most of pvlib will work with lesser versions.
60
60
61
61
62
62
Code Contributors
Original file line number Diff line number Diff line change 41
41
URL = 'https://github.com/pvlib/pvlib-python'
42
42
43
43
INSTALL_REQUIRES = ['numpy >= 1.9.0' ,
44
- 'pandas >= 0.14.1 ' ,
44
+ 'pandas >= 0.14.0 ' ,
45
45
'pytz' ,
46
46
'six' ,
47
47
]
You can’t perform that action at this time.
0 commit comments