Skip to content

Commit

Permalink
Release v0.13.0 prep (#180)
Browse files Browse the repository at this point in the history
* Disable windows build

* Add specific panel version to output

* Version bump 0.13.0

* Update changelog
  • Loading branch information
martinghunt authored Sep 28, 2023
1 parent a24d9bf commit 7f9a500
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
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

0 comments on commit 7f9a500

Please sign in to comment.