Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.13.0 prep #180

Merged
merged 4 commits into from
Sep 28, 2023
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
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

windows_build:
if: false # disable for now because is broken
name: Build Windows command line
runs-on: windows-2019
steps:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
reads, then push that call up to the parent node. Code still works as normal
on the existing (soon to be old) panels.

- When reporting panel version in JSON file and stderr logging, only had
the "main" version of the collection of panels, eg "20220705" for tb.
Changed to also report the specific panel used, eg "20220705/202206".

## [0.12.2]

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def read(*names, **kwargs):

setup(
name="mykrobe",
version="0.12.2",
version="0.13.0",
license="MIT",
description="Antibiotic resistance prediction in minutes",
author="Phelim Bradley",
Expand Down
2 changes: 1 addition & 1 deletion src/mykrobe/cmds/amr.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def ref_data_from_args(args):
"lineage_json": species_dir.json_file("lineage"),
"ncbi_names_json": species_dir.json_file("ncbi_names"),
"kmer": species_dir.kmer(),
"version": species_dir.version(),
"version": species_dir.version() + "/" + species_dir.panel_name,
"species_phylo_group": species_dir.species_phylo_group(),
}

Expand Down