Skip to content

Commit f997d13

Browse files
authored
Merge pull request #1212 from common-workflow-language/py3.8
support Python 3.8
2 parents cd779a9 + 762532d commit f997d13

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- python: "3.5"
2525
- python: "3.6"
2626
- python: "3.7"
27-
#- python: "3.8-dev" # ruamel.yaml doesn't support 3.8 yet
27+
- python: "3.8"
2828
- python: "3.7"
2929
script: RELEASE_SKIP=head ${TRAVIS_BUILD_DIR}/release-test.sh
3030
script: tox

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ intended to be feature complete and provide comprehensive validation of CWL
7575
files as well as provide other tools related to working with CWL.
7676

7777
This is written and tested for
78-
`Python <https://www.python.org/>`_ ``2.7 and 3.x {x = 5, 6, 7}``
78+
`Python <https://www.python.org/>`_ ``2.7 and 3.x {x = 5, 6, 7, 8}``
7979

8080
The reference implementation consists of two packages. The ``cwltool`` package
8181
is the primary Python module containing the reference implementation in the

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
requests>=2.4.3
2-
ruamel.yaml>=0.12.4,<=0.15.97
2+
ruamel.yaml>=0.12.4,<=0.16
33
rdflib>=4.2.2,<4.3
44
shellescape>=3.4.1,<3.5
55
schema-salad>=4.5,<5

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
'setuptools',
6363
'requests >= 2.6.1', # >= 2.6.1 to workaround
6464
# https://github.com/ionrock/cachecontrol/issues/137
65-
'ruamel.yaml >= 0.12.4, <= 0.15.97',
65+
'ruamel.yaml >= 0.12.4, <= 0.16',
6666
'rdflib >= 4.2.2, < 4.3.0',
6767
'shellescape >= 3.4.1, < 3.5',
6868
'schema-salad >= 4.5, < 5',
@@ -115,6 +115,7 @@
115115
'Programming Language :: Python :: 3.5',
116116
'Programming Language :: Python :: 3.6',
117117
'Programming Language :: Python :: 3.7',
118+
'Programming Language :: Python :: 3.8',
118119
'Topic :: Scientific/Engineering',
119120
'Topic :: Scientific/Engineering :: Bio-Informatics',
120121
'Topic :: Scientific/Engineering :: Astronomy',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ python =
1717
3.5: py35
1818
3.6: py36
1919
3.7: py37
20-
3.8-dev: py38
20+
3.8: py38
2121

2222
[testenv]
2323
description =

0 commit comments

Comments
 (0)