Skip to content
This repository has been archived by the owner on Oct 9, 2019. It is now read-only.

Commit

Permalink
Merge pull request #71 from ocefpaf/library_deprecation
Browse files Browse the repository at this point in the history
deprecate this library
  • Loading branch information
benjwadams authored Oct 8, 2019
2 parents c130ff2 + b71cf0e commit 2f940b9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ sudo: false

env:
- CONDA="python=2.7"
- CONDA="python=3.4"
- CONDA="python=3.5"
- CONDA="python=3.6"

before_install:
- wget http://bit.ly/miniconda -O miniconda.sh
Expand Down
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
QARTOD
======

CAVEAT: this module is deprecated!
We recommend https://github.com/ioos/ioos_qc as an alternative QARTOD python implementation.
``ioos_qc`` is actively developed and supported by IOOS.

Collection of utilities, scripts and tests to assist in automated
quality assurance and quality control for oceanographic datasets and
observing systems.
10 changes: 9 additions & 1 deletion ioos_qartod/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
__version__ = '0.0.2'
__version__ = '0.0.3'

import warnings

warnings.warn(
"The ioos_qartod is deprecated, please use https://github.com/ioos/ioos_qc",
DeprecationWarning,
stacklevel=2
)

0 comments on commit 2f940b9

Please sign in to comment.