Skip to content

Commit 55941c1

Browse files
committed
Merge remote-tracking branch 'origin/develop' into fix/always-yield-wildtype-transcript
2 parents ef49d91 + 7b96a36 commit 55941c1

9 files changed

Lines changed: 885 additions & 47 deletions

File tree

.github/workflows/claude-code-review.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,23 @@ jobs:
2424
pull-requests: read
2525
issues: read
2626
id-token: write
27+
env:
28+
HAS_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN != '' }}
2729

2830
steps:
2931
- name: Checkout repository
32+
if: env.HAS_TOKEN == 'true'
3033
uses: actions/checkout@v4
3134
with:
3235
fetch-depth: 1
3336

3437
- name: Run Claude Code Review
38+
if: env.HAS_TOKEN == 'true'
3539
id: claude-review
3640
uses: anthropics/claude-code-action@v1
3741
with:
3842
claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
3943
plugin_marketplaces: 'https://github.com/anthropics/claude-code.git'
4044
plugins: 'code-review@claude-code-plugins'
4145
prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}'
42-
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
43-
# or https://code.claude.com/docs/en/cli-reference for available options
4446

.github/workflows/python-test-conda-external.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
name: Unit tests external tools
22

33
on:
4-
push:
5-
branches: [ main, develop ]
64
pull_request:
7-
branches: [ main, develop ]
5+
branches: [ main, master ]
86

97
jobs:
108
tests-external:

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,21 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6-
## v4.0.0 - 2026-03-06
6+
## v4.0.0 - Unreleased
7+
8+
### `Added`
9+
10+
- [#107](https://github.com/KohlbacherLab/epytope/pull/107) Added `EnsemblRESTAdapter` and `PyEnsemblAdapter` as drop-in replacements for `MartsAdapter` [#103](https://github.com/KohlbacherLab/epytope/issues/103) [#106](https://github.com/KohlbacherLab/epytope/issues/106)
11+
- Added MHCFlurry 2.0 predictor class
712

813
### `Changed`
914

1015
- **BREAKING**: Minimum Python version raised to 3.11, build via `pyproject.toml`
1116
- **BREAKING**: Removed `mhcnuggets` predictors; `mhcflurry` is now optional (`pip install epytope[mhcflurry]`)
1217
- Full pandas 3.0 compatibility
13-
- Added MHCFlurry 2.0 predictor class
1418
- Migrated CI to `pytest` with Python 3.11/3.12 matrix
19+
- [#107](https://github.com/KohlbacherLab/epytope/pull/107) Switched CI tests from `MartsAdapter` (BioMart) to `EnsemblRESTAdapter` (REST API) to eliminate flaky BioMart failures
20+
- [#107](https://github.com/KohlbacherLab/epytope/pull/107) Restricted external tool CI tests to PRs targeting `main`/`master` only
1521

1622
### `Fixed`
1723

0 commit comments

Comments
 (0)