Skip to content

Commit

Permalink
Merge branch 'packaging-and-distribution'
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlccie committed Sep 24, 2016
2 parents 5a72def + d03f3c0 commit 710aea8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
6 changes: 1 addition & 5 deletions ciscosparkapi/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-

# This file helps to compute a version number in source trees obtained from
# git-archive tarball (such as those provided by githubs download-from-tag
Expand All @@ -10,9 +9,6 @@
# versioneer-0.16 (https://github.com/warner/python-versioneer)

"""Git implementation of _version.py."""
from __future__ import print_function
from builtins import str
from builtins import object

import errno
import os
Expand All @@ -33,7 +29,7 @@ def get_keywords():
return keywords


class VersioneerConfig(object):
class VersioneerConfig:
"""Container for Versioneer configuration parameters."""


Expand Down
11 changes: 3 additions & 8 deletions versioneer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-

# Version: 0.16

"""The Versioneer - like a rocketeer, but for versions.
Expand Down Expand Up @@ -349,15 +349,10 @@
"""

from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
from builtins import str
from builtins import object
try:
import configparser
except ImportError:
import configparser as configparser

import ConfigParser as configparser
import errno
import json
import os
Expand All @@ -366,7 +361,7 @@
import sys


class VersioneerConfig(object):
class VersioneerConfig:
"""Container for Versioneer configuration parameters."""


Expand Down

0 comments on commit 710aea8

Please sign in to comment.