Skip to content
Merged
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
9 changes: 9 additions & 0 deletions docs/assets/images/SOERP.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/ad.ico
Binary file not shown.
Binary file added docs/assets/images/deltaFlow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/mcerp.ico
Binary file not shown.
Binary file added docs/assets/images/nulapack.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
250 changes: 250 additions & 0 deletions docs/assets/images/pydoe.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/pyswarm.ico
Binary file not shown.
Binary file added docs/assets/images/qtop.ico
Binary file not shown.
15 changes: 15 additions & 0 deletions docs/assets/stylesheets/extra.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.md-typeset a,
.md-nav__link,
.md-tabs__link,
.md-header__topic,
.md-ellipsis {
color: inherit !important;
text-decoration: none !important;
}

.md-typeset a:hover,
.md-nav__link:hover,
.md-tabs__link:hover {
color: inherit !important;
text-decoration: none !important;
}
13 changes: 13 additions & 0 deletions docs/blogs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
icon: fontawesome/solid/newspaper
---

# Blogs

<div class="grid cards" markdown>

- <a href="ruff-and-uv.md" style="display:flex;align-items:center;gap:10px;font-size:1.1rem;line-height:1.35;"><strong>ruff and uv!</strong></a>

---

</div>
35 changes: 35 additions & 0 deletions docs/blogs/ruff-and-uv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
icon: fontawesome/solid/pen
---

# ruff and uv!

<div style="display:flex;align-items:center;gap:16px;margin-top:6px;margin-bottom:20px;">
<a href="https://docs.astral.sh/ruff/" target="_blank" rel="noopener"><img src="https://docs.astral.sh/ruff/assets/bolt.svg" alt="ruff" style="height:56px;"></a>
<a href="https://docs.astral.sh/uv/" target="_blank" rel="noopener"><img src="https://docs.astral.sh/uv/assets/logo-letter.svg" alt="uv" style="height:56px;"></a>
</div>

If you are building and maintaining Python packages, `ruff` and `uv` are one of the most practical combinations available today. Together, they create a development rhythm that feels both precise and lightweight: quick feedback, fewer moving parts, and a workflow that stays readable for individual maintainers and teams alike.

## Why `ruff`

`ruff` works like a careful editor that is also remarkably fast. It catches style and correctness issues early, enforces consistent conventions across files, and reduces noisy review cycles before code ever reaches pull requests. Because formatting and linting live in the same ecosystem, the codebase keeps a clean, coherent voice without requiring a stack of separate tools.

In practice, this means better maintainability and less friction. Contributors spend less time debating formatting details and more time improving logic, tests, and documentation.

## Why `uv`

`uv` brings speed and clarity to the parts of Python development that often feel repetitive: creating environments, installing dependencies, and running project commands. Its unified command surface makes daily workflows easier to remember and easier to document, which is especially valuable for open-source onboarding.

For package maintainers, the strongest advantage is reproducibility. When the setup path is predictable and quick, local development, CI checks, and release preparation stay aligned with fewer surprises.

## Minimal Setup

```bash
uv venv
uv pip install -e .
uv pip install ruff pytest
ruff check .
ruff format .
uv run pytest
```
Loading
Loading