pyhabitat 1.0.11__tar.gz → 1.0.14__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.

Potentially problematic release.


This version of pyhabitat might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyhabitat
3
- Version: 1.0.11
3
+ Version: 1.0.14
4
4
  Summary: A lightweight library for detecting system environment, GUI, and build properties.
5
5
  Author-email: George Clayton Bennett <george.bennett@memphistn.gov>
6
6
  License-Expression: MIT
@@ -110,7 +110,7 @@ Key Question: "What could I do next?"
110
110
 
111
111
  | Function | Description |
112
112
  | :--- | :--- |
113
- | `open_text_file_in_default_app()` | Smoothly opens a text file for editing (for configuration editing prompted by a CLI flag). |
113
+ | `open_text_file_for_editing()` | Smoothly opens a text file for editing (for configuration editing prompted by a CLI flag). |
114
114
 
115
115
  </details>
116
116
 
@@ -177,7 +177,7 @@ Use this function to smoothly open a text file for editing.
177
177
  Ideal use case: Edit a configuration file, if prompted by a CLI command like 'config --textedit'.
178
178
 
179
179
  ```python
180
- open_text_file_in_default_app(filepath=Path('./config.json'))
180
+ open_text_file_for_editing(filepath=Path('./config.json'))
181
181
  ```
182
182
  </details>
183
183
 
@@ -95,7 +95,7 @@ Key Question: "What could I do next?"
95
95
 
96
96
  | Function | Description |
97
97
  | :--- | :--- |
98
- | `open_text_file_in_default_app()` | Smoothly opens a text file for editing (for configuration editing prompted by a CLI flag). |
98
+ | `open_text_file_for_editing()` | Smoothly opens a text file for editing (for configuration editing prompted by a CLI flag). |
99
99
 
100
100
  </details>
101
101
 
@@ -162,7 +162,7 @@ Use this function to smoothly open a text file for editing.
162
162
  Ideal use case: Edit a configuration file, if prompted by a CLI command like 'config --textedit'.
163
163
 
164
164
  ```python
165
- open_text_file_in_default_app(filepath=Path('./config.json'))
165
+ open_text_file_for_editing(filepath=Path('./config.json'))
166
166
  ```
167
167
  </details>
168
168
 
@@ -18,9 +18,9 @@ from .environment import (
18
18
  is_windows_portable_executable,
19
19
  is_macos_executable,
20
20
  is_pipx,
21
- is_interactive_terminal,
21
+ interactive_terminal_is_available,
22
22
  web_browser_is_available,
23
- open_text_file_in_default_app,
23
+ open_text_file_for_editing,
24
24
  )
25
25
 
26
26
  # Optional: Set __all__ for explicit documentation and cleaner imports
@@ -42,7 +42,7 @@ __all__ = [
42
42
  'is_windows_portable_executable',
43
43
  'is_macos_executable',
44
44
  'is_pipx',
45
- 'is_interactive_terminal',
45
+ 'interactive_terminal_is_available',
46
46
  'web_browser_is_available',
47
- 'open_text_file_in_default_app',
47
+ 'open_text_file_for_editing',
48
48
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyhabitat
3
- Version: 1.0.11
3
+ Version: 1.0.14
4
4
  Summary: A lightweight library for detecting system environment, GUI, and build properties.
5
5
  Author-email: George Clayton Bennett <george.bennett@memphistn.gov>
6
6
  License-Expression: MIT
@@ -110,7 +110,7 @@ Key Question: "What could I do next?"
110
110
 
111
111
  | Function | Description |
112
112
  | :--- | :--- |
113
- | `open_text_file_in_default_app()` | Smoothly opens a text file for editing (for configuration editing prompted by a CLI flag). |
113
+ | `open_text_file_for_editing()` | Smoothly opens a text file for editing (for configuration editing prompted by a CLI flag). |
114
114
 
115
115
  </details>
116
116
 
@@ -177,7 +177,7 @@ Use this function to smoothly open a text file for editing.
177
177
  Ideal use case: Edit a configuration file, if prompted by a CLI command like 'config --textedit'.
178
178
 
179
179
  ```python
180
- open_text_file_in_default_app(filepath=Path('./config.json'))
180
+ open_text_file_for_editing(filepath=Path('./config.json'))
181
181
  ```
182
182
  </details>
183
183
 
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
 
7
7
  [project]
8
8
  name = "pyhabitat"
9
- version = "1.0.11"
9
+ version = "1.0.14"
10
10
  #dynamic = ["version"] #
11
11
  authors = [
12
12
  { name="George Clayton Bennett", email="george.bennett@memphistn.gov" },
File without changes
File without changes