openscad-parser 2.2.0__tar.gz → 2.3.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: openscad_parser
3
- Version: 2.2.0
3
+ Version: 2.3.0
4
4
  Summary: A PEG parser to read OpenSCAD language source code, with optional AST tree generation.
5
5
  Keywords: openscad,openscad parser,parser
6
6
  Author: Revar Desmera
@@ -21,6 +21,7 @@ Classifier: Topic :: Software Development :: Libraries
21
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
22
  Requires-Dist: arpeggio>=2.0.3
23
23
  Requires-Dist: pytest>=7.0.0 ; extra == 'dev'
24
+ Requires-Dist: pytest-cov>=7.1.0 ; extra == 'dev'
24
25
  Requires-Dist: pyyaml>=6.0 ; extra == 'yaml'
25
26
  Maintainer: Revar Desmera
26
27
  Maintainer-email: Revar Desmera <revarbat@gmail.com>
@@ -4,7 +4,7 @@ build-backend = "uv_build"
4
4
 
5
5
  [project]
6
6
  name = "openscad_parser"
7
- version = "2.2.0"
7
+ version = "2.3.0"
8
8
  description = "A PEG parser to read OpenSCAD language source code, with optional AST tree generation."
9
9
  readme = "README.rst"
10
10
  authors = [
@@ -38,6 +38,7 @@ dependencies = [
38
38
  [project.optional-dependencies]
39
39
  dev = [
40
40
  "pytest>=7.0.0",
41
+ "pytest-cov>=7.1.0",
41
42
  ]
42
43
  yaml = [
43
44
  "PyYAML>=6.0",