Skip to content

Commit f9925a5

Browse files
authored
Merge pull request #443 from P2GX/release-0.9.13
Release `0.9.13`
2 parents 4158b20 + 1a2cac3 commit f9925a5

File tree

5 files changed

+153
-365
lines changed

5 files changed

+153
-365
lines changed

.github/workflows/release.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish to PyPI
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
build-and-publish:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Set up Python
15+
uses: actions/setup-python@v5
16+
with:
17+
python-version: "3.12"
18+
- name: Install the package
19+
run: python -m pip install --editable .[test]
20+
- name: Run tests
21+
run: pytest
22+
- name: Install build libraries
23+
run: python3 -m pip install build
24+
- name: Build package
25+
run: python3 -m build
26+
- name: Publish package to PyPI
27+
uses: pypa/gh-action-pypi-publish@release/v1
28+
with:
29+
password: ${{ secrets.PYPI_TOKEN }}

.gpsea_ci_cachedir/variant_cache/MT_11778_11778_G_A.json

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

docs/user-guide/analyses/measurements.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ We execute the analysis by running
122122
... pheno_scorer=pheno_scorer,
123123
... )
124124

125-
>>> result.pval
126-
0.741216622359659
125+
>>> result.pval # doctest: +ELLIPSIS
126+
0.7412166223596...
127127

128128
Show data frame with scores
129129

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gpsea"
7-
version = "0.9.12"
7+
version = "0.9.13"
88
authors = [
9-
{name = "Lauren Rekerle", email="lauren.rekerle@jax.org"},
10-
{name = "Daniel Danis", email="daniel.danis@bih-charite.de"},
11-
{name = "Peter Robinson", email="peter.robinson@bih-charite.de"},
12-
]
9+
{ name = "Lauren Rekerle", email = "lauren.rekerle@jax.org" },
10+
{ name = "Daniel Danis", email = "daniel.danis@bih-charite.de" },
11+
{ name = "Peter Robinson", email = "peter.robinson@bih-charite.de" },
12+
]
1313
description = "Discover genotype-phenotype correlations with GA4GH phenopackets"
1414
readme = "README.md"
1515
requires-python = ">=3.10"
@@ -30,7 +30,7 @@ classifiers = [
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
3232
"Intended Audience :: Science/Research",
33-
"Topic :: Scientific/Engineering :: Bio-Informatics"
33+
"Topic :: Scientific/Engineering :: Bio-Informatics",
3434
]
3535
dependencies = [
3636
"hpo-toolkit>=0.3.0",

0 commit comments

Comments
 (0)