Skip to content

Commit 1f1a48f

Browse files
authored
Merge pull request #1327 from biolink/remove_infores_import
Remove infores import
2 parents 21dc15d + ab2f567 commit 1f1a48f

File tree

7 files changed

+260
-290
lines changed

7 files changed

+260
-290
lines changed

.github/workflows/pypi-publish.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Publish Python Package
22

33
on:
4-
release:
5-
types: [created]
4+
push:
5+
branches: [no_branch_here]
66

77
jobs:
88
build-n-publish:

ChangeLog

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
CHANGES
22
=======
3+
3.4.2
4+
----
5+
move GeneToPhenotypeAssociation to GeneToPhenotypicFeatureAssociation
6+
7+
3.4.1
8+
-----
9+
recreate wheel with pydantic included
10+
311
3.4.0
412
-----
513
remove support for dynamic enumerations in anatomical context qualifier

biolink-model.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license: https://creativecommons.org/publicdomain/zero/1.0/
66

77
# Version should be kept in sync with primary Git repository release tag
88

9-
version: 3.4.0
9+
version: 3.4.2
1010

1111

1212
## ------------
@@ -203,7 +203,6 @@ subsets:
203203

204204
imports:
205205
- linkml:types
206-
- information-resource
207206

208207
types:
209208

@@ -527,7 +526,6 @@ slots:
527526
in_subset:
528527
- translator_minimal
529528

530-
531529
publication type:
532530
slot_uri: dct:type
533531
description: >-
@@ -9864,7 +9862,7 @@ classes:
98649862
- for use in describing the affect that the loss of function of a gene can have on exacerbating or ameliorating a symptom/phenotype
98659863
- if the relationship of the statement using this predicate is statistical in nature, please use `associated with likelihood` or one of its children.
98669864

9867-
gene to phenotype association:
9865+
gene to phenotypic feature association:
98689866
is_a: gene to disease or phenotypic feature association
98699867
exact_mappings:
98709868
- WBVocab:Gene-Phenotype-Association

biolink/model.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Auto generated from biolink-model.yaml by pythongen.py version: 0.9.0
2-
# Generation date: 2023-05-23T23:23:30
2+
# Generation date: 2023-05-23T17:37:18
33
# Schema: Biolink-Model
44
#
55
# id: https://w3id.org/biolink/biolink-model
@@ -25,7 +25,7 @@
2525
from linkml_runtime.utils.metamodelcore import Bool, URIorCURIE, XSDDate, XSDTime
2626

2727
metamodel_version = "1.7.0"
28-
version = "3.4.0"
28+
version = "3.4.2"
2929

3030
# Overwrite dataclasses _init_fn to add **kwargs in __init__
3131
dataclasses._init_fn = dataclasses_init_fn_with_kwargs

biolink/pydanticmodel.py

+244-280
Large diffs are not rendered by default.

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = biolink_model
33
description = 'A high level datamodel of biological entities and associations'
4-
version = 3.4.0
4+
version = 3.4.2
55

66
url = https://github.com/biolink/biolink-model
77
author = Harold Solbrig

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
REQUIREMENTS = FH.readlines()
77

88
NAME = 'biolink-model'
9-
VERSION = '3.4.0'
9+
VERSION = '3.4.2'
1010

1111
DESCRIPTION = 'Biolink Model: A high level datamodel of biological entities and associations'
1212
URL = 'https://github.com/biolink/biolink-model'

0 commit comments

Comments
 (0)