openapi-generator-cli 7.16.0__tar.gz → 7.18.0__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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openapi-generator-cli
3
- Version: 7.16.0
3
+ Version: 7.18.0
4
4
  Summary: CLI for openapi generator
5
5
  Project-URL: Documentation, https://github.com/OpenAPITools/openapi-generator#3---usage
6
6
  Project-URL: Homepage, https://openapi-generator.tech
@@ -12,7 +12,6 @@ Keywords: cli,generator,openapi
12
12
  Classifier: License :: OSI Approved :: Apache Software License
13
13
  Classifier: Programming Language :: Python
14
14
  Classifier: Programming Language :: Python :: 3 :: Only
15
- Classifier: Programming Language :: Python :: 3.9
16
15
  Classifier: Programming Language :: Python :: 3.10
17
16
  Classifier: Programming Language :: Python :: 3.11
18
17
  Classifier: Programming Language :: Python :: 3.12
@@ -20,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.13
20
19
  Classifier: Programming Language :: Python :: Implementation :: CPython
21
20
  Classifier: Programming Language :: Python :: Implementation :: PyPy
22
21
  Classifier: Typing :: Typed
23
- Requires-Python: <4,>=3.9
22
+ Requires-Python: <4,>=3.10
24
23
  Provides-Extra: jdk4py
25
24
  Requires-Dist: jdk4py<22,>=21.0.4.1; (python_version >= '3.10') and extra == 'jdk4py'
26
25
  Description-Content-Type: text/markdown
@@ -65,7 +64,7 @@ pip install openapi-generator-cli
65
64
  pip install openapi-generator-cli==4.3.1
66
65
  ```
67
66
 
68
- You can also install with [`jdk4py`] instead of `java` binary. (`python>=3.10` is required)
67
+ You can also install with [`jdk4py`] instead of `java` binary.
69
68
 
70
69
  ```sh
71
70
  pip install openapi-generator-cli[jdk4py]
@@ -38,7 +38,7 @@ pip install openapi-generator-cli
38
38
  pip install openapi-generator-cli==4.3.1
39
39
  ```
40
40
 
41
- You can also install with [`jdk4py`] instead of `java` binary. (`python>=3.10` is required)
41
+ You can also install with [`jdk4py`] instead of `java` binary.
42
42
 
43
43
  ```sh
44
44
  pip install openapi-generator-cli[jdk4py]
@@ -28,7 +28,7 @@ def run(args: list[str] | None = None) -> subprocess.CompletedProcess[bytes]:
28
28
  """
29
29
  java_path: Path | str | None
30
30
  try:
31
- from jdk4py import JAVA
31
+ from jdk4py import JAVA # noqa: PLC0415
32
32
 
33
33
  java_path = JAVA
34
34
  except ImportError:
@@ -4,7 +4,7 @@ requires = [ "hatchling" ]
4
4
 
5
5
  [project]
6
6
  name = "openapi-generator-cli"
7
- version = "7.16.0"
7
+ version = "7.18.0"
8
8
  description = "CLI for openapi generator"
9
9
  readme = "README.md"
10
10
  keywords = [
@@ -14,12 +14,11 @@ keywords = [
14
14
  ]
15
15
  license = { text = "APACHE 2.0" }
16
16
  authors = [ { name = "OpenAPI Generator community", email = "team@openapitools.org" } ]
17
- requires-python = ">=3.9,<4"
17
+ requires-python = ">=3.10,<4"
18
18
  classifiers = [
19
19
  "License :: OSI Approved :: Apache Software License",
20
20
  "Programming Language :: Python",
21
21
  "Programming Language :: Python :: 3 :: Only",
22
- "Programming Language :: Python :: 3.9",
23
22
  "Programming Language :: Python :: 3.10",
24
23
  "Programming Language :: Python :: 3.11",
25
24
  "Programming Language :: Python :: 3.12",