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
10 changes: 5 additions & 5 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ build:

parallel:
matrix:
- PYTHON_VERSION: ['3.10', '3.11', '3.12', '3.13']
- PYTHON_VERSION: ['3.10', '3.11', '3.12', '3.13', '3.14']


test_orion [branch]:
Expand All @@ -67,7 +67,7 @@ upload_to_artifactory:
- vast-dev-builder

variables:
PYSDK_IMAGE: ${PYSDK_IMAGE_PREFIX}-3.13 # use latest Python image for deployment
PYSDK_IMAGE: ${PYSDK_IMAGE_PREFIX}-3.14 # use latest Python image for deployment

script:
- echo "Publishing artifacts from $PYSDK_IMAGE..."
Expand All @@ -88,7 +88,7 @@ upload_to_pypi:
- vast-dev-builder

variables:
PYSDK_IMAGE: ${PYSDK_IMAGE_PREFIX}-3.13 # use latest Python image for deployment
PYSDK_IMAGE: ${PYSDK_IMAGE_PREFIX}-3.14 # use latest Python image for deployment

when: manual
rules:
Expand Down Expand Up @@ -128,7 +128,7 @@ keep_latest_dev:

parallel:
matrix:
- PYTHON_VERSION: ['3.10', '3.11', '3.12', '3.13']
- PYTHON_VERSION: ['3.10', '3.11', '3.12', '3.13', '3.14']


# Keep images of released SDK versions available (so we can run them from Orion's CI on demand)
Expand All @@ -155,4 +155,4 @@ keep_latest_release:

parallel:
matrix:
- PYTHON_VERSION: ['3.10', '3.11', '3.12', '3.13']
- PYTHON_VERSION: ['3.10', '3.11', '3.12', '3.13', '3.14']
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For technical details about VAST Database architecture, see the [whitepaper](htt

### Requirements

- Linux client with Python 3.10 - 3.13, and network access to the VAST Cluster
- Linux client with Python 3.10 - 3.14, and network access to the VAST Cluster
- [Virtual IP pool configured with DNS service](https://support.vastdata.com/s/topic/0TOV40000000FThOAM/configuring-network-access-v50)
- [S3 access & secret keys on the VAST cluster](https://support.vastdata.com/s/article/UUID-4d2e7e23-b2fb-7900-d98f-96c31a499626)
- [Tabular identity policy with the proper permissions](https://support.vastdata.com/s/article/UUID-14322b60-d6a2-89ac-3df0-3dfbb6974182)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aws-requests-auth
ibis-framework~=10.1
pyarrow~=18.0
pyarrow>=18.0
pyarrow-hotfix==0.7
flatbuffers
packaging
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def _get_version_suffix():
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
],
Expand Down