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
9 changes: 6 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ jobs:
- name: Install click
run: pip install click!=8.3.0
- name: Run Tests
run: hatch run test_all.py3.10:test
run: hatch run test_all.py3.10:pytest -n 2 tests
timeout-minutes: 10

test_py_311:
runs-on: ubuntu-latest
Expand All @@ -47,7 +48,8 @@ jobs:
- name: Install click
run: pip install click!=8.3.0
- name: Run Tests
run: hatch run test_all.py3.11:test
run: hatch run test_all.py3.11:pytest -n 2 tests
timeout-minutes: 10

test_py_312:
runs-on: ubuntu-latest
Expand All @@ -65,7 +67,8 @@ jobs:
- name: Install click
run: pip install click!=8.3.0
- name: Run Tests
run: hatch run test_all.py3.12:test
run: hatch run test_all.py3.12:pytest -n 2 tests
timeout-minutes: 10

lint:
runs-on: ubuntu-latest
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this packages will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.113] - 2026-01-28

### Added

- Mass spectrometry mapper (#1122)
- Qiacuity dPCR - add handle for first column containing the well (#1129)

## [0.1.112] - 2025-12-15

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/allotropy/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.112"
__version__ = "0.1.113"
Loading