Skip to content
This repository was archived by the owner on Sep 28, 2020. It is now read-only.

Commit 3ba127a

Browse files
committed
Don't import from module in setup.py, which requires that a proper virtual environment has been created
1 parent 1a467f7 commit 3ba127a

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

cpplint_junit.py

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@
1212

1313
from exitstatus import ExitStatus
1414

15-
__version__ = '1.2.0'
16-
1715

1816
class CpplintError(object):
1917
def __init__(self,

setup.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
from setuptools import setup
22

3-
import cpplint_junit
4-
53

64
setup(
75
name='cpplint-junit',
8-
version=cpplint_junit.__version__,
6+
version='1.2.0',
97

108
description='Converts cpplint output to JUnit format.',
119
long_description=open('README.rst').read(),

0 commit comments

Comments
 (0)