Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ python:
install:
- pip install --upgrade pip setuptools
- pip install -r dev-requirements.txt
- pip install pandas scikit-learn scipy feather-format
- pip install -e .
env:
global:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Include JSON files with pip distributions (#244)
- Added flush to `civis_to_file` when passed a user-created buffer,
ensuring the buffer contains the entire file when subsequently read.
- Travis tests for Python 3.4 are now restricted to pandas<=0.20, the
last version which supported Python 3.4 (#249)

### Added
- Added a utility function which can robustly split a Redshift schema name
Expand Down
9 changes: 8 additions & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,11 @@ pytest-cov>=2.4.0,==2.*
vcrpy>=1.11.0,<=1.11.99
vcrpy-unittest==0.1.6
sphinx_rtd_theme>=0.2.4,<1.0.0
numpydoc>=0.7.0,<1.0.0
numpydoc>=0.7.0,<1.0.0
feather-format
numpy
pandas; python_version >= '3.5'
pandas<0.21; python_version == '3.4'
pandas<=0.23; python_version == '2.7'
scikit-learn
scipy