From 6aab4b7e5fa33a599214fb8e70ad4fa2d48adda0 Mon Sep 17 00:00:00 2001 From: Axel Dovskog Date: Mon, 27 Apr 2026 19:02:18 +0200 Subject: [PATCH] Change to .venv in DEVELOPER.md to ignore. --- DEVELOPER.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DEVELOPER.md b/DEVELOPER.md index 79a7bda34..a139b9e96 100644 --- a/DEVELOPER.md +++ b/DEVELOPER.md @@ -23,8 +23,8 @@ This document provides information useful to developers working on confluent-kaf 2. **Create Virtual Environment** ```bash - python3 -m venv venv - source venv/bin/activate # On Windows: venv\Scripts\activate + python3 -m venv .venv + source .venv/bin/activate # On Windows: .venv\Scripts\activate ``` **Note**: On Windows the variables for Visual Studio are named INCLUDE and LIB @@ -54,7 +54,7 @@ C_INCLUDE_PATH=/path/to/include LIBRARY_PATH=/path/to/lib python -m build 5. **Verify Setup** ```bash - python3 -c "import confluent_kafka; print('Setup successful!')" + python3 -c 'import confluent_kafka; print("Setup successful!")' #### Local Setup with UV