Skip to content

Commit 238fea4

Browse files
authored
00000: Update workflows to remove Python 3.9 (#26)
1 parent 6712eec commit 238fea4

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
permissions: write-all
3232
strategy:
3333
matrix:
34-
python-ver: ["3.9", "3.10", "3.11", "3.12"]
34+
python-ver: ["3.10", "3.11", "3.12", "3.13"]
3535
steps:
3636

3737
- name: Check out the repo
@@ -157,7 +157,7 @@ jobs:
157157
rm -rf .devcontainer
158158
mkdir .devcontainer
159159
ENGINE_VERSION="${{ inputs.howso-engine-version }}"
160-
declare -a arr=("3.9" "3.10" "3.11" "3.12")
160+
declare -a arr=("3.10" "3.11" "3.12", "3.13")
161161
for PY_VERSION in "${arr[@]}"; do
162162
echo "Setting up .devcontainer for Python$PY_VERSION"
163163
mkdir .devcontainer/$ENGINE_VERSION-python$PY_VERSION

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ a new or existing project create a `.devcontainer/devcontainer.json` file and co
3737

3838
```json
3939
{
40-
"name": "How So Engine",
41-
"image": "ghcr.io/howsoai/howso:19.0.5-python3.9",
40+
"name": "Howso Engine",
41+
"image": "ghcr.io/howsoai/howso:42.0.0-python3.13",
4242
"customizations": {
4343
"vscode": {
4444
"settings": {},
@@ -97,8 +97,8 @@ Howso Development Container [images](https://github.com/howsoai/howso-devcontain
9797
### `<engine version>-python<python version>`
9898

9999
Examples:
100-
- `1.2.3-python3.9`
101-
- `5.6.7-python3.12`
100+
- `1.2.3-python3.10`
101+
- `5.6.7-python3.13`
102102

103103
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.
104104

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

121121
## Supported Platforms
122122

123-
Compatible with Python versions: 3.9, 3.10, 3.11, and 3.12
123+
Compatible with Python versions: 3.10, 3.11, 3.12, and 3.13.
124124

125125
**Operating Systems**
126126

0 commit comments

Comments
 (0)