Skip to content

Latest commit

 

History

History
89 lines (63 loc) · 2.41 KB

development.md

File metadata and controls

89 lines (63 loc) · 2.41 KB

Development

Setting Up uv

This project is set up to use uv to manage Python and dependencies. First, be sure you have uv installed.

Then fork the jlevy/strif repo (having your own fork will make it easier to contribute) and clone it.

Basic Developer Workflows

The Makefile simply offers shortcuts to uv commands for developer convenience. (For clarity, GitHub Actions don't use the Makefile and just call uv directly.)

# First, install all dependencies and set up your virtual environment.
# This simply runs `uv sync --all-extras --dev` to install all packages,
# including dev dependencies and optional dependencies.
make install

# Run uv sync, lint, and test:
make

# Build wheel:
make build

# Linting:
make lint

# Run tests:
make test

# Delete all the build artifacts:
make clean

# Upgrade dependencies to compatible versions:
make upgrade

# To run tests by hand:
uv run pytest   # all tests
uv run pytest -s src/module/some_file.py  # one test, showing outputs

# Build and install current dev executables, to let you use your dev copies
# as local tools:
uv tool install --editable .

# Dependency management directly with uv:
# Add a new dependency:
uv add package_name
# Add a development dependency:
uv add --dev package_name
# Update to latest compatible versions (including dependencies on git repos):
uv sync --upgrade
# Update a specific package:
uv lock --upgrade-package package_name
# Update dependencies on a package:
uv add package_name@latest

# Run a shell within the Python environment:
uv venv
source .venv/bin/activate

See uv docs for details.

IDE setup

If you use VSCode or a fork like Cursor or Windsurf, you can install the following extensions:

  • Python

  • Based Pyright for type checking. Note that this extension works with non-Microsoft VSCode forks like Cursor.

Documentation


This file was built with simple-modern-uv.