From c793b81db7fac4cf70fa3d8a19f90825bf6ecd1e Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Mon, 23 Mar 2026 18:00:50 -0400 Subject: [PATCH 1/2] test: document that we now support pytest --- README.md | 4 ++++ pyproject.toml | 1 + 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index a717b40a..e203e336 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,10 @@ or test the installed version (requires installing dev dependencies): pip install -e '.[dev]' # if you installed from a local clone python run_tests.py dev +recently, we also made the project compatible with Pytest, so this will run the tests too: + + pytest + And you can download our [open samples on GitHub](https://github.com/ReadAlongs/OpenSamples) to run your first alignments. diff --git a/pyproject.toml b/pyproject.toml index 1237f21a..c5fd7f77 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -61,6 +61,7 @@ dev = [ "httpx>=0.24.1", "pep440>=0.1.2", "pre-commit>=2.6.0", + "pytest", ] api = [ From 92d2ab6c5da983f8d1a88c1b71c948fa99002760 Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Mon, 23 Mar 2026 18:02:52 -0400 Subject: [PATCH 2/2] chore: bump patch version to 1.2.2 (#297) --- readalongs/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readalongs/_version.py b/readalongs/_version.py index 2cee92fd..b912b6ed 100644 --- a/readalongs/_version.py +++ b/readalongs/_version.py @@ -1,3 +1,3 @@ -VERSION = "1.2.1" +VERSION = "1.2.2" READALONG_FILE_FORMAT_VERSION = "1.2"