diff --git a/.github/workflows/run_functional_test.yml b/.github/workflows/run_functional_test.yml index 94462260..45a963f9 100644 --- a/.github/workflows/run_functional_test.yml +++ b/.github/workflows/run_functional_test.yml @@ -6,11 +6,11 @@ concurrency: functional-test-group on: push: - branches: [ bfabric12 ] + branches: [ main ] schedule: - cron: "00 08 * * *" pull_request: - branches: [ bfabric12 ] + branches: [ main ] workflow_dispatch: jobs: @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Set up Python 3.x + - name: Set up Python 3.9 uses: actions/setup-python@v2 with: python-version: 3.9 diff --git a/README.md b/README.md index 858c8909..c810edd8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ -# branch *bfabric12* WSDL python3 package -- suds-py3 +# bfabricPy This package connects the [bfabric](https://fgcz-bfabric.uzh.ch/bfabric/) system to the [python](https://www.python.org/) and [R](https://cran.r-project.org/) world while providing a JSON and REST interface using [Flask](https://www.fullstackpython.com). The [bfabricShiny](https://github.com/cpanse/bfabricShiny) R package is an extension and provides code snippets and sample implementation for a seamless R shiny bfabric integration. diff --git a/setup.py b/setup.py index 04d24c1c..5698ba2b 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ Ensure that this file is available on the bfabric exec host. -Copyright (C) 2014-2023 Functional Genomics Center Zurich ETHZ|UZH. All rights reserved. +Copyright (C) 2014-2024 Functional Genomics Center Zurich ETHZ|UZH. All rights reserved. Authors: Christian Panse @@ -14,11 +14,6 @@ Licensed under GPL version 3 -$Id: setup.py 2997M 2017-08-21 13:04:42Z (local) $ -$HeadURL: http://fgcz-svn.uzh.ch/repos/scripts/trunk/linux/bfabric/apps/python/setup.py $ -$Date: 2017-08-21 15:04:42 +0200 (Mon, 21 Aug 2017) $ -$Revision: 2627 $ - """ from setuptools import setup, find_packages @@ -42,7 +37,7 @@ author_email = 'cp@fgcz.ethz.ch', license = 'GPLv3 / apache 2.0', packages = ['bfabric'], - python_requires = ">=3.7", + python_requires = ">=3.9", install_requires = INSTALL_REQUIRES, scripts = [ 'bfabric/scripts/bfabric_flask.py', @@ -70,3 +65,4 @@ 'bfabric/scripts/bfabric_save_workflowstep.py' ], zip_safe=True) +