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
25 changes: 13 additions & 12 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ package-mode = false

[tool.poetry.dependencies]
python = ">=3.11,<4"
nc-py-api = {extras = ["calendar"], version = "^0.24.2"}
nc-py-api = {version = "^0.30.3", extras = ["calendar"]}
Comment on lines 12 to +13

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe >=^0.30.3 can be used so normal updates update this dep automatically, not sure if that does happen in practice though.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe dependabot would be better suited for this? It looks to me it hasn't been explicitly enabled for Python packages yet.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ah yeah that works too.
I don't go that route often since dependabot creates a lot of PRs frequently. I try to only bump the deps before a release since before that it just sits in the repo unused (excluding dev setups).
but that's just a personal preference, ymmv.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, we can bump the dependencies manually too, that's fine.

langgraph = "1.*"
langchain = "^0.3.25"
ics = "^0.7.2"
Expand Down
Loading