From 2292d7a56df25b7fd457b53bcc7d5cfccdf1821c Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 3 Jun 2025 15:57:59 -0700 Subject: [PATCH] No need for a venv in Codex --- AGENTS.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index cb8848e..4a31f46 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,20 +1,14 @@ -# Repository maintenance notes +# AGENTS.md -This project uses a Python virtual environment for development and tests. +This project uses a Python environment for development and tests. ## Setting up a development environment -1. Create and activate a virtual environment: - - ```bash - python -m venv venv - source venv/bin/activate - ``` -2. Install the project with its test dependencies: +1. Install the project with its test dependencies: ```bash pip install -e '.[test]' ``` -3. Run the tests: +2. Run the tests: ```bash pytest ```