Skip to content
Merged
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 .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# Don't cancel other jobs if one fails
fail-fast: false
matrix:
python-version: ['3.13', '3.12', '3.11', '3.10', '3.9']
python-version: ['3.13', '3.12', '3.11', '3.10']
uses: ./.github/workflows/_build_bodo_conda_linux_comm.yml
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -36,7 +36,7 @@ jobs:
fail-fast: false
matrix:
# On pull requests, only test building for 3.13
python-version: ${{ fromJson(github.event_name == 'pull_request' && '["3.13"]' || '["3.13", "3.12", "3.11", "3.10", "3.9"]') }}
python-version: ${{ fromJson(github.event_name == 'pull_request' && '["3.13"]' || '["3.13", "3.12", "3.11", "3.10"]') }}
uses: ./.github/workflows/_build_bodo_conda_linux_comm.yml
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -49,7 +49,7 @@ jobs:
fail-fast: false
matrix:
# On pull requests, only test building for 3.13
python-version: ${{ fromJson(github.event_name == 'pull_request' && '["3.13"]' || '["3.13", "3.12", "3.11", "3.10", "3.9"]') }}
python-version: ${{ fromJson(github.event_name == 'pull_request' && '["3.13"]' || '["3.13", "3.12", "3.11", "3.10"]') }}
os: ['macos-13', 'macos-14', 'windows-latest']
uses: ./.github/workflows/_build_bodo_conda_native.yml
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ See Bodo DataFrames documentation to learn more: https://docs.bodo.ai/

## Installation

Note: Bodo DataFrames requires Python 3.9+.
Note: Bodo DataFrames requires Python 3.10+.

Bodo DataFrames can be installed using Pip or Conda:

Expand Down
Loading