Skip to content

Commit

Permalink
Merge branch 'release/1.2.7' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshah committed Jan 21, 2025
2 parents cd365f7 + 1eca4f6 commit 2d3fef0
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pack_cwls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8.x, 3.9.x]
python-version: [3.9.x]
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_cwls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8.x, 3.9.x]
python-version: [3.9.x]
steps:
- uses: actions/checkout@v4
with:
Expand Down
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
python:
- 3.7
- 2.7
- 3.9
install: pip install -U tox-travis
script: tox
deploy:
Expand All @@ -15,4 +14,4 @@ deploy:
on:
tags: true
repo: msk-access/cwl_subworkflows
python: 2.7
python: 3.9
2 changes: 1 addition & 1 deletion cwl_subworkflows/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """msk-access"""
__email__ = 'msk-access@gmail.com'
__version__ = '1.0.0'
__version__ = '1.2.7'
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.0
current_version = 1.2.7
commit = True
tag = True

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
],
description="A list of subworkflows used for MSK-ACCESS data processing.",
install_requires=requirements,
Expand All @@ -37,6 +36,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/rhshah/cwl_subworkflows',
version='1.0.0',
version='1.2.7',
zip_safe=False,
)
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist = py27, py37, flake8
envlist = py39, flake8

[travis]
python =
3.7: py37
3.9: py37

[testenv:flake8]
basepython = python3
Expand All @@ -22,7 +22,7 @@ commands =
pip install -U pip
py.test --basetemp={envtmpdir} tests

[testenv:py37]
[testenv:py39]
setenv =
PYTHONPATH = {toxinidir}
deps =
Expand Down

0 comments on commit 2d3fef0

Please sign in to comment.