Skip to content

Commit

Permalink
Merge branch 'main' into issue-52
Browse files Browse the repository at this point in the history
  • Loading branch information
korikuzma committed Sep 29, 2023
2 parents fa2717f + ffd5dda commit 0ae914a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: "3.11"
cache: pip
cache-dependency-path: '**/setup.cfg'

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SELF:=$(firstword $(MAKEFILE_LIST))

PKG=eutils
PKGD=$(subst .,/,${PKG})
PYV:=3.8
PYV:=3.11
VEDIR=venv/${PYV}

UNAME = $(shell uname)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ uvicorn anyvar.restapi.main:app --reload
Or, more simply:

make devready
source venv/bin/activate
source venv/3.11/bin/activate

Then, start the REST server with:

Expand Down
2 changes: 1 addition & 1 deletion src/anyvar/extras/vcf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Support processing and manipulation of VCF objects."""
import logging
from typing import Dict, List, Optional
from typing import Dict, Optional

from ga4gh.vrs.extras.vcf_annotation import VCFAnnotator

Expand Down
1 change: 1 addition & 0 deletions tests/test_variation.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def test_put_allele(client, alleles):
resp_json = resp.json()
assert resp_json["messages"] == ['Unable to translate "BRAF amplification"']
assert "object" not in resp_json
assert "object_id" not in resp_json


def test_put_copy_number(client, copy_numbers):
Expand Down

0 comments on commit 0ae914a

Please sign in to comment.