robotcode-plugin 1.9.0__tar.gz → 2.0.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: robotcode-plugin
3
- Version: 1.9.0
3
+ Version: 2.0.0
4
4
  Summary: Some classes for RobotCode plugin management
5
5
  Project-URL: Donate, https://opencollective.com/robotcode
6
6
  Project-URL: Documentation, https://github.com/robotcodedev/robotcode#readme
@@ -14,15 +14,16 @@ Classifier: Framework :: Robot Framework
14
14
  Classifier: Framework :: Robot Framework :: Tool
15
15
  Classifier: Operating System :: OS Independent
16
16
  Classifier: Programming Language :: Python
17
- Classifier: Programming Language :: Python :: 3.8
18
- Classifier: Programming Language :: Python :: 3.9
19
17
  Classifier: Programming Language :: Python :: 3.10
20
18
  Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
21
22
  Classifier: Programming Language :: Python :: Implementation :: CPython
22
23
  Classifier: Programming Language :: Python :: Implementation :: PyPy
23
24
  Classifier: Topic :: Utilities
24
25
  Classifier: Typing :: Typed
25
- Requires-Python: >=3.8
26
+ Requires-Python: >=3.10
26
27
  Requires-Dist: click>=8.1.0
27
28
  Requires-Dist: colorama>=0.4.6
28
29
  Requires-Dist: pluggy>=1.0.0
@@ -6,17 +6,18 @@ build-backend = "hatchling.build"
6
6
  name = "robotcode-plugin"
7
7
  description = 'Some classes for RobotCode plugin management'
8
8
  readme = { "file" = "README.md", "content-type" = "text/markdown" }
9
- requires-python = ">=3.8"
9
+ requires-python = ">=3.10"
10
10
  license = { text = "Apache-2.0" }
11
11
  keywords = []
12
12
  authors = [{ name = "Daniel Biehl", email = "dbiehl@live.de" }]
13
13
  classifiers = [
14
14
  "Development Status :: 5 - Production/Stable",
15
15
  "Programming Language :: Python",
16
- "Programming Language :: Python :: 3.8",
17
- "Programming Language :: Python :: 3.9",
18
16
  "Programming Language :: Python :: 3.10",
19
17
  "Programming Language :: Python :: 3.11",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Programming Language :: Python :: 3.14",
20
21
  "Programming Language :: Python :: Implementation :: CPython",
21
22
  "Programming Language :: Python :: Implementation :: PyPy",
22
23
  "Operating System :: OS Independent",
@@ -48,11 +49,11 @@ dev-mode-dirs = ["src"]
48
49
 
49
50
  [tool.hatch.build.targets.wheel]
50
51
  only-include = ["src/robotcode"]
51
- sources = ["src"]
52
+
52
53
 
53
54
  [tool.hatch.build.targets.sdist]
54
55
  only-include = ["src"]
55
56
 
56
57
  [tool.hatch.envs.build]
57
58
  detached = true
58
- python = "38"
59
+ python = "310"
@@ -0,0 +1 @@
1
+ __version__ = "2.0.0"
@@ -1 +0,0 @@
1
- __version__ = "1.9.0"