Skip to content

Commit

Permalink
Merge branch 'main' into poetry-support
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrOertlin authored Mar 8, 2024
2 parents fb19808 + 38b2d65 commit af0d843
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.0.7
current_version = 2.0.8
commit = True
tag = True
tag_name = v{new_version}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"

- name: Set up Black
uses: psf/black@stable
Expand Down
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
FROM python:3.10-slim-bullseye
FROM docker.io/library/python:3.11-slim-bullseye as base

LABEL base_image="python:3.10-slim"
LABEL about.home="https://github.com/Clinical-Genomics/genotype-api"
LABEL about.tags="CG Core database and API"

Expand Down
2 changes: 1 addition & 1 deletion genotype_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.7"
__version__ = "2.0.8"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name="genotype_api",
version="2.0.7",
version="2.0.8",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -29,5 +29,5 @@
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
python_requires=">=3.11",
)

0 comments on commit af0d843

Please sign in to comment.