Skip to content
This repository was archived by the owner on Aug 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,16 @@ instructions, because git commits are used to generate release notes:

<!-- scriv-insert-here -->

<a id='changelog-20.0.0'></a>
## v20.0.0 (2025-04-06)
Comment thread
Abdul-Muqadim-Arbisoft marked this conversation as resolved.
Outdated

- [Improvement] Migrate packaging from setup.py/setuptools to pyproject.toml/hatch. (by @Abdul-Muqadim-Arbisoft)
- For more details view tutor core PR: https://github.com/overhangio/tutor/pull/1163

- [Improvement] Add hatch_build.py in sdist target to fix the installation issues (by @dawoudsheraz)

- 💥[Feature] Upgrade to teak. (by @Abdul-Muqadim-Arbisoft)

<a id='changelog-19.0.0'></a>
## v19.0.0 (2024-12-09)

Expand Down

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ classifiers = [
"Programming Language :: Python :: 3.12"
]
dependencies = [
"tutor>=19.0.0,<20.0.0",
"tutor>=20.0.0,<21.0.0",
"click_repl>=0.3.0"
]
# these fields will be set by hatch_build.py
dynamic = ["version"]

[project.optional-dependencies]
dev = [
"tutor[dev]>=19.0.0,<20.0.0",
"tutor[dev]>=20.0.0,<21.0.0",
"black",
"pylint"
]
Expand Down
2 changes: 1 addition & 1 deletion tutorwebui/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "19.0.0"
__version__ = "20.0.0"
Loading