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: 0 additions & 6 deletions .github/workflows/test-e2e-plot-vizro-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ jobs:
- python-version: "3.13"
hatch-env: all.py3.13
os: ubuntu-latest
- python-version: "3.14"
hatch-env: all.py3.14
os: ubuntu-latest
- python-version: "3.10"
hatch-env: lower-bounds
os: ubuntu-latest
Expand Down Expand Up @@ -96,9 +93,6 @@ jobs:
- python-version: "3.13"
hatch-env: all.py3.13
os: ubuntu-latest
- python-version: "3.14"
hatch-env: all.py3.14
os: ubuntu-latest
- python-version: "3.10"
hatch-env: lower-bounds
os: ubuntu-latest
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/test-unit-vizro-ai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ jobs:
- python-version: "3.13"
hatch-env: all.py3.13
os: ubuntu-latest
- python-version: "3.14"
hatch-env: all.py3.14
os: ubuntu-latest
- python-version: "3.10"
hatch-env: lower-bounds
os: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!--
A new scriv changelog fragment.

Uncomment the section that is right (remove the HTML comment wrapper).
-->

<!--
### Highlights ✨

- A bullet item for the Highlights ✨ category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX. ([#1](https://github.com/mckinsey/vizro/pull/1))

-->

### Removed

- Drop support for Python 3.14 until dependencies are updated. ([#1529](https://github.com/mckinsey/vizro/pull/1529))


<!--
### Added

- A bullet item for the Added category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX. ([#1](https://github.com/mckinsey/vizro/pull/1))

-->
<!--
### Changed

- A bullet item for the Changed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX. ([#1](https://github.com/mckinsey/vizro/pull/1))

-->
<!--
### Deprecated

- A bullet item for the Deprecated category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX. ([#1](https://github.com/mckinsey/vizro/pull/1))

-->
<!--
### Fixed

- A bullet item for the Fixed category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX. ([#1](https://github.com/mckinsey/vizro/pull/1))

-->
<!--
### Security

- A bullet item for the Security category with a link to the relevant PR at the end of your entry, e.g. Enable feature XXX. ([#1](https://github.com/mckinsey/vizro/pull/1))

-->
2 changes: 1 addition & 1 deletion vizro-ai/hatch.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[envs.all]

[[envs.all.matrix]]
python = ["3.10", "3.11", "3.12", "3.13", "3.14"]
python = ["3.10", "3.11", "3.12", "3.13"]

[envs.changelog]
dependencies = ["scriv"]
Expand Down
5 changes: 2 additions & 3 deletions vizro-ai/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
"Programming Language :: Python :: 3.13"
]
dependencies = [
"pandas",
Expand All @@ -32,7 +31,7 @@ dynamic = ["version"]
license-files = {paths = ["LICENSE.txt"]}
name = "vizro_ai"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.10,<3.14"

[project.optional-dependencies]
anthropic = ["langchain-anthropic"] # TODO: decide if we want to use this
Expand Down