Skip to content

Commit 710aea8

Browse files
committed
Merge branch 'packaging-and-distribution'
2 parents 5a72def + d03f3c0 commit 710aea8

File tree

2 files changed

+4
-13
lines changed

2 files changed

+4
-13
lines changed

ciscosparkapi/_version.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# -*- coding: utf-8 -*-
21

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

1211
"""Git implementation of _version.py."""
13-
from __future__ import print_function
14-
from builtins import str
15-
from builtins import object
1612

1713
import errno
1814
import os
@@ -33,7 +29,7 @@ def get_keywords():
3329
return keywords
3430

3531

36-
class VersioneerConfig(object):
32+
class VersioneerConfig:
3733
"""Container for Versioneer configuration parameters."""
3834

3935

versioneer.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf-8 -*-
1+
22
# Version: 0.16
33

44
"""The Versioneer - like a rocketeer, but for versions.
@@ -349,15 +349,10 @@
349349
"""
350350

351351
from __future__ import print_function
352-
from future import standard_library
353-
standard_library.install_aliases()
354-
from builtins import str
355-
from builtins import object
356352
try:
357353
import configparser
358354
except ImportError:
359-
import configparser as configparser
360-
355+
import ConfigParser as configparser
361356
import errno
362357
import json
363358
import os
@@ -366,7 +361,7 @@
366361
import sys
367362

368363

369-
class VersioneerConfig(object):
364+
class VersioneerConfig:
370365
"""Container for Versioneer configuration parameters."""
371366

372367

0 commit comments

Comments
 (0)