Skip to content

Commit 0a0f4e1

Browse files
committed
Bump version
1 parent ae13220 commit 0a0f4e1

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

seaborn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
from .axisgrid import *
99
set()
1010

11-
__version__ = "0.3.dev"
11+
__version__ = "0.3"

setup.py

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
11
#! /usr/bin/env python
22
#
3-
# Copyright (C) 2012 Michael Waskom <mwaskom@stanford.edu>
4-
5-
descr = """Seaborn: improved statistical visualization using Matplotlib"""
6-
7-
import os
8-
3+
# Copyright (C) 2012-2014 Michael Waskom <mwaskom@stanford.edu>
94

5+
DESCRIPTION = "Seaborn: statistical data visualization"
106
DISTNAME = 'seaborn'
11-
DESCRIPTION = descr
127
MAINTAINER = 'Michael Waskom'
138
MAINTAINER_EMAIL = 'mwaskom@stanford.edu'
149
URL = 'http://stanford.edu/~mwaskom/software/seaborn/'
1510
LICENSE = 'BSD (3-clause)'
16-
DOWNLOAD_URL = ('https://github.com/mwaskom/seaborn/zipball/master'
17-
'#egg=seaborn=dev')
18-
VERSION = '0.3.dev'
11+
DOWNLOAD_URL = 'https://github.com/mwaskom/seaborn/'
12+
VERSION = '0.3'
1913

2014
from setuptools import setup
2115

2216
if __name__ == "__main__":
17+
import os
2318
if os.path.exists('MANIFEST'):
2419
os.remove('MANIFEST')
2520

0 commit comments

Comments
 (0)