Skip to content

Commit

Permalink
Merge pull request #5 from genouest/20.05
Browse files Browse the repository at this point in the history
See if tests pass with 20.05
  • Loading branch information
abretaud committed Jan 6, 2021
2 parents 16be11d + 1806bc8 commit 167c6e4
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Python install
run: |
pip install -U pip setuptools nose
pip install -U pip setuptools nose ephemeris
python setup.py install
- name: Launch containers
run: |
export BM2G_GLOBAL_CONFIG_PATH=`pwd`/test-data/bm2g.yml
GAL_DOCKER=$(docker run -d -p 8080:80 -e GALAXY_CONFIG_ALLOW_LIBRARY_PATH_PASTE=True -v `pwd`/test-data/:/data/ quay.io/bgruening/galaxy:19.09)
sleep 180 # Wait for the container to be ready
GAL_DOCKER=$(docker run -d -p 8080:80 -e GALAXY_CONFIG_ALLOW_LIBRARY_PATH_PASTE=True -v `pwd`/test-data/:/data/ quay.io/bgruening/galaxy:20.05)
galaxy-wait -g http://localhost:8080 --timeout 300
docker exec -i $GAL_DOCKER install-tools /data/tools.yml
docker exec -i $GAL_DOCKER supervisorctl restart galaxy:
echo "-------------"
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ By default, relative file paths will be interpreted as relative to `${data.dir}/

## Changes

- 2.2.0
- Fixed errors with Galaxy 20.05

- 2.1.0
- Fixed errors with Galaxy >19.05 (also fixes in Galaxy: https://github.com/galaxyproject/galaxy/issues/8792 and in IUC: https://github.com/galaxyproject/tools-iuc/pull/2634)

Expand Down
2 changes: 1 addition & 1 deletion biomaj2galaxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

standard_library.install_aliases()

__version__ = '2.1.0'
__version__ = '2.2.0'


CONTEXT_SETTINGS = dict(auto_envvar_prefix='BM2G', help_option_names=['-h', '--help'])
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="biomaj2galaxy",
version='2.1.0',
version='2.2.0',
description="Command-line utility to assist in interconnecting BioMAJ (https://biomaj.genouest.org/) with Galaxy (http://galaxyproject.org/).",
author="Anthony Bretaudeau",
author_email="[email protected]",
Expand All @@ -22,9 +22,6 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
])
2 changes: 1 addition & 1 deletion test-data/bm2g.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ __default: local

local:
url: "http://localhost:8080/"
apikey: "admin"
apikey: "fakekey"

0 comments on commit 167c6e4

Please sign in to comment.