stata-cli 0.2.1__tar.gz → 0.2.2__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.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stata-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Command-line interface for running Stata commands via PyStata
5
5
  License: MIT
6
6
  Keywords: stata,cli,statistics,data-science
7
- Requires-Python: >=3.9
7
+ Requires-Python: >=3.10
8
8
  Description-Content-Type: text/markdown
9
9
  Requires-Dist: click>=8.0
10
10
  Provides-Extra: data
@@ -14,7 +14,7 @@ Requires-Dist: pandas; extra == "data"
14
14
  # stata-cli
15
15
 
16
16
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
17
- [![Python Version](https://img.shields.io/badge/python-%3E%3D3.9-blue.svg)](https://www.python.org/)
17
+ [![Python Version](https://img.shields.io/badge/python-%3E%3D3.10-blue.svg)](https://www.python.org/)
18
18
  [![npm version](https://img.shields.io/npm/v/stata-cli.svg)](https://www.npmjs.com/package/stata-cli)
19
19
 
20
20
  [中文版](README.zh.md) | [English](README.md)
@@ -50,7 +50,7 @@ A command-line interface for [Stata](https://www.stata.com/) via PyStata — bui
50
50
  ### Requirements
51
51
 
52
52
  - **Stata 17+** installed on your machine (provides the PyStata library)
53
- - Python 3.9+
53
+ - Python 3.10+
54
54
 
55
55
  ### Quick Start (Human Users)
56
56
 
@@ -1,7 +1,7 @@
1
1
  # stata-cli
2
2
 
3
3
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
- [![Python Version](https://img.shields.io/badge/python-%3E%3D3.9-blue.svg)](https://www.python.org/)
4
+ [![Python Version](https://img.shields.io/badge/python-%3E%3D3.10-blue.svg)](https://www.python.org/)
5
5
  [![npm version](https://img.shields.io/npm/v/stata-cli.svg)](https://www.npmjs.com/package/stata-cli)
6
6
 
7
7
  [中文版](README.zh.md) | [English](README.md)
@@ -37,7 +37,7 @@ A command-line interface for [Stata](https://www.stata.com/) via PyStata — bui
37
37
  ### Requirements
38
38
 
39
39
  - **Stata 17+** installed on your machine (provides the PyStata library)
40
- - Python 3.9+
40
+ - Python 3.10+
41
41
 
42
42
  ### Quick Start (Human Users)
43
43
 
@@ -1,9 +1,9 @@
1
1
  [project]
2
2
  name = "stata-cli"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  description = "Command-line interface for running Stata commands via PyStata"
5
5
  readme = "README.md"
6
- requires-python = ">=3.9"
6
+ requires-python = ">=3.10"
7
7
  license = {text = "MIT"}
8
8
  keywords = ["stata", "cli", "statistics", "data-science"]
9
9
 
@@ -0,0 +1 @@
1
+ __version__ = "0.2.2"
@@ -1,7 +1,5 @@
1
1
  """Stata CLI - run Stata commands from the terminal."""
2
2
 
3
- from __future__ import annotations
4
-
5
3
  import json
6
4
  import os
7
5
  import sys
@@ -1,7 +1,5 @@
1
1
  """Platform detection and Stata path auto-discovery."""
2
2
 
3
- from __future__ import annotations
4
-
5
3
  import os
6
4
  import platform
7
5
 
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stata-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: Command-line interface for running Stata commands via PyStata
5
5
  License: MIT
6
6
  Keywords: stata,cli,statistics,data-science
7
- Requires-Python: >=3.9
7
+ Requires-Python: >=3.10
8
8
  Description-Content-Type: text/markdown
9
9
  Requires-Dist: click>=8.0
10
10
  Provides-Extra: data
@@ -14,7 +14,7 @@ Requires-Dist: pandas; extra == "data"
14
14
  # stata-cli
15
15
 
16
16
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
17
- [![Python Version](https://img.shields.io/badge/python-%3E%3D3.9-blue.svg)](https://www.python.org/)
17
+ [![Python Version](https://img.shields.io/badge/python-%3E%3D3.10-blue.svg)](https://www.python.org/)
18
18
  [![npm version](https://img.shields.io/npm/v/stata-cli.svg)](https://www.npmjs.com/package/stata-cli)
19
19
 
20
20
  [中文版](README.zh.md) | [English](README.md)
@@ -50,7 +50,7 @@ A command-line interface for [Stata](https://www.stata.com/) via PyStata — bui
50
50
  ### Requirements
51
51
 
52
52
  - **Stata 17+** installed on your machine (provides the PyStata library)
53
- - Python 3.9+
53
+ - Python 3.10+
54
54
 
55
55
  ### Quick Start (Human Users)
56
56
 
@@ -1 +0,0 @@
1
- __version__ = "0.2.1"
File without changes