8000 remove vestigal plot symmetry options (#8937) · bokeh/bokeh@84841ec · GitHub
[go: up one dir, main page]

Skip to content

Commit 84841ec

Browse files
committed
remove vestigal plot symmetry options (#8937)
1 parent a427b80 commit 84841ec

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

bokeh/models/plots.py

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
from ..core.validation.errors import BAD_EXTRA_RANGE_NAME, REQUIRED_RANGE, REQUIRED_SCALE, INCOMPATIBLE_SCALE_AND_RANGE
3636
from ..core.validation.warnings import MISSING_RENDERERS, FIXED_SIZING_MODE, FIXED_WIDTH_POLICY, FIXED_HEIGHT_POLICY
3737
from ..model import Model, collect_filtered_models
38-
from ..util.deprecation import deprecated
3938
from ..util.string import nice_join
4039

4140
from .annotations import Legend, Title
@@ -617,23 +616,6 @@ def _scale(cls, scale):
617616
it will override ``min_border``.
618617
""")
619618

620-
621-
@property
622-
def h_symmetry(self):
623-
deprecated("h_symmetry has been non-functional since before Bokeh 1.0 and will be removed at Bokeh 2.0")
624-
625-
@h_symmetry.setter
626-
def h_symmetry(self, _):
627-
deprecated("h_symmetry has been non-functional since before Bokeh 1.0 and will be removed at Bokeh 2.0")
628-
629-
@property
630-
def v_symmetry(self):
631-
deprecated("v_symmetry has been non-functional since before Bokeh 1.0 and will be removed at Bokeh 2.0")
632-
633-
@v_symmetry.setter
634-
def v_symmetry(self, _):
635-
deprecated("v_symmetry has been non-functional since before Bokeh 1.0 and will be removed at Bokeh 2.0")
636-
637619
lod_factor = Int(10, help="""
638620
Decimation factor to use when applying level-of-detail decimation.
639621
""")
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
.. _release-2-0-0:
2+
3+
2.0.0
4+
=====
5+
6+
Bokeh Version ``2.0.0`` (XXXX 2019) is a major milestone of the Bokeh project.
7+
8+
9+
10+
And several other bug fixes and docs additions. For full details see the
11+
:bokeh-tree:`CHANGELOG`.
12+
13+
.. _release-2-0-0-migration:
14+
15+
`Migration Guide <releases.html#release-2-0-0-migration>`__
16+
-----------------------------------------------------------
17+
18+
Plot Symmetry Properties
19+
~~~~~~~~~~~~~~~~~~~~~~~~
20+
21+
The deprecated vestigal properties ``Plot.h_symmetry`` and ``Plot.v_symmetry``
22+
have been removed. These properties were non-functional for many releases.

0 commit comments

Comments
 (0)
0