Skip to content

Commit f52cf67

Browse files
authored
Merge branch 'master' into testing-windows
2 parents 952f0ab + fe79c22 commit f52cf67

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

cwltool/stdfsaccess.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import absolute_import
22
import glob
33
import os
4+
from io import open
45
from typing import BinaryIO, List, Union, Text, IO, overload
56

67
from .utils import onWindows

setup.py

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@
88
SETUP_DIR = os.path.dirname(__file__)
99
README = os.path.join(SETUP_DIR, 'README.rst')
1010

11-
# if python3 runtime and `setup.py install` is called
12-
if sys.version_info.major == 3 and sys.argv[1] == 'install':
13-
print("Aborting installation. CWL Tool doesn't support Python 3 currently.")
14-
print("Install using Python 2 pip.")
15-
exit(1)
16-
1711
try:
1812
import gittaggers
1913

@@ -85,9 +79,9 @@
8579
'Operating System :: POSIX',
8680
'Operating System :: POSIX :: Linux',
8781
'Operating System :: OS Independent',
88-
# 'Operating System :: Microsoft :: Windows', # soon!
89-
# 'Operating System :: Microsoft :: Windows :: Windows 10', # soon!
90-
# 'Operating System :: Microsoft :: Windows :: Windows 8.1', # soon!
82+
'Operating System :: Microsoft :: Windows',
83+
'Operating System :: Microsoft :: Windows :: Windows 10',
84+
'Operating System :: Microsoft :: Windows :: Windows 8.1',
9185
# 'Operating System :: Microsoft :: Windows :: Windows 8', # not tested
9286
# 'Operating System :: Microsoft :: Windows :: Windows 7', # not tested
9387
'Programming Language :: Python :: 2',

0 commit comments

Comments
 (0)