pyenv-native 0.1.22__tar.gz → 0.2.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/.gitignore +18 -4
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/PKG-INFO +1 -1
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/pyproject.toml +1 -1
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/src/pyenv_native_bootstrap/__init__.py +1 -1
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/LICENSE +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/README.md +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/src/pyenv_native_bootstrap/__main__.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/src/pyenv_native_bootstrap/bundle.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/src/pyenv_native_bootstrap/cli.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/src/pyenv_native_bootstrap/github.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/src/pyenv_native_bootstrap/installer.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/src/pyenv_native_bootstrap/platforms.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/tests/__init__.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/tests/test_bundle.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/tests/test_github.py +0 -0
- {pyenv_native-0.1.22 → pyenv_native-0.2.7}/tests/test_installer.py +0 -0
|
@@ -13,16 +13,31 @@
|
|
|
13
13
|
*.exe
|
|
14
14
|
*.pdb
|
|
15
15
|
|
|
16
|
-
# AI Memory
|
|
16
|
+
# AI Memory & Interaction artifacts
|
|
17
17
|
MEMORY.md
|
|
18
18
|
.gemini/
|
|
19
|
+
/walkthrough.md
|
|
20
|
+
/implementation_plan.md
|
|
21
|
+
/task.md
|
|
22
|
+
/analysis_results.md
|
|
23
|
+
/research_notes.md
|
|
24
|
+
/experiment_results.md
|
|
19
25
|
|
|
20
26
|
# IDEs
|
|
21
27
|
.vscode/
|
|
22
28
|
.idea/
|
|
23
29
|
|
|
24
|
-
# Rust
|
|
25
|
-
Cargo.lock
|
|
30
|
+
# Rust (Commit Cargo.lock for reproducible builds in apps)
|
|
31
|
+
# Cargo.lock
|
|
32
|
+
|
|
33
|
+
# Tauri & GUI
|
|
34
|
+
crates/pyenv-gui/src-tauri/target/
|
|
35
|
+
crates/pyenv-gui/target/
|
|
36
|
+
|
|
37
|
+
# Python Virtual Environments
|
|
38
|
+
/venv/
|
|
39
|
+
/.venv/
|
|
40
|
+
/env/
|
|
26
41
|
|
|
27
42
|
# OS Junk
|
|
28
43
|
.DS_Store
|
|
@@ -35,5 +50,4 @@ Thumbs.db
|
|
|
35
50
|
/repro_*.rs
|
|
36
51
|
/temp_*.rs
|
|
37
52
|
/clippy_errors.txt
|
|
38
|
-
/walkthrough.md
|
|
39
53
|
*.tmp
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyenv-native
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.7
|
|
4
4
|
Summary: Python install package for the native-first pyenv-native runtime bundles.
|
|
5
5
|
Project-URL: Homepage, https://github.com/imyourboyroy
|
|
6
6
|
Project-URL: Repository, https://github.com/imyourboyroy/pyenv-native
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|