We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdb3bc8 commit 76166f8Copy full SHA for 76166f8
1 file changed
setup.py
@@ -44,10 +44,11 @@
44
JAR_DIRECTORY = os.path.join(PACKAGE_NAME, 'jars')
45
PACKAGE_VERSION = '3.1.2'
46
PYTHON_REQUIREMENTS = [
47
- 'boto3',
48
- # argparse is part of python2.7 but must be declared for python2.6
49
- 'argparse',
+ "boto3",
+ # argparse is part of python3.2+
+ "argparse; python_version <= '3.1'" ,
50
]
51
+
52
REMOTE_MAVEN_PACKAGES_FILE = 'pom.xml'
53
54
class MavenJarDownloader:
0 commit comments