Skip to content

Commit 0804e23

Browse files
chore(deps): add traitlets dependency
1 parent 34134ed commit 0804e23

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
# In your eox-elements-jupyter repo's .github/workflows/publish.yml
2-
31
name: Publish to PyPI
42

53
on:
64
push:
75
branches:
8-
- main # Or whatever branch your JS repo pushes to
6+
- main
97

108
jobs:
119
build-and-publish:

eoxelements/_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Version pinning for JS components and Python package
2-
__eox_map_version__ = "1.26.2" # Update via CI/CD
3-
__eox_layercontrol_version__ = "1.3.1" # Update via CI/CD
4-
__version__ = "0.1.0" # Python package version
2+
__eox_map_version__ = "1.26.2"
3+
__eox_layercontrol_version__ = "1.3.1"
4+
__version__ = "0.1.1"

pyproject.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "eoxelements"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
description = "Jupyter notebook wrapper for EOxElements web components"
55
authors = [
66
{ name = "EOX", email = "silvester.pari@eox.at" }
@@ -9,10 +9,15 @@ license = "MIT"
99
readme = "README.md"
1010
requires-python = ">=3.8"
1111
dependencies = [
12-
"anywidget>=0.6.0",
13-
"ipywidgets>=8.0.0"
12+
"anywidget>=0.9.0",
13+
"ipywidgets>=8.0.0",
14+
"traitlets"
1415
]
1516

1617
[build-system]
1718
requires = ["setuptools>=61.0", "wheel"]
1819
build-backend = "setuptools.build_meta"
20+
21+
[project.urls]
22+
Homepage = "https://github.com/EOX-A/EOxElements-Jupyter"
23+
Issues = "https://github.com/EOX-A/EOxElements-Jupyter/issues"

0 commit comments

Comments
 (0)