From fc001c8cdae81f80c98c408896ab51f74652e362 Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Tue, 20 Dec 2016 23:40:05 -0500 Subject: [PATCH] remove testing for py3.3 --- .travis.yml | 2 -- ci/requirements-py33.yml | 8 -------- doc/whats-new.rst | 1 + 3 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 ci/requirements-py33.yml diff --git a/.travis.yml b/.travis.yml index e887ec60467..b53a5219274 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,8 +11,6 @@ matrix: env: CONDA_ENV=py27-min - python: 2.7 env: CONDA_ENV=py27-cdat+pynio - - python: 3.3 - env: CONDA_ENV=py33 - python: 3.4 env: CONDA_ENV=py34 - python: 3.5 diff --git a/ci/requirements-py33.yml b/ci/requirements-py33.yml deleted file mode 100644 index 7ff08a5794f..00000000000 --- a/ci/requirements-py33.yml +++ /dev/null @@ -1,8 +0,0 @@ -name: test_env -dependencies: - - python=3.3 - - pytest - - pandas - - pip: - - coveralls - - pytest-cov diff --git a/doc/whats-new.rst b/doc/whats-new.rst index 350b472af56..05828051b6d 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -64,6 +64,7 @@ Breaking changes - Coordinates used to index a dimension are now loaded eagerly into :py:class:`pandas.Index` objects, instead of loading the values lazily. By `Guido Imperiale `_. +- xarray no longer supports python 3.3 Deprecations ~~~~~~~~~~~~