Skip to content

Commit

Permalink
Merge pull request #15 from wdpypere/py3only
Browse files Browse the repository at this point in the history
move jenkins
  • Loading branch information
itkovian authored Feb 23, 2023
2 parents 09becb3 + a060456 commit 004a1aa
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,11 @@
"""
Setup file for some modules related tooling
"""
import sys

import vsc.install.shared_setup as shared_setup
from vsc.install.shared_setup import sdw

if sys.version_info > (3, 0):
mock = 'mock'
else:
# mock 4.x is no longer compatible with Python 2
mock = 'mock < 4.0'

PACKAGE = {
'version': '0.1.5',
'version': '0.1.6',
'author': [sdw],
'maintainer': [sdw],
'setup_requires': [
Expand All @@ -28,7 +20,7 @@
'atomicwrites',
],
'tests_require': [
mock,
'mock',
],
}

Expand Down

0 comments on commit 004a1aa

Please sign in to comment.