-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Why === I missed the significance of `--locked` vs `--frozen` when setting up for publishing. What changed ============ - Using `--frozen` to _verify_ `uv.lock` but permit metadata changes (like the package `version` that gets updated prior to publishing) - Adding missing package classifiers Test plan ========= Can we publish? Can we install? Does the installed package work?
- Loading branch information
1 parent
1a24d9c
commit 8b7034d
Showing
4 changed files
with
15 additions
and
7 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -6,7 +6,19 @@ authors = [{ name = "Replit", email = "[email protected]" }] | |
license = { file = "LICENSE" } | ||
keywords = ["rpc", "websockets"] | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
requires-python = ">=3.11,<4" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
|
||
"Intended Audience :: Developers", | ||
"Topic :: Internet", | ||
|
||
"License :: OSI Approved :: MIT License", | ||
|
||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
dependencies = [ | ||
"pydantic==2.9.2", | ||
"aiochannel>=1.2.1", | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.