-
-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation: Update change log for upcoming version 3.0.0 #552
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -6,20 +6,21 @@ Set up a development sandbox. | |||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
Acquire sources and create virtualenv. | ||||||||||||||||||||||||||||
```shell | ||||||||||||||||||||||||||||
git clone https://github.com/kennethreitz/responder | ||||||||||||||||||||||||||||
git clone https://github.com/kennethreitz/responder.git | ||||||||||||||||||||||||||||
cd responder | ||||||||||||||||||||||||||||
python3 -m venv .venv | ||||||||||||||||||||||||||||
source .venv/bin/activate | ||||||||||||||||||||||||||||
uv venv | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add context for The
+# Install uv (if not already installed)
+pip install uv
+
+# Create virtual environment (choose one method):
+# Using uv (recommended for faster installation):
uv venv
+
+# Or using standard tools:
+python -m venv .venv
+source .venv/bin/activate # On Unix/macOS
+# or
+.venv\Scripts\activate # On Windows 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
Install project in editable mode. | ||||||||||||||||||||||||||||
Install project in editable mode, including | ||||||||||||||||||||||||||||
all runtime extensions and development tools. | ||||||||||||||||||||||||||||
```shell | ||||||||||||||||||||||||||||
pip install --editable '.[full,develop,docs,release,test]' | ||||||||||||||||||||||||||||
uv pip install --editable '.[full,develop,docs,release,test]' | ||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
## Operations | ||||||||||||||||||||||||||||
Invoke linter and software tests. | ||||||||||||||||||||||||||||
```shell | ||||||||||||||||||||||||||||
source .venv/bin/activate | ||||||||||||||||||||||||||||
poe check | ||||||||||||||||||||||||||||
Comment on lines
+23
to
24
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Improve operations section documentation. The section needs improvements for clarity and cross-platform compatibility:
+# Ensure your virtual environment is activated:
+# On Unix/macOS:
source .venv/bin/activate
+# On Windows:
+.venv\Scripts\activate
+
+# Install poethepoet if not already installed:
+pip install poethepoet
+
+# Run checks (linting and tests):
poe check 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||
``` | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix duplicate word "Dependencies"
Combine the two bullet points to avoid repetition:
📝 Committable suggestion
🧰 Tools
🪛 LanguageTool
[duplication] ~47-~47: Possible typo: you repeated a word
Context: ... Modernized and trimmed list of runtime dependencies - Dependencies: Switched from WhiteNoise to ServeStati...
(ENGLISH_WORD_REPEAT_RULE)