Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
permissions: write-all
strategy:
matrix:
python-ver: ["3.10", "3.11", "3.12", "3.13"]
python-ver: ["3.11", "3.12", "3.13", "3.14"]
steps:

- name: Check out the repo
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
rm -rf .devcontainer
mkdir .devcontainer
ENGINE_VERSION="${{ inputs.howso-engine-version }}"
declare -a arr=("3.10" "3.11" "3.12" "3.13")
declare -a arr=("3.11" "3.12" "3.13" "3.14")
for PY_VERSION in "${arr[@]}"; do
echo "Setting up .devcontainer for Python$PY_VERSION"
mkdir .devcontainer/$ENGINE_VERSION-python$PY_VERSION
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PY_VERSION=3.12
FROM mcr.microsoft.com/devcontainers/python:${PY_VERSION}-bullseye
FROM mcr.microsoft.com/devcontainers/python:${PY_VERSION}-bookworm

# A valid engine version must be provided as a build argument
ARG HOWSO_ENGINE_VERSION=undefined
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Howso Development Container [images](https://github.com/howsoai/howso-devcontain
### `<engine version>-python<python version>`

Examples:
- `1.2.3-python3.10`
- `1.2.3-python3.11`
- `5.6.7-python3.13`

This is the fully qualified tag that includes both the version of Howso Engine and python. This tag is immutable and will always reference the same image.
Expand All @@ -106,7 +106,7 @@ This is the fully qualified tag that includes both the version of Howso Engine a

Examples:
- `python3.11`
- `python3.10`
- `python3.14`

Each time a release occurs, the images are tagged with a shortened tag including only the python version. This tag is mutable and will refer to the image with the most recent release of Howso Engine running on the specified version of python.

Expand All @@ -120,7 +120,7 @@ Because of the mutable nature of this tag, it's possible to create confusion abo

## Supported Platforms

Compatible with Python versions: 3.10, 3.11, 3.12, and 3.13.
Compatible with Python versions: 3.11, 3.12, 3.13, and 3.14.

**Operating Systems**

Expand Down
Loading