Browse Source

Bump to 1.0.0

pull/38/head
Florian Mounier 12 years ago
parent
commit
a1759dc4db
  1. 2
      pygal/__init__.py
  2. 4
      pygal/graph/line.py

2
pygal/__init__.py

@ -21,7 +21,7 @@ Pygal - A python svg graph plotting library
""" """
__version__ = '0.13.0' __version__ = '1.0.0'
import sys import sys
from pygal.config import Config from pygal.config import Config
from pygal.ghost import Ghost from pygal.ghost import Ghost

4
pygal/graph/line.py

@ -34,7 +34,7 @@ class Line(Graph):
@cached_property @cached_property
def _values(self): def _values(self):
return [ return [
val[1] val[1]
for serie in self.series for serie in self.series
for val in (serie.interpolated for val in (serie.interpolated
@ -43,7 +43,7 @@ class Line(Graph):
@cached_property @cached_property
def _secondary_values(self): def _secondary_values(self):
return [ return [
val[1] val[1]
for serie in self.secondary_series for serie in self.secondary_series
for val in (serie.interpolated for val in (serie.interpolated

Loading…
Cancel
Save