-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path0003-Update-Python-environment-manager-to-use-virtual-env.patch
More file actions
44 lines (41 loc) · 1.38 KB
/
0003-Update-Python-environment-manager-to-use-virtual-env.patch
File metadata and controls
44 lines (41 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
From a2bc1fb571798987e1a040dbd434041a08b5d97e Mon Sep 17 00:00:00 2001
From: Reuben Bowlby <reuben@hummbl.io>
Date: Fri, 2 Jan 2026 18:07:58 -0500
Subject: [PATCH 3/3] Update Python environment manager to use virtual
environments and add observability.py to SOURCES.txt
---
.vscode/settings.json | 2 +-
base120.egg-info/SOURCES.txt | 4 +++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 433dee7..09b031d 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,5 +1,5 @@
{
- "python-envs.defaultEnvManager": "ms-python.python:system",
+ "python-envs.defaultEnvManager": "ms-python.python:venv",
"python-envs.pythonProjects": [],
"python.analysis.typeCheckingMode": "strict",
"python.analysis.generateWithTypeAnnotation": true,
diff --git a/base120.egg-info/SOURCES.txt b/base120.egg-info/SOURCES.txt
index 3dce60a..7b9b10f 100644
--- a/base120.egg-info/SOURCES.txt
+++ b/base120.egg-info/SOURCES.txt
@@ -2,9 +2,11 @@ LICENSE
README.md
pyproject.toml
base120/__init__.py
+base120/observability.py
base120.egg-info/PKG-INFO
base120.egg-info/SOURCES.txt
base120.egg-info/dependency_links.txt
base120.egg-info/requires.txt
base120.egg-info/top_level.txt
-tests/test_corpus.py
\ No newline at end of file
+tests/test_corpus.py
+tests/test_observability.py
\ No newline at end of file
--
2.52.0