Skip to content

Commit c88a8e3

Browse files
authored
Merge pull request #176 from mvdbeek/new_release
Prepare 0.10.7 release
2 parents d4093c8 + dfe6986 commit c88a8e3

File tree

5 files changed

+48
-42
lines changed

5 files changed

+48
-42
lines changed

.github/workflows/ci.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,26 @@ jobs:
2828
TOXENV=$(echo $TOXENV | sed 's/\.//') tox
2929
env:
3030
TOXENV: py${{ matrix.python-version }}-${{ matrix.tox-action }}
31+
deploy:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v1
35+
with:
36+
fetch-depth: 1
37+
submodules: true
38+
- uses: actions/setup-python@v1
39+
with:
40+
python-version: '3.6'
41+
- name: Install dependencies
42+
run: |
43+
python3 -m pip install --upgrade pip setuptools
44+
python3 -m pip install --upgrade twine wheel
45+
- name: Create and check packages
46+
run: |
47+
make dist
48+
- name: Publish to PyPI
49+
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
50+
uses: pypa/gh-action-pypi-publish@v1.4.2
51+
with:
52+
user: __token__
53+
password: ${{ secrets.EPHEMERIS_PYPI_TOKEN }}

.travis.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

HISTORY.rst

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ History
55

66
.. to_doc
77
8+
---------------------
9+
0.10.7 (2021-06-08)
10+
---------------------
11+
12+
* Add option to `shed-tools test` for specifying a history name (thanks to
13+
`@natefoo`_). `Pull Request 173`_
14+
* workflow-to-tools: get tools from subworkflows (thanks to `@cat-bro`_).
15+
`Pull Request 170`_
16+
* Add pysam and continue if test fetching errors (thanks to `@mvdbeek`_).
17+
`Pull Request 128`_
18+
* Various updates to testing and CI infrastructure (thanks to `@jmchilton`_).
19+
`Pull Request 165`_
20+
* Handle terminal states in wait for install (thanks to `@mvdbeek`_).
21+
`Pull Request 161`_
22+
* Get all tools when searching for tool ids for testing
23+
(thanks to `@cat-bro`_). `Pull Request 159`_
24+
825
---------------------
926
0.10.6 (2020-05-04)
1027
---------------------
@@ -222,6 +239,12 @@ History
222239
and adapt them for usage as a library.
223240

224241
.. github_links
242+
.. _Pull Request 173: https://github.com/galaxyproject/ephemeris/pull/173
243+
.. _Pull Request 170: https://github.com/galaxyproject/ephemeris/pull/170
244+
.. _Pull Request 128: https://github.com/galaxyproject/ephemeris/pull/128
245+
.. _Pull Request 165: https://github.com/galaxyproject/ephemeris/pull/165
246+
.. _Pull Request 161: https://github.com/galaxyproject/ephemeris/pull/161
247+
.. _Pull Request 159: https://github.com/galaxyproject/ephemeris/pull/159
225248
.. _Pull Request 158: https://github.com/galaxyproject/ephemeris/pull/158
226249
.. _Pull Request 155: https://github.com/galaxyproject/ephemeris/pull/155
227250
.. _Pull Request 154: https://github.com/galaxyproject/ephemeris/pull/154
@@ -267,6 +290,7 @@ History
267290
.. _@abretaud: https://github.com/abretaud
268291
.. _@bgruening: https://github.com/bgruening
269292
.. _@blankenberg: https://github.com/blankenberg
293+
.. _@cat-bro: https://github.com/cat-bro
270294
.. _@rhpvorderman: https://github.com/rhpvorderman
271295
.. _@pcm32: https://github.com/pcm32
272296
.. _@jmchilton: https://github.com/jmchilton

docs/ephemeris.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ ephemeris.workflow\_install module
100100
:undoc-members:
101101
:show-inheritance:
102102

103-
104103
Module contents
105104
---------------
106105

src/ephemeris/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import yaml
55
from bioblend import galaxy
66

7-
__version__ = '0.10.6'
7+
__version__ = '0.10.7.dev0'
88

99
PROJECT_NAME = "ephemeris"
1010
PROJECT_OWNER = PROJECT_USERAME = "galaxyproject"

0 commit comments

Comments
 (0)