Skip to content

Commit 6913306

Browse files
committed
Version 3.6.0
1 parent 155bc74 commit 6913306

File tree

2 files changed

+45
-4
lines changed

2 files changed

+45
-4
lines changed

CHANGES.rst

+31
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,37 @@
11
Release notes
22
#############
33

4+
Version 3.6.0
5+
=============
6+
7+
- Added support for scipy interpolations in griddata and xy2xy
8+
with use of projected coordinates
9+
- Added tuple support to create_axes2d
10+
- Added basic_proj and use it as default projection
11+
- Added GriddedSelector
12+
- Added some support for unstructured grids: create_ugrid, get_tri,
13+
get_tri_mask, get_tri_type, create_ugrid, create_aux_axes,
14+
get_unstruct_indices, create_grid, get_grid_type, issgrid, isugrid
15+
- Added are_same_grids
16+
- Added fill support to Plot.Add_box
17+
- Removed support for css and nat interpolations in griddata and xy2xy
18+
- Fixed time cdtimes comparisons
19+
- Fixed core_plot x/y attr check
20+
- Fixed call to udunits
21+
- Fixed linear4dto1dxx
22+
- Fixed check_case
23+
- Fixed Fix XYZ.togrid
24+
- Fixed bugs due to new MPL
25+
- Fixed regrid1d with cellave
26+
- Fixed quiverkey_value
27+
- Fixed import in stats
28+
- Fixed gaussian2d
29+
- Fixed extend1d inner slice and cyclic conditions
30+
- Fixed cellerr1d errm slices
31+
- Fixed output dim check in grid2xy
32+
- Fixed lat/lon in Map
33+
- Fixed coord2slice with e/n bounds specs
34+
435
Version 3.5.1
536
=============
637

lib/python/vacumm/__init__.py

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf8 -*-
33
#
4-
# Copyright or © or Copr. Actimar/IFREMER (2010-2017)
4+
# Copyright or © or Copr. Actimar/IFREMER (2010-2018)
55
#
66
# This software is a computer program whose purpose is to provide
77
# utilities for handling oceanographic and atmospheric data,
@@ -37,11 +37,11 @@
3737
from warnings import warn
3838

3939
__project__ = 'vacumm'
40-
__version__ = '3.5.1'
40+
__version__ = '3.6.0'
4141
__release__ = '0'
42-
__date__ = '2017-12-12'
42+
__date__ = '2018-07-02'
4343
__author__ = u'Stéphane Raynaud, Jonathan Wilkins, Guillaume Charria'
44-
__email__ = 'raynaud@actimar.fr, wilkins@actimar.fr, charria@ifremer.fr'
44+
__email__ = 'stephane.raynaud@gmail.com, wilkins@actimar.fr, charria@ifremer.fr'
4545
__copyright__ = 'Copyright (c) 2010-2016 Actimar/IFREMER'
4646
__description__ = """
4747
VACUMM library
@@ -96,8 +96,18 @@ class VACUMMError(Exception):
9696
class VACUMMWarning(UserWarning):
9797
"""Standard VACUMM warning"""
9898

99+
class VACUMMDepWarning(DeprecationWarning, VACUMMWarning):
100+
"""Deprecation VACUMM warning"""
101+
102+
99103
def vacumm_warn(message, stacklevel=2):
100104
"""Issue a :class:`VACUMMWarning`"""
101105
warn(message, VACUMMWarning, stacklevel=stacklevel)
102106

103107
vcwarn = vacumm_warning = vacumm_warn
108+
109+
def vacumm_dep_warn(message, stacklevel=2):
110+
"""Issue a :class:`VACUMMDepWarning`"""
111+
warn(message, VACUMMDepWarning, stacklevel=stacklevel)
112+
113+
vcdwarn = vacumm_dep_warning = vacumm_dep_warn

0 commit comments

Comments
 (0)