-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from genouest/sort
Sort downloads in proper alphabetical order
- Loading branch information
Showing
7 changed files
with
71 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Lint, test and publish | ||
|
||
on: ["push"] | ||
|
||
jobs: | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
- name: Install Flake8 | ||
run: | | ||
pip install flake8 | ||
- name: Flake8 | ||
run: flake8 --ignore=E501,W504 biomaj_download/*.py biomaj_download/download | ||
|
||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
- name: Install requirements | ||
run: | | ||
sudo apt update | ||
sudo apt install libcurl4-openssl-dev libssl-dev | ||
pip install pytest | ||
python setup.py install | ||
- name: Run tests | ||
run: | | ||
LOCAL_IRODS=0 NETWORK=0 pytest -v tests/biomaj_tests.py | ||
pypi: | ||
runs-on: ubuntu-latest | ||
needs: [lint, test] | ||
name: Deploy release to Pypi | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
- name: Python install | ||
run: pip install -U pip setuptools build | ||
- name: Build a binary wheel and a source tarball | ||
run: python -m build --sdist --wheel --outdir dist/ . | ||
- name: Publish distribution 📦 to PyPI | ||
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
password: ${{ secrets.pypi_password }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
3.2.12: | ||
Sort downloads in proper alphabetical order | ||
|
||
3.2.11: | ||
fix direct handler in case of plugin usage | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
[bdist_wheel] | ||
universal=1 | ||
|
||
[metadata] | ||
description-file = README.md | ||
|
||
[flake8] | ||
ignore = E501,W504 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,11 +22,11 @@ | |
'description': 'BioMAJ download service', | ||
'long_description': README + '\n\n' + CHANGES, | ||
'long_description_content_type': 'text/markdown', | ||
'author': 'Olivier Sallou', | ||
'url': 'http://biomaj.genouest.org', | ||
'download_url': 'http://biomaj.genouest.org', | ||
'author_email': '[email protected]', | ||
'version': '3.2.11', | ||
'author': 'GenOuest platform', | ||
'url': 'https://biomaj.genouest.org', | ||
'download_url': 'https://biomaj.genouest.org', | ||
'author_email': '[email protected]', | ||
'version': '3.2.12', | ||
'classifiers': [ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
|