tree-sitter-pgn 1.2.0__tar.gz → 1.2.10__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.
Potentially problematic release.
This version of tree-sitter-pgn might be problematic. Click here for more details.
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/PKG-INFO +2 -2
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn.egg-info/PKG-INFO +2 -2
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/pyproject.toml +14 -3
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/tree-sitter.json +1 -1
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/README.md +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn/__init__.py +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn/__init__.pyi +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn/binding.c +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn/py.typed +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn.egg-info/SOURCES.txt +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn.egg-info/dependency_links.txt +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn.egg-info/not-zip-safe +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn.egg-info/requires.txt +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn.egg-info/top_level.txt +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/setup.cfg +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/setup.py +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/src/parser.c +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/src/scanner.c +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/src/tree_sitter/alloc.h +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/src/tree_sitter/array.h +0 -0
- {tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/src/tree_sitter/parser.h +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tree-sitter-pgn
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.10
|
|
4
4
|
Summary: PGN grammar for tree-sitter
|
|
5
5
|
License: BSD-2-Clause
|
|
6
6
|
Project-URL: Homepage, https://github.com/rolandwalker/tree-sitter-pgn
|
|
@@ -9,7 +9,7 @@ Classifier: Intended Audience :: Developers
|
|
|
9
9
|
Classifier: Topic :: Software Development :: Compilers
|
|
10
10
|
Classifier: Topic :: Text Processing :: Linguistic
|
|
11
11
|
Classifier: Typing :: Typed
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
Provides-Extra: core
|
|
15
15
|
Requires-Dist: tree-sitter~=0.23.0; extra == "core"
|
{tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tree-sitter-pgn
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.10
|
|
4
4
|
Summary: PGN grammar for tree-sitter
|
|
5
5
|
License: BSD-2-Clause
|
|
6
6
|
Project-URL: Homepage, https://github.com/rolandwalker/tree-sitter-pgn
|
|
@@ -9,7 +9,7 @@ Classifier: Intended Audience :: Developers
|
|
|
9
9
|
Classifier: Topic :: Software Development :: Compilers
|
|
10
10
|
Classifier: Topic :: Text Processing :: Linguistic
|
|
11
11
|
Classifier: Typing :: Typed
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.9
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
Provides-Extra: core
|
|
15
15
|
Requires-Dist: tree-sitter~=0.23.0; extra == "core"
|
|
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tree-sitter-pgn"
|
|
7
7
|
description = "PGN grammar for tree-sitter"
|
|
8
|
-
version = "1.2.
|
|
8
|
+
version = "1.2.10"
|
|
9
9
|
keywords = ["incremental", "parsing", "tree-sitter", "PGN", "chess"]
|
|
10
10
|
classifiers = [
|
|
11
11
|
"Intended Audience :: Developers",
|
|
@@ -13,7 +13,7 @@ classifiers = [
|
|
|
13
13
|
"Topic :: Text Processing :: Linguistic",
|
|
14
14
|
"Typing :: Typed"
|
|
15
15
|
]
|
|
16
|
-
requires-python = ">=3.
|
|
16
|
+
requires-python = ">=3.9"
|
|
17
17
|
license.text = "BSD-2-Clause"
|
|
18
18
|
readme = "README.md"
|
|
19
19
|
|
|
@@ -24,5 +24,16 @@ Homepage = "https://github.com/rolandwalker/tree-sitter-pgn"
|
|
|
24
24
|
core = ["tree-sitter~=0.23.0"]
|
|
25
25
|
|
|
26
26
|
[tool.cibuildwheel]
|
|
27
|
-
|
|
27
|
+
skip = [
|
|
28
|
+
"cp38-*",
|
|
29
|
+
"cp314t-*",
|
|
30
|
+
"*-android*",
|
|
31
|
+
"*-ios*",
|
|
32
|
+
"*_ppc64le",
|
|
33
|
+
"*_s390x",
|
|
34
|
+
"*_riscv64",
|
|
35
|
+
"*_ppc64le",
|
|
36
|
+
"*_s390x",
|
|
37
|
+
"*_riscv64",
|
|
38
|
+
]
|
|
28
39
|
build-frontend = "build"
|
|
File without changes
|
{tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn/__init__.py
RENAMED
|
File without changes
|
{tree_sitter_pgn-1.2.0 → tree_sitter_pgn-1.2.10}/bindings/python/tree_sitter_pgn/__init__.pyi
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|