Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates code to work with latest dependencies. #140

Merged
merged 28 commits into from
Aug 30, 2018
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
19906db
Use Octave interp1 instead of deprecated interp1q.
moorepants Aug 30, 2018
4081d91
oct2py >= 4.0 requires an nout kwarg for multiple outputs.
moorepants Aug 30, 2018
bdebece
Accomodate Octave 3 and 4.
moorepants Aug 30, 2018
aafd3b0
Round the indice count so that the numpy array is not indexed by a fl…
moorepants Aug 30, 2018
6d2182b
Arrays seemingly copied, moved to simpler verbose code to avoid copies.
moorepants Aug 30, 2018
04c0802
Setup Travis CI to use Conda and old/new testing.
moorepants Aug 30, 2018
68ea688
Corrected travis build matrix.
moorepants Aug 30, 2018
d21aad3
Bumped up oldest supported versions.
moorepants Aug 30, 2018
bf00fb2
Backup dtk to 0.3.5.
moorepants Aug 30, 2018
099cd61
Added mock to the env.ymls.
moorepants Aug 30, 2018
d84c61b
Added numpydoc.
moorepants Aug 30, 2018
a2b5481
Raise oct2py min version to 3.5.
moorepants Aug 30, 2018
3408d2d
Added conda moorepant channel.
moorepants Aug 30, 2018
0ce0edb
Try pip installing oct2py and dtk.
moorepants Aug 30, 2018
ce29cd6
Fixed yml error.
moorepants Aug 30, 2018
613219d
Use correct pip version sign.
moorepants Aug 30, 2018
f9beb7d
Trying apt install python libs for oldest.
moorepants Aug 30, 2018
a73e3ec
Use tornado compatible with python < 2.7.9.
moorepants Aug 30, 2018
550535d
Added missing quotes.
moorepants Aug 30, 2018
767a5e9
Use apt for pandas and sphinx.
moorepants Aug 30, 2018
5f238aa
Install more packages with apt.
moorepants Aug 30, 2018
d40e078
Add no-deps to pip install.
moorepants Aug 30, 2018
fb5b2ed
Add sudo to pip.
moorepants Aug 30, 2018
492bfef
Use sudo in install for oldest.
moorepants Aug 30, 2018
fe2593a
Try to avoid tornado install again.
moorepants Aug 30, 2018
87a98b9
Bumped DTK to 0.4.0.
moorepants Aug 30, 2018
7b44af2
Fixed octave interp1q typo.
moorepants Aug 30, 2018
47df4ff
Get index values for type conversion.
moorepants Aug 30, 2018
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
Prev Previous commit
Next Next commit
Install more packages with apt.
moorepants committed Aug 30, 2018
commit 5f238aadec9f5788abca649c6e12c8e24ba7a19b
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@ env:
- DEP_VERSIONS="latest"
before_install:
- if [[ $DEP_VERSIONS == "oldest" ]]; then
sudo apt-get install -y -qq python-pip python-setuptools python-numpy python-scipy python-matplotlib python-tables python-nose python-coverage python-pandas python-sphinx;
pip install pyyaml oct2py==2.4.2 DynamicistToolKit==0.3.5 mock numpydoc;
sudo apt-get install -y -qq python-pip python-setuptools python-numpy python-scipy python-matplotlib python-tables python-nose python-coverage python-pandas python-sphinx python-mock python-numpydoc python-yaml;
pip install oct2py==2.4.2 DynamicistToolKit==0.3.5;
elif [[ $DEP_VERSIONS == "latest" ]]; then
MINICONDA_URL="https://repo.continuum.io/miniconda";
MINICONDA_FILE="Miniconda3-latest-Linux-x86_64.sh";