diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e7be29c..c72a7ce 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.7 +current_version = 2.0.8 commit = True tag = True tag_name = v{new_version} diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index c49d2e7..e7f3863 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -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 diff --git a/Dockerfile b/Dockerfile index ddef77c..156948d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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" diff --git a/genotype_api/__init__.py b/genotype_api/__init__.py index 962c851..8cb37b5 100644 --- a/genotype_api/__init__.py +++ b/genotype_api/__init__.py @@ -1 +1 @@ -__version__ = "2.0.7" +__version__ = "2.0.8" diff --git a/setup.py b/setup.py index 6adc575..d659f15 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -29,5 +29,5 @@ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], - python_requires=">=3.10", + python_requires=">=3.11", )