Skip to content
This repository has been archived by the owner on May 1, 2020. It is now read-only.

Commit

Permalink
prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Greenfeld committed Jul 29, 2015
1 parent 30428aa commit 95e8bf0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Expand Up @@ -22,7 +22,7 @@
parent = os.path.dirname(cwd)
sys.path.append(parent)

import spam
__version__ = 0.1.0

# -- General configuration -----------------------------------------------------

Expand Down Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = spam.__version__
version = __version__
# The full version, including alpha/beta/rc tags.
release = spam.__version__
release = __version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
@@ -1,17 +1,17 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

__version__ = '0.1.0'

import os
import sys

import spam

try:
from setuptools import setup
except ImportError:
from distutils.core import setup

version = spam.__version__
version = "0.1.0"

if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
Expand Down

0 comments on commit 95e8bf0

Please sign in to comment.