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
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
uses: ./.github/workflows/cibw_docker_image.yml
permissions: {packages: write}
with:
cibuildwheel_ver: "3.1.3"
cibuildwheel_ver: "3.2.1"
force_update: false

run_linting_checks:
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
fail-fast: false
matrix:
# For storage runs that are not full matrix will have only one Python version
python3: ${{fromJson( !inputs.run_full_matrix_of_persistent_tests && (needs.storage_type.outputs.storage != 'no') && '[11]' || '[8, 9, 10, 11, 12, 13]')}}
python3: ${{fromJson( !inputs.run_full_matrix_of_persistent_tests && (needs.storage_type.outputs.storage != 'no') && '[11]' || '[8, 9, 10, 11, 12, 13, 14]')}}
include:
- python_deps_ids: [""]
matrix_override: ${{fromJson(needs.common_config.outputs.linux_matrix)}}
Expand Down Expand Up @@ -359,7 +359,7 @@ jobs:
fail-fast: false
matrix:
# For storage runs that are not full matrix will have only one Python version
python3: ${{fromJson( !inputs.run_full_matrix_of_persistent_tests && (needs.storage_type.outputs.storage != 'no') && '[11]' || '[8, 9, 10, 11, 12, 13]')}}
python3: ${{fromJson( !inputs.run_full_matrix_of_persistent_tests && (needs.storage_type.outputs.storage != 'no') && '[11]' || '[8, 9, 10, 11, 12, 13, 14]')}}
include:
- matrix_override: ${{fromJson(needs.common_config.outputs.windows_matrix)}}
name: 3.${{matrix.python3}} Windows
Expand Down Expand Up @@ -451,7 +451,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python3: ${{ fromJson( !inputs.run_full_matrix_of_persistent_tests && (needs.storage_type.outputs.storage != 'no') && '[11]' || '[8, 9, 10, 11, 12, 13]' ) }}
python3: ${{ fromJson( !inputs.run_full_matrix_of_persistent_tests && (needs.storage_type.outputs.storage != 'no') && '[11]' || '[8, 9, 10, 11, 12, 13, 14]' ) }}
include:
- python_deps_ids: [""]
matrix_override: ${{fromJson(needs.common_config.outputs.macos_matrix)}}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/build_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,11 @@ jobs:
- name: Select Python (Linux)
if: matrix.os == 'linux'
run: |
#there are cp313 and cp313t
#there are cp313 and cp313t, cp314 and cp314t
if [[ "${{env.python_impl_name}}" == "cp313" ]]; then
echo /opt/python/cp313-cp313/bin >> $GITHUB_PATH;
elif [[ "${{env.python_impl_name}}" == "cp314" ]]; then
echo /opt/python/cp314-cp314/bin >> $GITHUB_PATH;
else
echo /opt/python/${{env.python_impl_name}}*/bin >> $GITHUB_PATH;
fi
Expand Down Expand Up @@ -643,4 +645,3 @@ jobs:
name: pytest-${{env.distinguishing_name}}
path: |
${{runner.temp}}/*test*

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ArcticDB is designed from the outset to be resilient; there is no single point o

### Prebuilt binary availability

| | PyPI (Python 3.8 - 3.13) | conda-forge (Python 3.9 - 3.13) |
| | PyPI (Python 3.8 - 3.14) | conda-forge (Python 3.9 - 3.14) |
| --------------------- | - | - |
| Linux (Intel/AMD) | ✔️ | ✔️ |
| Windows (Intel/AMD) | ✔️ | ➖ |
Expand Down
2 changes: 1 addition & 1 deletion docs/mkdocs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This section will cover installation, setup and basic usage. More details on bas

### Installation

ArcticDB supports Python 3.8 - 3.13.
ArcticDB supports Python 3.8 - 3.14.

To install, simply run:

Expand Down
2 changes: 1 addition & 1 deletion environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ dependencies:
# Build dependencies for tests
- libarrow
# Python dependences
- python >=3.12,<3.14
- python >=3.12,<3.15
- packaging
- numpy
- pandas
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Testing =
azure-storage-blob
azure-identity
coverage
asv; platform_system == 'Linux' or python_version < '3.13'
asv; platform_system == 'Linux' or python_version < '3.15'
virtualenv
pymongo
trustme
Expand Down
Loading