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
2 changes: 1 addition & 1 deletion .github/workflows/positron-python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
matrix:
os: [ubuntu-latest]
# Run the tests on the oldest and most recent versions of Python.
python: ['3.9', '3.13', '3.14']
python: ['3.9', '3.14']

steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion extensions/positron-python/build/test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pydocstyle
prospector
pytest
flask
fastapi; python_version < '3.14'
fastapi
uvicorn
django
testresources
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ duckdb==1.4.2
fastcore==1.8.9; python_version == '3.9'
fastcore==1.8.16; python_version >= '3.10'
geopandas==1.0.1; python_version == '3.9'
geopandas==1.1.1; python_version >= '3.10' and python_version < '3.14'
geopandas==1.1.1; python_version >= '3.10'
google-cloud-bigquery==3.38.0
haystack-ai==2.20.0
holoviews==1.20.2; python_version == '3.9'
holoviews==1.22.0; python_version >= '3.10'
hvplot==0.11.3; python_version == '3.9'
hvplot==0.12.1; python_version >= '3.10'
ibis-framework[duckdb]==11.0.0; python_version < '3.14'
ibis-framework[duckdb]==11.0.0
ipykernel==6.31.0; python_version == '3.9'
ipykernel==7.1.0; python_version >= '3.10'
ipython==8.18.1; python_version == '3.9'
Expand Down Expand Up @@ -55,7 +55,7 @@ torch==2.9.1; python_version >= '3.10'
scipy==1.13.1; python_version == '3.9'
scipy==1.15.3; python_version == '3.10'
scipy==1.16.3; python_version >= '3.11'
snowflake-connector-python==4.0.0; python_version < '3.14'
snowflake-connector-python==4.0.0
SQLAlchemy==2.0.44

# putting this last like test-requirements.txt
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
databricks-sql-connector[pyarrow]
duckdb
fastcore
geopandas; python_version < '3.14'
geopandas
google-cloud-bigquery
haystack-ai
holoviews
hvplot
ibis-framework[polars]; python_version == '3.9'
ibis-framework[duckdb]; python_version >= '3.10' and python_version < '3.14'
ibis-framework[duckdb]; python_version >= '3.10'
ipykernel
ipython
ipywidgets
Expand All @@ -26,7 +26,7 @@ pytest-mock
syrupy
torch
scipy
snowflake-connector-python; python_version < '3.14'
snowflake-connector-python
sqlalchemy

# putting this last because holoviews is picky about dependency versions (including bokeh),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { CancellationToken, QuickPickItem } from 'vscode';
import { showQuickPickWithBack } from '../../../common/vscodeApis/windowApis';
import { CreateEnv } from '../../../common/utils/localize';

const SUPPORTED_UV_PYTHON_VERSIONS = ['3.13', '3.12', '3.11', '3.10', '3.9', '3.14'];
const SUPPORTED_UV_PYTHON_VERSIONS = ['3.14', '3.13', '3.12', '3.11', '3.10', '3.9'];

export function getUvPythonVersions(): { versions: string[] } {
return {
Expand Down
Loading