gentroutils 0.1.5__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,28 @@
1
+ name: Dev tests
2
+
3
+ on:
4
+ pull_request:
5
+
6
+ env:
7
+ PYTHON_VERSION_DEFAULT: "3.10.8"
8
+ jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v4
13
+ with:
14
+ fetch-depth: 1
15
+ - name: Set up Python
16
+ uses: actions/setup-python@v5
17
+ with:
18
+ python-version: 3.10.8
19
+ - name: Install uv
20
+ uses: yezz123/setup-uv@v4
21
+ - name: Install rye
22
+ uses: eifinger/setup-rye@v4
23
+ with:
24
+ version: "latest"
25
+ - name: Sync dependencies
26
+ run: rye sync
27
+ - name: Run checks
28
+ run: rye run pre-commit run --all-files
@@ -0,0 +1,72 @@
1
+ name: Release
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ env:
9
+ PYTHON_VERSION_DEFAULT: "3.10.8"
10
+
11
+ jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 1
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version: 3.10.8
22
+ - name: Install uv
23
+ uses: yezz123/setup-uv@v4
24
+ - name: Install rye
25
+ uses: eifinger/setup-rye@v4
26
+ with:
27
+ version: "latest"
28
+ - name: Sync dependencies
29
+ run: rye sync
30
+ - name: Build package
31
+ run: make build
32
+ - name: Store the distribution packages
33
+ uses: actions/upload-artifact@v4
34
+ with:
35
+ name: python-package-distributions
36
+ path: dist/
37
+
38
+ test-release:
39
+ needs: build
40
+ runs-on: ubuntu-latest
41
+ environment: TEST
42
+ permissions:
43
+ id-token: write # IMPORTANT: mandatory for trusted publishing
44
+ steps:
45
+ - name: Download all the dists
46
+ uses: actions/download-artifact@v4
47
+ with:
48
+ name: python-package-distributions
49
+ path: dist/
50
+ - name: Publish distribution 📦 to TestPyPI
51
+ uses: pypa/gh-action-pypi-publish@release/v1
52
+ with:
53
+ repository-url: https://test.pypi.org/legacy/
54
+ packages-dir: dist/
55
+
56
+ release:
57
+ needs: test-release
58
+ runs-on: ubuntu-latest
59
+ environment: PyPI
60
+ permissions:
61
+ id-token: write # IMPORTANT: mandatory for trusted publishing
62
+ steps:
63
+ - name: Download all the dists
64
+ uses: actions/download-artifact@v4
65
+ with:
66
+ name: python-package-distributions
67
+ path: dist/
68
+ - name: Publish distribution 📦 to PyPI
69
+ uses: pypa/gh-action-pypi-publish@release/v1
70
+ with:
71
+ repository-url: https://upload.pypi.org/legacy/
72
+ packages-dir: dist/
@@ -0,0 +1,35 @@
1
+ name: Trigger Release
2
+
3
+ "on":
4
+ schedule:
5
+ - cron: "0 11 * * 2"
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ pull-request:
10
+ runs-on: ubuntu-latest
11
+ environment: DEV
12
+ steps:
13
+ - uses: actions/create-github-app-token@v1
14
+ id: trigger-token
15
+ with:
16
+ app-id: ${{ vars.TRIGGER_WORKFLOW_GH_APP_ID}}
17
+ private-key: ${{ secrets.TRIGGER_WORKFLOW_GH_APP_KEY }}
18
+ - uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0
21
+ repository: opentargets/gentropy
22
+ token: ${{ secrets.GITHUB_TOKEN }}
23
+ persist-credentials: false
24
+ - uses: actions/checkout@v3
25
+ - name: pull-request
26
+ uses: diillson/auto-pull-request@v1.0.1
27
+ with:
28
+ source_branch: "dev"
29
+ destination_branch: "main"
30
+ pr_title: "chore: trigger release process"
31
+ pr_body: ":warning: *This PR requires a MERGE COMMIT (Don't squash or rebase!)*"
32
+ pr_label: "auto-pr"
33
+ pr_draft: false
34
+ pr_allow_empty: true
35
+ github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,56 @@
1
+ name: Tag
2
+
3
+ "on":
4
+ push:
5
+ branches: ["main"]
6
+
7
+ concurrency:
8
+ group: deploy
9
+ # NOTE: prevent hickups with semantic-release
10
+ cancel-in-progress: false
11
+
12
+ env:
13
+ PYTHON_VERSION_DEFAULT: "3.10.8"
14
+
15
+ jobs:
16
+ tag:
17
+ # NOTE: only trigger the workflow when the commit is not from the GitHubActions bot (prevent self-triggering)
18
+ if: github.event.commits[0].author.name != 'github-actions'
19
+ runs-on: ubuntu-latest
20
+ concurrency: release
21
+ environment: DEV
22
+ permissions:
23
+ contents: write
24
+
25
+ steps:
26
+ # NOTE: commits using GITHUB_TOKEN does not trigger workflows and we want to trigger PiPY from tag
27
+ - uses: actions/create-github-app-token@v1
28
+ id: trigger-token
29
+ with:
30
+ app-id: ${{ vars.TRIGGER_WORKFLOW_GH_APP_ID}}
31
+ private-key: ${{ secrets.TRIGGER_WORKFLOW_GH_APP_KEY }}
32
+ - uses: actions/checkout@v4
33
+ with:
34
+ fetch-depth: 0
35
+ repository: opentargets/gentroutils
36
+ token: ${{ secrets.GITHUB_TOKEN }}
37
+ persist-credentials: false
38
+ ref: main
39
+ - name: Python Semantic Release
40
+ id: semrelease
41
+ # v9.6.0 is required due to the python v3.12 in the newer version of semantic release action which
42
+ # breaks the poetry build command.
43
+ uses: python-semantic-release/python-semantic-release@v9.6.0
44
+ with:
45
+ github_token: ${{ steps.trigger-token.outputs.token }}
46
+
47
+ - name: Publish package to GitHub Release
48
+ uses: python-semantic-release/upload-to-gh-release@main
49
+ if: ${{ steps.semrelease.outputs.released }} == 'true'
50
+ with:
51
+ # NOTE: allow to start the workflow when push action on tag gets executed
52
+ # requires using GH_APP to authenitcate, otherwise push authorised with
53
+ # the GITHUB_TOKEN does not trigger the tag artifact workflow.
54
+ # see https://github.com/actions/create-github-app-token
55
+ github_token: ${{ secrets.GITHUB_TOKEN }}
56
+ tag: ${{ steps.semrelease.outputs.tag }}
@@ -0,0 +1,31 @@
1
+ name: Tests
2
+
3
+ on:
4
+ push:
5
+ branches: ["dev"]
6
+
7
+ env:
8
+ PYTHON_VERSION_DEFAULT: "3.10.8"
9
+ SKIP: no-commit-to-branch
10
+
11
+ jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ fetch-depth: 1
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v5
20
+ with:
21
+ python-version: 3.10.8
22
+ - name: Install uv
23
+ uses: yezz123/setup-uv@v4
24
+ - name: Install rye
25
+ uses: eifinger/setup-rye@v4
26
+ with:
27
+ version: "latest"
28
+ - name: Sync dependencies
29
+ run: rye sync
30
+ - name: Run checks
31
+ run: rye run pre-commit run --all-files
@@ -0,0 +1,17 @@
1
+ # python generated files
2
+ __pycache__/
3
+ *.py[oc]
4
+ build/
5
+ dist/
6
+ wheels/
7
+ *.egg-info
8
+
9
+ # venv
10
+ .venv
11
+
12
+ # covarage
13
+ .coverage
14
+ coverage.xml
15
+
16
+ # interrogate
17
+ interrogate_badge.svg
@@ -0,0 +1,77 @@
1
+ default_language_version:
2
+ python: python3.10
3
+ ci:
4
+ autoupdate_commit_msg: "chore: pre-commit autoupdate"
5
+ autofix_commit_msg: "chore: pre-commit auto fixes [...]"
6
+ repos:
7
+ - repo: local
8
+ hooks:
9
+ - id: check
10
+ name: check code
11
+ entry: make check
12
+ language: system
13
+ types: [python]
14
+ pass_filenames: false
15
+ stages: ["pre-commit"]
16
+
17
+ - repo: https://github.com/pre-commit/pre-commit-hooks
18
+ rev: v4.6.0
19
+ hooks:
20
+ - id: trailing-whitespace
21
+ stages: ["pre-commit"]
22
+ - id: end-of-file-fixer
23
+ stages: ["pre-commit"]
24
+ exclude: "CHANGELOG.md"
25
+ - id: debug-statements
26
+ stages: ["pre-commit"]
27
+ - id: check-merge-conflict
28
+ stages: ["pre-commit"]
29
+ - id: check-case-conflict
30
+ stages: ["pre-commit"]
31
+ - id: check-json
32
+ stages: ["pre-commit"]
33
+ exclude: (.vscode|.devcontainer)
34
+ - id: no-commit-to-branch
35
+ args:
36
+ - --branch=dev
37
+ stages: ["pre-commit"]
38
+ - id: check-toml
39
+ stages: ["pre-commit"]
40
+ - id: check-yaml
41
+ stages: ["pre-commit"]
42
+ - id: check-ast
43
+ stages: ["pre-commit"]
44
+ - id: debug-statements
45
+ stages: ["pre-commit"]
46
+ - id: check-docstring-first
47
+ stages: ["pre-commit"]
48
+
49
+
50
+ - repo: https://github.com/adrienverge/yamllint.git
51
+ rev: v1.35.1
52
+ hooks:
53
+ - id: yamllint
54
+ args: ["-d", "{rules: {line-length: {max: 200}}}"]
55
+ stages: ["pre-commit"]
56
+
57
+
58
+ - repo: https://github.com/pre-commit/pygrep-hooks
59
+ rev: v1.10.0
60
+ hooks:
61
+ - id: python-check-mock-methods
62
+ stages: ["pre-commit"]
63
+ - id: python-check-blanket-noqa
64
+ stages: ["pre-commit"]
65
+
66
+ - repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook
67
+ rev: v9.16.0
68
+ hooks:
69
+ - id: commitlint
70
+ additional_dependencies: ["@commitlint/config-conventional@18.6.3"]
71
+ stages: [commit-msg]
72
+
73
+ - repo: https://github.com/lovesegfault/beautysh
74
+ rev: v6.2.1
75
+ hooks:
76
+ - id: beautysh
77
+ stages: ["pre-commit"]
@@ -0,0 +1 @@
1
+ 3.10.14
@@ -0,0 +1,220 @@
1
+ # CHANGELOG
2
+
3
+
4
+
5
+ ## v0.1.5 (2024-08-13)
6
+
7
+ ### Ci
8
+
9
+ * ci: added needs flags to release jobs ([`3b84cdd`](https://github.com/opentargets/gentroutils/commit/3b84cdd3d4e158f172d29ccc27d033facd56e244))
10
+
11
+ * ci: add pypi release ([`271abbf`](https://github.com/opentargets/gentroutils/commit/271abbfe125f44db11c078f6b3ff91e7748551de))
12
+
13
+ ### Unknown
14
+
15
+ * Merge pull request #15 from opentargets/dev
16
+
17
+ chore: trigger release process ([`5740867`](https://github.com/opentargets/gentroutils/commit/57408679669c3e2427df680478baecc7e2873aec))
18
+
19
+
20
+ ## v0.1.4 (2024-08-13)
21
+
22
+ ### Ci
23
+
24
+ * ci: fix link to testpypi ([`aa19be5`](https://github.com/opentargets/gentroutils/commit/aa19be588dcf2e93e862efc9e3ab54e06c3e762e))
25
+
26
+ ### Unknown
27
+
28
+ * Merge pull request #14 from opentargets/dev
29
+
30
+ chore: trigger release process ([`bd68b60`](https://github.com/opentargets/gentroutils/commit/bd68b60c81230afe0fbbe49010ef2e130a12353b))
31
+
32
+
33
+ ## v0.1.3 (2024-08-13)
34
+
35
+ ### Ci
36
+
37
+ * ci: fix link to testpypi ([`b14085d`](https://github.com/opentargets/gentroutils/commit/b14085dd05bbb85c3e9a49742f59ff9043c391b0))
38
+
39
+ ### Unknown
40
+
41
+ * Merge pull request #13 from opentargets/dev
42
+
43
+ chore: trigger release process ([`79c17d9`](https://github.com/opentargets/gentroutils/commit/79c17d95baf1e7f7cdc0be3137426332b89badc7))
44
+
45
+
46
+ ## v0.1.2 (2024-08-13)
47
+
48
+ ### Ci
49
+
50
+ * ci: use original github token for testpypi ([`1e2e5af`](https://github.com/opentargets/gentroutils/commit/1e2e5af0aba88c4decf8a471d042b3f8c0487414))
51
+
52
+ ### Unknown
53
+
54
+ * Merge pull request #12 from opentargets/dev
55
+
56
+ chore: trigger release process ([`48c63ba`](https://github.com/opentargets/gentroutils/commit/48c63ba7ab4753ce8bd2767d53ba32d41257a087))
57
+
58
+
59
+ ## v0.1.1 (2024-08-13)
60
+
61
+ ### Ci
62
+
63
+ * ci: prevent second job run and fix build ([`422b3fc`](https://github.com/opentargets/gentroutils/commit/422b3fc78dcc869c464e0e722be6619dc444de05))
64
+
65
+ ### Unknown
66
+
67
+ * Merge pull request #11 from opentargets/dev
68
+
69
+ chore: trigger release process ([`bf30b0d`](https://github.com/opentargets/gentroutils/commit/bf30b0d95b065166620e67c866bb99b067fc7538))
70
+
71
+
72
+ ## v0.1.0 (2024-08-13)
73
+
74
+ ### Build
75
+
76
+ * build: precommit & interrogate ([`8ae6533`](https://github.com/opentargets/gentroutils/commit/8ae6533e757551fbe32d386725deeeb27def2ed7))
77
+
78
+ * build: docstring linting ([`5feea17`](https://github.com/opentargets/gentroutils/commit/5feea17a28241dd7f4ecd43ebb7c4e34e0fd8301))
79
+
80
+ * build: added deptry ([`179f196`](https://github.com/opentargets/gentroutils/commit/179f196e766185ba8a54a5292a2aedf80e45b4ab))
81
+
82
+ * build: added mypy ([`ccf0750`](https://github.com/opentargets/gentroutils/commit/ccf07504df5350063ad0c3cdc1e38876a14f5507))
83
+
84
+ * build: added pydoclint ([`633b3da`](https://github.com/opentargets/gentroutils/commit/633b3da1623c41da519c9ad5f0caf747648a051e))
85
+
86
+ * build: ruff setup ([`daddc69`](https://github.com/opentargets/gentroutils/commit/daddc6949bb2d8e39783e2837a85a3b853825590))
87
+
88
+ * build: dev setup make target ([`0dda8bd`](https://github.com/opentargets/gentroutils/commit/0dda8bdab571d925e2a42e66fa0dc7809b2da68f))
89
+
90
+ ### Chore
91
+
92
+ * chore: licence badge ([`93708ba`](https://github.com/opentargets/gentroutils/commit/93708bad3bbc1d65cc0f87faad4cbe14856bbf93))
93
+
94
+ * chore: badge ([`d92782b`](https://github.com/opentargets/gentroutils/commit/d92782b8ccced842e8fa853f00c298b432e759c8))
95
+
96
+ * chore: added licence ([`bac9b9d`](https://github.com/opentargets/gentroutils/commit/bac9b9d20279ce08623571fa29bf43d8d63fab83))
97
+
98
+ ### Ci
99
+
100
+ * ci: fix repo name in checkout action for tag ([`c49ee91`](https://github.com/opentargets/gentroutils/commit/c49ee911455468650a4e7230543c9060739c9182))
101
+
102
+ * ci: fix path to the semvar version ([`614f3a7`](https://github.com/opentargets/gentroutils/commit/614f3a753fb562264fb05189ee27c16a522cfcbc))
103
+
104
+ * ci: trigger release from main branch ([`9447be8`](https://github.com/opentargets/gentroutils/commit/9447be8627108b7924bcad0750d7c53f2babb100))
105
+
106
+ * ci: skip no-commit-to-branch on dev test ([`e214f6c`](https://github.com/opentargets/gentroutils/commit/e214f6c657eae9ed519cf552fc03639396cb2d45))
107
+
108
+ * ci: added manual trigger for release trigger job ([`911ba3f`](https://github.com/opentargets/gentroutils/commit/911ba3f42a81055dd006c8f1020ffdb315357eac))
109
+
110
+ * ci: improvements over dev branch tests" ([`4597b90`](https://github.com/opentargets/gentroutils/commit/4597b90227306822718c0364db8d8a336282cc95))
111
+
112
+ * ci: fix trigger date ([`da168b7`](https://github.com/opentargets/gentroutils/commit/da168b7153a5b0eb03319e0a248a704604bb9cca))
113
+
114
+ * ci: changed ga workflow names ([`caab806`](https://github.com/opentargets/gentroutils/commit/caab806457f36c84556422ef61eeed6a219e6bb6))
115
+
116
+ * ci: release schedule test ([`eaa132e`](https://github.com/opentargets/gentroutils/commit/eaa132ea06694110b969bd4b079f96f32ae80078))
117
+
118
+ * ci: release schedule test ([`c43d2ab`](https://github.com/opentargets/gentroutils/commit/c43d2ab659ddbc7ec2e22c2c1a07d136a725e4d5))
119
+
120
+ * ci: changed how uv and rye are installed ([`e7c9e5e`](https://github.com/opentargets/gentroutils/commit/e7c9e5e2dec910aa9cef2b14b1d88d4e669c057a))
121
+
122
+ * ci: ci test release ([`8c98b46`](https://github.com/opentargets/gentroutils/commit/8c98b46b40e5779eb789b3b510d0352dc45a34f0))
123
+
124
+ * ci: pr yaml ([`c65f137`](https://github.com/opentargets/gentroutils/commit/c65f1379d45bd1f1437fa816fa6fb4e5ae5f4737))
125
+
126
+ ### Documentation
127
+
128
+ * docs: added documentation over the cli ([`fff60a9`](https://github.com/opentargets/gentroutils/commit/fff60a91a933d075989803f570fea0c8d64ec50c))
129
+
130
+ * docs: readme scheleton ([`c3c7887`](https://github.com/opentargets/gentroutils/commit/c3c7887f633e89fb153ffd2a8981442e6fb58b92))
131
+
132
+ ### Feature
133
+
134
+ * feat: added DEV environment ([`6a44a9e`](https://github.com/opentargets/gentroutils/commit/6a44a9ede2a9b56a3f58873f458a1843abc3b422))
135
+
136
+ * feat: local pre-commit execution without action ([`4345691`](https://github.com/opentargets/gentroutils/commit/4345691c7e3a352b72d5003fbfe5781d7d111c90))
137
+
138
+ * feat: attempt to install rye with cargo ([`ce4fd37`](https://github.com/opentargets/gentroutils/commit/ce4fd37ed2483c353bc552e6d9e91b5f9883dc52))
139
+
140
+ * feat: gwas curation update script ([`31716bf`](https://github.com/opentargets/gentroutils/commit/31716bf7a62c097e19305023f9023b7338e404ee))
141
+
142
+ * feat: pytest setup and cli entrypoint ([`c107abd`](https://github.com/opentargets/gentroutils/commit/c107abd843efc6a60c6604e22ca5994fe46d3617))
143
+
144
+ * feat: package setup ([`0c5d4c3`](https://github.com/opentargets/gentroutils/commit/0c5d4c3186ae6ddc18f46e0e76ad690e08c8ec56))
145
+
146
+ ### Fix
147
+
148
+ * fix: fix dev branch test run ([`8430526`](https://github.com/opentargets/gentroutils/commit/8430526f911fbe91c58131056f091cbd11ef2e15))
149
+
150
+ * fix: fix dev branch test run ([`967c0b8`](https://github.com/opentargets/gentroutils/commit/967c0b83d3e1c4f6e9c7c2d909fbb71674ec8871))
151
+
152
+ * fix: run pre-commit by rye ([`7fbd06c`](https://github.com/opentargets/gentroutils/commit/7fbd06cbeb42563f6c2a66f768e490f554a7c07b))
153
+
154
+ * fix: typo in package name ([`10584a5`](https://github.com/opentargets/gentroutils/commit/10584a56790cf4693bd47ee3e50672bc4bb78068))
155
+
156
+ * fix: ensure pip is installed for pre-commit action ([`7d74378`](https://github.com/opentargets/gentroutils/commit/7d74378a45c307b9ae64cd6dfd707948113b5e7d))
157
+
158
+ * fix: debug v2 ([`332e0d5`](https://github.com/opentargets/gentroutils/commit/332e0d58dee315c9aa5f57f20464d1097c41cb59))
159
+
160
+ * fix: debug ci ([`cd0c7ed`](https://github.com/opentargets/gentroutils/commit/cd0c7eda865af9df5bf1ab65dfa405b3a13e605c))
161
+
162
+ * fix: add cargo to rc file ([`7e1340f`](https://github.com/opentargets/gentroutils/commit/7e1340f1fb4aa57092f149db0e9400d18a4a0cca))
163
+
164
+ * fix: moved ci file ([`c2626a2`](https://github.com/opentargets/gentroutils/commit/c2626a2479217e1e0e4a36470503d3a1f19f3021))
165
+
166
+ * fix: remove local log file ([`b2a80fc`](https://github.com/opentargets/gentroutils/commit/b2a80fceceeb34832ddc271c28c8de9363e3b745))
167
+
168
+ ### Unknown
169
+
170
+ * Merge pull request #10 from opentargets/dev
171
+
172
+ chore: trigger release process ([`0369439`](https://github.com/opentargets/gentroutils/commit/03694399a0f1f412950c81eb6a68e46af1be383d))
173
+
174
+ * Merge branch 'main' into dev ([`6d40028`](https://github.com/opentargets/gentroutils/commit/6d400282725abf414dba86f2d4cfda3b2a317c75))
175
+
176
+ * Merge pull request #9 from opentargets/dev
177
+
178
+ chore: trigger release process ([`59321a9`](https://github.com/opentargets/gentroutils/commit/59321a90ab91ea4d9d605db7ded429df932fa2e9))
179
+
180
+ * Merge pull request #8 from opentargets/dev
181
+
182
+ chore: trigger release process ([`d767f55`](https://github.com/opentargets/gentroutils/commit/d767f55bf5d5b895915415b54699d2a54d83fb5d))
183
+
184
+ * Merge pull request #7 from opentargets/dev
185
+
186
+ chore: trigger release process ([`e0eea67`](https://github.com/opentargets/gentroutils/commit/e0eea67f21a0b1e1c72be8b5b2d139029a5f7f51))
187
+
188
+ * Merge branch 'main' into dev ([`9669a40`](https://github.com/opentargets/gentroutils/commit/9669a405838289e8869c9f861e03134a65cf6825))
189
+
190
+ * Merge pull request #6 from opentargets/dev
191
+
192
+ chore: trigger release process ([`80475d0`](https://github.com/opentargets/gentroutils/commit/80475d0f727c93f67cb190537e16104752f1b9b2))
193
+
194
+ * Merge pull request #5 from opentargets/new-branch
195
+
196
+ ci: fix trigger date ([`f0550ea`](https://github.com/opentargets/gentroutils/commit/f0550eac15663684cbfe61725c7f669d0a54f7e8))
197
+
198
+ * Merge branch 'dev' into new-branch ([`7079a77`](https://github.com/opentargets/gentroutils/commit/7079a7730972409ccd844d53b11b504a8d7740a0))
199
+
200
+ * Merge pull request #4 from opentargets/new-branch
201
+
202
+ ci: changed ga workflow names ([`e8d9650`](https://github.com/opentargets/gentroutils/commit/e8d96501481b76c6b0704de73e54c8b6977af12a))
203
+
204
+ * Merge branch 'dev' into new-branch ([`75ec3da`](https://github.com/opentargets/gentroutils/commit/75ec3da21cb2ba1ef5e2d4101503f2769ff46562))
205
+
206
+ * Merge pull request #3 from opentargets/new-branch
207
+
208
+ ci: release schedule test ([`70389bb`](https://github.com/opentargets/gentroutils/commit/70389bb666079c15dbb84ebc0acf1cb9fdec1ee5))
209
+
210
+ * Merge branch 'dev' into new-branch ([`0fa0ec6`](https://github.com/opentargets/gentroutils/commit/0fa0ec66a129d53f40f7acbe74d15044303efaba))
211
+
212
+ * Merge pull request #2 from opentargets/new-branch
213
+
214
+ ci: release schedule test ([`10ba02a`](https://github.com/opentargets/gentroutils/commit/10ba02afd97595a9148a7e07bdfaaa5bb194f4b0))
215
+
216
+ * Merge branch 'dev' into new-branch ([`5f8e943`](https://github.com/opentargets/gentroutils/commit/5f8e9438c7f88c6d54c591d8e7ce3899efcf7a7d))
217
+
218
+ * Merge pull request #1 from opentargets/new-branch
219
+
220
+ ci: ci test release ([`1e07aa5`](https://github.com/opentargets/gentroutils/commit/1e07aa5cd4860c1c6c996b953a836f19028580db))