Skip to content

Commit

Permalink
Merge pull request #17 from cyberstudio/bump-minimum-python-version-t…
Browse files Browse the repository at this point in the history
…o-3.8

Drop python 3.7 support
  • Loading branch information
slowaner authored Nov 7, 2023
2 parents 22bcd13 + df31b82 commit 21806d1
Show file tree
Hide file tree
Showing 7 changed files with 72 additions and 116 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.7' ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.7' ]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7.12-slim-buster
FROM python:3.8.18-slim-bookworm

ARG PIP_INDEX_URL

Expand All @@ -15,7 +15,7 @@ RUN pip3 install poetry==1.1.12
WORKDIR /cybsi_cloud_sdk

# dependencies for poetry install
COPY poetry.lock pyproject.toml ./
COPY poetry.lock pyproject.toml README.md ./
COPY ./cybsi/__version__.py ./cybsi/py.typed ./cybsi/

RUN poetry install
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release History
===============

1.0.6 (2023-11-03)
------------------

- Drop python 3.7 support

1.0.5 (2023-11-01)
------------------

Expand Down
2 changes: 1 addition & 1 deletion cybsi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.5"
__version__ = "1.0.6"
__title__ = "cybsi-cloud-sdk"
__description__ = "Cybsi Cloud development kit"
__license__ = "Apache License 2.0"
Expand Down
Loading

0 comments on commit 21806d1

Please sign in to comment.