Skip to content

Commit 8cbb2cb

Browse files
committed
Changed bytes
1 parent c7deed3 commit 8cbb2cb

4 files changed

Lines changed: 66 additions & 50 deletions

File tree

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.15t
1+
3.14

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name = "pyconus-2026-tutorial"
33
version = "0.1.0"
44
description = "Python Performance Lab: Sharpening Your Instincts — PyCon US 2026 tutorial"
55
readme = "README.md"
6-
requires-python = ">=3.13"
7-
dependencies = ["numpy>=2.0"]
6+
requires-python = ">=3.12"
7+
dependencies = ["numpy>=2.0,<2.4"]
88

99
[dependency-groups]
1010
dev = ["pytest>=8.0", "pytest-codspeed>=5.0.1"]

rounds/3_dna/solution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .baseline import find_matches as _baseline
99

1010

11-
def find_matches(fasta_path: str, pattern: bytes.split) -> list[tuple[str, list[int]]]:
11+
def find_matches(fasta_path: str, pattern: bytes) -> list[tuple[str, list[int]]]:
1212
"""Find every FASTA record whose sequence contains ``pattern``.
1313
1414
Returns ``[(record_id, [positions...]), ...]`` in file order.

0 commit comments

Comments
 (0)