Skip to content

Commit

Permalink
bumping version
Browse files Browse the repository at this point in the history
  • Loading branch information
LegoStormtroopr committed Sep 22, 2015
1 parent a95b168 commit 1095ada
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 21 deletions.
4 changes: 1 addition & 3 deletions django_spaghetti/__init__.py
@@ -1,12 +1,11 @@
__version_info__ = {
'major': 0,
'minor': 1,
'micro': 1,
'micro': 2,
'releaselevel': 'final',
'serial': 0
}


def get_version(release_level=True):
"""
Return the formatted version information
Expand All @@ -16,5 +15,4 @@ def get_version(release_level=True):
vers.append('%(releaselevel)s%(serial)i' % __version_info__)
return ''.join(vers)


__version__ = get_version()
Expand Up @@ -17,7 +17,7 @@
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 's13c_ip1@@5-cx8v50r6!kzk626dta-un6u-89g)!04m$7%52_'
SECRET_KEY = 'jsut_another_test_key'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
Expand All @@ -30,27 +30,13 @@
# Application definition

INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django_spaghetti',
'django.contrib.staticfiles',
)

MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'data_interrogator.urls'
ROOT_URLCONF = 'django_spaghetti.urls'

WSGI_APPLICATION = 'data_interrogator.wsgi.application'
WSGI_APPLICATION = 'django_spaghetti.tests.wsgi.application'


# Database
Expand Down

0 comments on commit 1095ada

Please sign in to comment.