Skip to content

Commit 94c49e5

Browse files
committed
python 3 requirement setup.py
1 parent b8d5253 commit 94c49e5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
import sys
12
from setuptools import setup
23

4+
if sys.version_info < (3,4):
5+
sys.exit('Sorry, Python versions lower than 3.4 are not supported.')
6+
37
setup(
48
name='wavelets_pytorch',
59
version='0.1',
10+
python_requires='>3.4.0',
611
author='Tom Runia',
712
author_email='tomrunia@gmail.com',
813
url='https://github.com/tomrunia/PyTorchWavelets',

0 commit comments

Comments
 (0)