"docs/en/vscode:/vscode.git/clone" did not exist on "c9b6c2df711d9e75607e7da55ca560d6a33f2c9f"
Unverified Commit 8efef8f1 authored by Janna's avatar Janna Committed by GitHub
Browse files

bump to python 3.10 (#3337)

* remove math dependency from python 3.9

* bump to python 3.10

* add 3.12
parent c0fc7172
......@@ -44,11 +44,11 @@ jobs:
echo "One or more test file(s) has changed."
echo "List of all the files that have changed: ${{ steps.changed-tasks.outputs.tasks_all_modified_files }}"
- name: Set up Python 3.9
- name: Set up Python 3.10
if: steps.changed-tasks.outputs.tasks_any_modified == 'true' || steps.changed-tasks.outputs.api_any_modified == 'true'
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: '3.10'
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
......
......@@ -22,10 +22,10 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: '3.10'
cache: pip
cache-dependency-path: pyproject.toml
- name: Pre-Commit
......@@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: true
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11", "3.12"]
timeout-minutes: 30
steps:
- name: Checkout Code
......
......@@ -16,7 +16,7 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
requires-python = ">=3.10"
license = { "text" = "MIT" }
dependencies = [
"accelerate>=0.26.0",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment