Skip to content
Open
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
6 changes: 3 additions & 3 deletions .devcontainer/dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#compatability with Tensorflow 2.6.0 as per https://www.tensorflow.org/install/source#gpu
ARG PYTHON_VERSION=3.9
#compatibility with Tensorflow 2.6.0 as per https://www.tensorflow.org/install/source#gpu
ARG PYTHON_VERSION=3.10
ARG UBUNTU_VERSION=noble
ARG POETRY_VERSION=1.6.1
ARG POETRY_VERSION=1.8.2
ARG CUDA_VERSION=12.6.1-base-ubuntu24.04

FROM nvidia/cuda:$CUDA_VERSION
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
defaults:
run:
shell: bash
Expand Down Expand Up @@ -66,11 +66,11 @@ jobs:

steps:
- uses: actions/checkout@v5
- name: Set up Python 3.9
- name: Set up Python 3.10
id: setup-python
uses: actions/setup-python@v6
with:
python-version: "3.9"
python-version: "3.10"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
Expand Down
Loading