robotcode-analyze 0.32.3__tar.gz → 0.34.1__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.1
2
2
  Name: robotcode-analyze
3
- Version: 0.32.3
3
+ Version: 0.34.1
4
4
  Summary: RobotCode analyze plugin for Robot Framework
5
5
  Project-URL: Homepage, https://robotcode.io
6
6
  Project-URL: Donate, https://github.com/sponsors/d-biehl
@@ -25,8 +25,8 @@ Classifier: Programming Language :: Python :: Implementation :: PyPy
25
25
  Classifier: Topic :: Utilities
26
26
  Classifier: Typing :: Typed
27
27
  Requires-Python: >=3.8
28
- Requires-Dist: robotcode-plugin
29
- Requires-Dist: robotcode-robot
28
+ Requires-Dist: robotcode-plugin==0.34.1
29
+ Requires-Dist: robotcode-robot==0.34.1
30
30
  Requires-Dist: robotframework>=4.1.0
31
31
  Description-Content-Type: text/markdown
32
32
 
@@ -25,7 +25,11 @@ classifiers = [
25
25
  "Framework :: Robot Framework",
26
26
  "Framework :: Robot Framework :: Tool",
27
27
  ]
28
- dependencies = ["robotframework>=4.1.0", "robotcode-plugin", "robotcode-robot"]
28
+ dependencies = [
29
+ "robotframework>=4.1.0",
30
+ "robotcode-plugin==0.34.1",
31
+ "robotcode-robot==0.34.1",
32
+ ]
29
33
  dynamic = ["version"]
30
34
 
31
35
  [project.entry-points.robotcode]
@@ -0,0 +1 @@
1
+ __version__ = "0.34.1"
@@ -21,7 +21,7 @@ from ..__version__ import __version__
21
21
  def analyze(
22
22
  ctx: click.Context,
23
23
  ) -> Union[str, int, None]:
24
- """Analyzes a Robot Framework project.
24
+ """TODO: Analyzes a Robot Framework project.
25
25
 
26
26
  TODO: This is not implemented yet.
27
27
  """
@@ -1 +0,0 @@
1
- __version__ = "0.32.3"