Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check_pr_label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [opened, synchronize, labeled, unlabeled]

jobs:
check-pr_label:
check_pr_label:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
Expand All @@ -13,7 +13,7 @@ jobs:
fetch-depth: 0 # Fetch all history for all branches and tags

- name: Check if the PR contains the label validation or no validation
id: prlabel_check
id: check_pr_label
if: |
! contains( github.event.pull_request.labels.*.name, 'validation') && ! contains( github.event.pull_request.labels.*.name, 'no validation')
run: |
Expand Down
3 changes: 3 additions & 0 deletions VERSIONLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Flowcell Parser Version Log

## 20251104.1
Remove unused db module

## 20230524.1
Add support for NovaSeqXPlus and improve readability

Expand Down
2 changes: 1 addition & 1 deletion flowcell_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
""" Main flowcell_parser module
"""
__version__ = '1.0.4'
__version__ = '1.0.5'
60 changes: 0 additions & 60 deletions flowcell_parser/db.py

This file was deleted.

1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
beautifulsoup4
couchdb
pyyaml