File tree Expand file tree Collapse file tree 2 files changed +4
-13
lines changed Expand file tree Collapse file tree 2 files changed +4
-13
lines changed Original file line number Diff line number Diff line change 1
- # -*- coding: utf-8 -*-
2
1
3
2
# This file helps to compute a version number in source trees obtained from
4
3
# git-archive tarball (such as those provided by githubs download-from-tag
10
9
# versioneer-0.16 (https://github.com/warner/python-versioneer)
11
10
12
11
"""Git implementation of _version.py."""
13
- from __future__ import print_function
14
- from builtins import str
15
- from builtins import object
16
12
17
13
import errno
18
14
import os
@@ -33,7 +29,7 @@ def get_keywords():
33
29
return keywords
34
30
35
31
36
- class VersioneerConfig ( object ) :
32
+ class VersioneerConfig :
37
33
"""Container for Versioneer configuration parameters."""
38
34
39
35
Original file line number Diff line number Diff line change 1
- # -*- coding: utf-8 -*-
1
+
2
2
# Version: 0.16
3
3
4
4
"""The Versioneer - like a rocketeer, but for versions.
349
349
"""
350
350
351
351
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
356
352
try :
357
353
import configparser
358
354
except ImportError :
359
- import configparser as configparser
360
-
355
+ import ConfigParser as configparser
361
356
import errno
362
357
import json
363
358
import os
366
361
import sys
367
362
368
363
369
- class VersioneerConfig ( object ) :
364
+ class VersioneerConfig :
370
365
"""Container for Versioneer configuration parameters."""
371
366
372
367
You can’t perform that action at this time.
0 commit comments