diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 15b280a1f0..7b02804c22 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,6 +17,6 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.9" + python-version: "3.10" cache: 'pip' # caching pip dependencies - uses: pre-commit/action@v3.0.0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 41eae1071a..2c98ddad7e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.9" + python-version: "3.10" cache: 'pip' # caching pip dependencies - uses: pre-commit/action@v3.0.0 @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - python_version: ["3.9", "3.10", "3.11"] + python_version: ["3.10", "3.11"] timeout-minutes: 10 steps: diff --git a/docker/Dockerfile b/docker/Dockerfile index 9154fcda3c..62904af722 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -6,7 +6,7 @@ ARG AXOLOTL_EXTRAS="" ARG AXOLOTL_ARGS="" ARG CUDA="118" ENV BNB_CUDA_VERSION=$CUDA -ARG PYTORCH_VERSION="2.0.1" +ARG PYTORCH_VERSION="2.1.2" ENV PYTORCH_VERSION=$PYTORCH_VERSION diff --git a/docker/Dockerfile-base b/docker/Dockerfile-base index e8f3c7f4e4..1de5537dac 100644 --- a/docker/Dockerfile-base +++ b/docker/Dockerfile-base @@ -7,8 +7,8 @@ FROM nvidia/cuda:$CUDA_VERSION-cudnn$CUDNN_VERSION-devel-ubuntu$UBUNTU_VERSION a ENV PATH="/root/miniconda3/bin:${PATH}" -ARG PYTHON_VERSION="3.9" -ARG PYTORCH_VERSION="2.0.1" +ARG PYTHON_VERSION="3.10" +ARG PYTORCH_VERSION="2.1.2" ARG CUDA="118" ARG TORCH_CUDA_ARCH_LIST="7.0 7.5 8.0 8.6 9.0+PTX" diff --git a/docker/Dockerfile-tests b/docker/Dockerfile-tests index e7df99b472..d5c0595a87 100644 --- a/docker/Dockerfile-tests +++ b/docker/Dockerfile-tests @@ -6,7 +6,7 @@ ARG AXOLOTL_EXTRAS="" ARG AXOLOTL_ARGS="" ARG CUDA="118" ENV BNB_CUDA_VERSION=$CUDA -ARG PYTORCH_VERSION="2.0.1" +ARG PYTORCH_VERSION="2.1.2" ARG GITHUB_REF="main" ENV PYTORCH_VERSION=$PYTORCH_VERSION