diff --git a/.travis.yml b/.travis.yml
index c13e0894..8282388a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,6 @@
language: python
python:
- 3.6
- - 2.7
sudo: false
diff --git a/README.rst b/README.rst
index db04e581..464fb44d 100644
--- a/README.rst
+++ b/README.rst
@@ -34,7 +34,7 @@ Getting started
- If you do not already have python installed, we recommend downloading and installing it through `anaconda `_
- `Install `_ geoana
-- Browse the :ref:`gallery ` for ideas and example usage
+- Browse the :ref:`gallery ` for ideas and example usage
- Read the `documentation `_ for more information on the library and what it can do
.. - See the `contributor guide` and `code of conduct` if you are interested in helping develop or maintain geoana
@@ -44,7 +44,7 @@ Getting started
Connecting with the community
-----------------------------
-geoana is a part of the larger `SimPEG `_ ecosystem. There are several avenues for connecting:
+geoana is a part of the larger `SimPEG `_ ecosystem. There are several avenues for connecting:
- a mailing list for questions and general news items: https://groups.google.com/forum/#!forum/simpeg
- a newsletter where meeting notices and re-caps are posted: http://eepurl.com/bVUoOL
@@ -75,4 +75,3 @@ License
-------
geoana is licensed under the `MIT license `_ .
-
diff --git a/appveyor.yml b/appveyor.yml
index 3fddb8d6..561e3685 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -4,26 +4,10 @@ build: off
environment:
matrix:
- - PYTHON: 2.7
- MINICONDA: C:\Miniconda
- PYTHON_ARCH: 32
-
- - PYTHON: 3.5
- MINICONDA: C:\Miniconda3
- PYTHON_ARCH: 32
-
- PYTHON: 3.6
MINICONDA: C:\Miniconda3
PYTHON_ARCH: 32
- - PYTHON: 2.7
- MINICONDA: C:\Miniconda
- PYTHON_ARCH: 64
-
- - PYTHON: 3.5
- MINICONDA: C:\Miniconda3
- PYTHON_ARCH: 64
-
- PYTHON: 3.6
MINICONDA: C:\Miniconda3
PYTHON_ARCH: 64
diff --git a/geoana/earthquake/oksar.py b/geoana/earthquake/oksar.py
index 90d27384..70102e7a 100644
--- a/geoana/earthquake/oksar.py
+++ b/geoana/earthquake/oksar.py
@@ -709,7 +709,7 @@ def example():
import requests
dinar_file = requests.get(
- 'http://storage.googleapis.com/sci3pt-insar/dinar.r4'
+ 'https://storage.googleapis.com/simpeg/geoana/dinar.r4'
)
data = np.fromstring(dinar_file.content, np.float32)
diff --git a/setup.py b/setup.py
index 38103b8e..4d13deb9 100644
--- a/setup.py
+++ b/setup.py
@@ -38,9 +38,8 @@
'numpy>=1.7',
'scipy>=0.13',
'matplotlib',
- 'ipywidgets',
- 'properties[math]',
- 'jupyter',
+ 'properties',
+ 'vectormath',
'utm'
],
author = 'SimPEG developers',