Skip to content

Commit

Permalink
maintenance: switch to main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
leoschwarz committed Apr 4, 2024
1 parent 5dec89b commit 112bebf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run_functional_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ concurrency: functional-test-group

on:
push:
branches: [ bfabric12 ]
branches: [ main ]
schedule:
- cron: "00 08 * * *"
pull_request:
branches: [ bfabric12 ]
branches: [ main ]
workflow_dispatch:

jobs:
build:
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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,14 @@
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 <[email protected]>
Maria d'Errico <[email protected]>
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
Expand All @@ -42,7 +37,7 @@
author_email = '[email protected]',
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',
Expand Down Expand Up @@ -70,3 +65,4 @@
'bfabric/scripts/bfabric_save_workflowstep.py'
],
zip_safe=True)

0 comments on commit 112bebf

Please sign in to comment.