-
-
Notifications
You must be signed in to change notification settings - Fork 260
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: fix pyproject and poetry run test_server command (#746)
* chore: fix pyproject and poetry run test_server command * fix: fix set_token method and some typing issues * fix: improve Headers class by adding __getitem__ * fix: tests for macos * docs: improve docs
- Loading branch information
Showing
9 changed files
with
44 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,6 @@ name = "robyn" | |
version = "0.51.1" | ||
description = "A High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime." | ||
authors = [{ name = "Sanskar Jethi", email = "[email protected]" }] | ||
repository = "https://github.com/sparckles/robyn" | ||
documentation = "https://robyn.tech/" | ||
classifiers = [ | ||
"Development Status :: 3 - Alpha", | ||
"Environment :: Web Environment", | ||
|
@@ -40,13 +38,15 @@ robyn = "robyn.cli:run" | |
"templating" = ["jinja2 == 3.0.1"] | ||
|
||
[project.urls] | ||
Documentation = "https://robyn.tech/" | ||
Repository = "https://github.com/sparckles/robyn" | ||
Issues = "https://github.com/sparckles/robyn/issues" | ||
Changelog = "https://github.com/sparckles/robyn/blob/main/CHANGELOG.md" | ||
|
||
|
||
[tool.poetry] | ||
name = "robyn" | ||
version = "0.51.0" | ||
version = "0.51.1" | ||
description = "A High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime." | ||
authors = ["Sanskar Jethi <[email protected]>"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters