Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python 3.9/3.10 #395

Merged
merged 6 commits into from
Sep 15, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python_version: [3.8]
python_version: ['3.9']

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand All @@ -46,6 +46,5 @@ jobs:
aws-region: us-east-1

- name: QA (unit)
if: ${{ matrix.python_version == '3.8' }}
run: |
poetry run invoke test --no-flake
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
Change Log
==========

4.0.0
=====

* Drop support for 3.7
* Support 3.9, 3.10


3.3.3
=====

Expand Down
128 changes: 42 additions & 86 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tibanna"
version = "3.3.3"
version = "4.0.0"
description = "Tibanna runs portable pipelines (in CWL/WDL) on the AWS Cloud."
authors = ["4DN-DCIC Team <support@4dnucleome.org>"]
license = "MIT"
Expand All @@ -24,10 +24,12 @@ classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove this line

'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
]

[tool.poetry.dependencies]
python = ">=3.7,<3.9"
python = ">=3.8,<3.11"
python-lambda-4dn = "0.12.3"
boto3 = "^1.9.0"
botocore = "^1.12.1"
Expand Down
2 changes: 1 addition & 1 deletion tibanna/lambdas/check_task_awsem.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'function_handler': 'handler',
'handler': 'service.handler',
'region': AWS_REGION,
'runtime': 'python3.8',
'runtime': 'python3.9',
'role': 'tibanna_lambda_init_role',
'description': 'check status of AWSEM run by interegating appropriate files on S3 ',
'timeout': 300,
Expand Down
2 changes: 1 addition & 1 deletion tibanna/lambdas/run_task_awsem.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'function_handler': 'handler',
'handler': 'service.handler',
'region': AWS_REGION,
'runtime': 'python3.8',
'runtime': 'python3.9',
'role': 'tibanna_lambda_init_role',
'description': 'launch an ec2 instance',
'timeout': 300,
Expand Down
2 changes: 1 addition & 1 deletion tibanna/lambdas/update_cost_awsem.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'function_handler': 'handler',
'handler': 'service.handler',
'region': AWS_REGION,
'runtime': 'python3.8',
'runtime': 'python3.9',
'role': 'tibanna_lambda_init_role',
'description': 'update costs of a workflow run',
'timeout': 300,
Expand Down
Loading