Skip to content

Commit

Permalink
Merge pull request #35 from waldiez/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
lazToum authored Nov 26, 2024
2 parents 8a86cf2 + 22fa9d7 commit 569012d
Show file tree
Hide file tree
Showing 7 changed files with 606 additions and 1,196 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [unreleased]

- Updated @waldiez/react to v0.1.14
- Added travel planning and guardrails examples
- Updated js dependencies
- Updated py dependencies

## v0.1.12

- Updated @waldiez/react to v0.1.12
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
"@jupyterlab/ui-components-extension": "^4.3.1",
"@lumino/algorithm": "^2.0.2",
"@lumino/widgets": "^2.5.0",
"@waldiez/react": "0.1.12"
"@waldiez/react": "0.1.14"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
Expand All @@ -99,11 +99,11 @@
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.14",
"@types/json-schema": "^7.0.15",
"@types/node": "^22.9.1",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/react-addons-linked-state-mixin": "^0.14.27",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"add": "^2.0.6",
"copyfiles": "^2.4.1",
"css-loader": "^7.1.2",
Expand All @@ -116,7 +116,7 @@
"mini-css-extract-plugin": "^2.9.2",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
Expand All @@ -125,8 +125,8 @@
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2",
"ts-jest": "^29.2.5",
"typescript": "~5.6.3",
"typescript-eslint": "^8.15.0",
"typescript": "~5.7.2",
"typescript-eslint": "^8.16.0",
"yarn-deduplicate": "^6.0.2",
"yjs": "^13.6.20"
},
Expand Down
10 changes: 6 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
dynamic = ["version", "description", "authors", "urls", "keywords"]
[project.optional-dependencies]
test = [
"coverage==7.6.7",
"coverage==7.6.8",
"pytest==8.3.3",
'pytest-datadir==1.5.0',
"pytest-cov==6.0.0",
Expand All @@ -50,9 +50,9 @@ dev = [
'pydocstyle==6.3.0',
'pylint==3.3.1',
'python-dotenv==1.0.1',
'ruff==0.7.4',
'ruff==0.8.0',
'toml==0.10.2',
'types-PyYAML==6.0.12',
'types-PyYAML==6.0.12.20240917',
'types-toml==0.10.8.20240310',
'yamllint==1.35.1',
]
Expand Down Expand Up @@ -217,13 +217,15 @@ ignore-paths = [
"^(.*)/build/*",
"^(.*)/dist/*",
"^(.*)/examples/*",
"^(.*)/notebooks/*",
"^(.*)/node_modules/*",
"^(.*)/waldiez_out/*",
".venv/*",
".local/.*",
"build/*",
"dist/*",
"examples/*",
"notebooks/*",
"node_modules/*",
"^(.*)/(.*).pyi",
"^(.*)/_version.py"
Expand All @@ -232,7 +234,7 @@ unsafe-load-any-extension = "no"

[tool.pylint.messages_control]
enable=["c-extension-no-member"]
[tool.pylint.fotmat]
[tool.pylint.format]
max-line-length=80
[tool.pylint.similarities]
ignore-imports="yes"
Expand Down
4 changes: 2 additions & 2 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ pylint==3.3.1
# via waldiez-jupyter (pyproject.toml)
python-dotenv==1.0.1
# via waldiez-jupyter (pyproject.toml)
ruff==0.7.4
ruff==0.8.0
# via waldiez-jupyter (pyproject.toml)
toml==0.10.2
# via waldiez-jupyter (pyproject.toml)
types-pyyaml==6.0.12
types-pyyaml==6.0.12.20240917
# via waldiez-jupyter (pyproject.toml)
types-toml==0.10.8.20240310
# via waldiez-jupyter (pyproject.toml)
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file was autogenerated by uv via the following command:
# uv pip compile pyproject.toml --output-file requirements/test.txt --extra=test --no-deps
coverage==7.6.7
coverage==7.6.8
# via waldiez-jupyter (pyproject.toml)
jupyter-server==2.14.2
# via waldiez-jupyter (pyproject.toml)
Expand Down
2 changes: 1 addition & 1 deletion src/widget.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Waldiez, WaldiezProps, importFlow } from '@waldiez/react';
import '@waldiez/react/dist/style.css';
import '@waldiez/react/dist/@waldiez.css';

import { ReactWidget, UseSignal } from '@jupyterlab/ui-components';

Expand Down
Loading

0 comments on commit 569012d

Please sign in to comment.