Skip to content

Commit 8ad4846

Browse files
committed
Merge branch 'release/1.2.7'
2 parents 3e4b27e + 1eca4f6 commit 8ad4846

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed

.github/workflows/pack_cwls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [3.8.x, 3.9.x]
17+
python-version: [3.9.x]
1818
steps:
1919
- uses: actions/checkout@v4
2020
with:

.github/workflows/validate_cwls.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [3.8.x, 3.9.x]
15+
python-version: [3.9.x]
1616
steps:
1717
- uses: actions/checkout@v4
1818
with:

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: python
22
python:
3-
- 3.7
4-
- 2.7
3+
- 3.9
54
install: pip install -U tox-travis
65
script: tox
76
deploy:
@@ -15,4 +14,4 @@ deploy:
1514
on:
1615
tags: true
1716
repo: msk-access/cwl_subworkflows
18-
python: 2.7
17+
python: 3.9

cwl_subworkflows/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
__author__ = """msk-access"""
66
__email__ = 'msk-access@gmail.com'
7-
__version__ = '1.0.0'
7+
__version__ = '1.2.7'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.0.0
2+
current_version = 1.2.7
33
commit = True
44
tag = True
55

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
'Intended Audience :: Developers',
2323
'License :: OSI Approved :: Apache Software License',
2424
'Natural Language :: English',
25-
'Programming Language :: Python :: 2.7',
26-
'Programming Language :: Python :: 3.7',
25+
'Programming Language :: Python :: 3.9',
2726
],
2827
description="A list of subworkflows used for MSK-ACCESS data processing.",
2928
install_requires=requirements,
@@ -37,6 +36,6 @@
3736
test_suite='tests',
3837
tests_require=test_requirements,
3938
url='https://github.com/rhshah/cwl_subworkflows',
40-
version='1.0.0',
39+
version='1.2.7',
4140
zip_safe=False,
4241
)

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
2-
envlist = py27, py37, flake8
2+
envlist = py39, flake8
33

44
[travis]
55
python =
6-
3.7: py37
6+
3.9: py37
77

88
[testenv:flake8]
99
basepython = python3
@@ -22,7 +22,7 @@ commands =
2222
pip install -U pip
2323
py.test --basetemp={envtmpdir} tests
2424

25-
[testenv:py37]
25+
[testenv:py39]
2626
setenv =
2727
PYTHONPATH = {toxinidir}
2828
deps =

0 commit comments

Comments
 (0)