Skip to content

Commit b6c40b3

Browse files
author
Vladimir Kotal
authored
specify required python version (#2697)
1 parent 17226e6 commit b6c40b3

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

opengrok-tools/setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def my_test_suite():
4040
description='Tools for managing OpenGrok instance',
4141
long_description=readme(),
4242
test_suite='setup.my_test_suite',
43+
python_requires='>=3.4, <4',
4344
install_requires=[
4445
'jsonschema==2.6.0',
4546
'pyyaml',

opengrok-tools/src/main/python/opengrok_tools/sync.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,11 @@
1919
#
2020

2121
#
22-
# Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
22+
# Copyright (c) 2017, 2019, Oracle and/or its affiliates. All rights reserved.
2323
#
2424

2525
"""
2626
This script runs OpenGrok parallel project processing.
27-
28-
It is intended to work on Unix systems. (mainly because it relies on the
29-
OpenGrok shell script - for the time being)
30-
3127
"""
3228

3329
import argparse

0 commit comments

Comments
 (0)