Skip to content

Commit 95821ae

Browse files
committed
1.9.0, 0.14.0
1 parent 93056ff commit 95821ae

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,13 @@ install:
4646
- echo "install"
4747
- conda env create --file ci/requirements-$CONDA_ENV.yml
4848
- 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
5052
pip uninstall numpy --yes;
5153
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;
5456
fi
5557
- conda list
5658
- echo $PATH

docs/sphinx/source/whatsnew/v0.4.0.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ Other
5555
Requirements
5656
~~~~~~~~~~~~
5757

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.
6060

6161

6262
Code Contributors

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
URL = 'https://github.com/pvlib/pvlib-python'
4242

4343
INSTALL_REQUIRES = ['numpy >= 1.9.0',
44-
'pandas >= 0.14.1',
44+
'pandas >= 0.14.0',
4545
'pytz',
4646
'six',
4747
]

0 commit comments

Comments
 (0)