Skip to content

Commit

Permalink
Fixed bug with build index
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisgKent committed Dec 2, 2024
1 parent b2935f3 commit 37a190c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion primal_page/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.11.1"
__version__ = "1.11.2"
6 changes: 4 additions & 2 deletions primal_page/build_index.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ def parse_version(
version_dict["ampliconsize"] = info.ampliconsize
version_dict["articbedversion"] = info.articbedversion.value

#
version_dict["collections"] = info.collections
# Add the collections text
version_dict["collections"] = sorted(
(x.value for x in info.collections),
) # Sort the collections

if info.refselect: # Only add if it exists
version_dict["refselect"] = info.refselect
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "primal-page"
version = "1.11.1"
version = "1.11.2"
description = "Tooling and schemas for the primerschemes index"
authors = ["ChrisKent <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 37a190c

Please sign in to comment.