Skip to content

Commit 3fc2a54

Browse files
committed
pin altair dependency
1 parent 29d530e commit 3fc2a54

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

chartlets.py/CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
* Added `size` and removed `variant` property from `IconButton`
44
component to align with component in chartlets.js. (#124)
55

6-
* Removed pinning of `altair` dependency. (#132)
6+
* Updated dependencies
7+
- `altair>=6.0.0,<7.0.0` (#132)
78

89
## Version 0.1.7 (from 2025/12/03)
910

chartlets.py/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ dependencies:
55
# Library Dependencies
66
- python >=3.10,<3.14
77
# Optional Dependencies
8-
- altair
8+
- altair >=6.0.0,<7.0.0
99
# Demo Dependencies
1010
- pandas
1111
- pyaml

chartlets.py/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ exclude = [
4747

4848
[project.optional-dependencies]
4949
opt = [
50-
"altair",
50+
"altair>=6.0.0,<7.0.0",
5151
]
5252
dev = [
53-
"altair",
53+
"altair>=6.0.0,<7.0.0",
5454
"black",
5555
"flake8",
5656
"pytest",
@@ -67,7 +67,7 @@ doc = [
6767
"mkdocstrings-python"
6868
]
6969
demo = [
70-
"altair",
70+
"altair>=6.0.0,<7.0.0",
7171
"pyaml",
7272
"pandas",
7373
"tornado",

0 commit comments

Comments
 (0)