Skip to content

Commit

Permalink
[CHORE] Cycle out Python 3.8, cycle in Python 3.13.
Browse files Browse the repository at this point in the history
  • Loading branch information
rescrv committed Dec 17, 2024
1 parent 6558172 commit d255f81
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/python/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
python-version:
description: "Python version to use"
required: false
default: "3.8"
default: "3.9"
runs:
using: "composite"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
python_versions:
description: 'Python versions to test (as json array)'
required: false
default: '["3.8"]'
default: '["3.9"]'
type: string
property_testing_preset:
description: 'Property testing preset'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-chromadb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
python-version: '3.9'
- name: Install setuptools_scm
run: python -m pip install setuptools_scm
- name: Get Release Version
Expand All @@ -50,7 +50,7 @@ jobs:
python-tests:
uses: ./.github/workflows/_python-tests.yml
with:
python_versions: '["3.8", "3.9", "3.10", "3.11", "3.12"]'
python_versions: '["3.9", "3.10", "3.11", "3.12", "3.13"]'
property_testing_preset: 'normal'

javascript-client-tests:
Expand Down

0 comments on commit d255f81

Please sign in to comment.