textparser 0.26__tar.gz → 0.26.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.
Files changed (41) hide show
  1. {textparser-0.26 → textparser-0.26.1}/.github/workflows/pythonpackage.yml +17 -0
  2. {textparser-0.26 → textparser-0.26.1}/.gitignore +3 -0
  3. textparser-0.26.1/.readthedocs.yml +28 -0
  4. {textparser-0.26 → textparser-0.26.1}/PKG-INFO +1 -1
  5. textparser-0.26.1/docs/requirements.txt +2 -0
  6. textparser-0.26.1/textparser/py.typed +0 -0
  7. {textparser-0.26 → textparser-0.26.1}/textparser/version.py +3 -3
  8. {textparser-0.26 → textparser-0.26.1}/textparser.egg-info/PKG-INFO +1 -1
  9. {textparser-0.26 → textparser-0.26.1}/textparser.egg-info/SOURCES.txt +3 -0
  10. {textparser-0.26 → textparser-0.26.1}/.github/FUNDING.yml +0 -0
  11. {textparser-0.26 → textparser-0.26.1}/LICENSE +0 -0
  12. {textparser-0.26 → textparser-0.26.1}/README.rst +0 -0
  13. {textparser-0.26 → textparser-0.26.1}/docs/Makefile +0 -0
  14. {textparser-0.26 → textparser-0.26.1}/docs/conf.py +0 -0
  15. {textparser-0.26 → textparser-0.26.1}/docs/index.rst +0 -0
  16. {textparser-0.26 → textparser-0.26.1}/docs/make.bat +0 -0
  17. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/data.json +0 -0
  18. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/errors.py +0 -0
  19. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parse_tree.py +0 -0
  20. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/__init__.py +0 -0
  21. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/funcparserlib_json.py +0 -0
  22. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/lark_json.py +0 -0
  23. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/parsimonious_json.py +0 -0
  24. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/parsita_json.py +0 -0
  25. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/parsy_json.py +0 -0
  26. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/pyleri_json.py +0 -0
  27. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/pyparsing_json.py +0 -0
  28. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/textparser_json.py +0 -0
  29. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/parsers/textx_json.py +0 -0
  30. {textparser-0.26 → textparser-0.26.1}/examples/benchmarks/json/speed.py +0 -0
  31. {textparser-0.26 → textparser-0.26.1}/examples/hello_world.py +0 -0
  32. {textparser-0.26 → textparser-0.26.1}/examples/json.py +0 -0
  33. {textparser-0.26 → textparser-0.26.1}/examples/proto3.py +0 -0
  34. {textparser-0.26 → textparser-0.26.1}/pyproject.toml +0 -0
  35. {textparser-0.26 → textparser-0.26.1}/setup.cfg +0 -0
  36. {textparser-0.26 → textparser-0.26.1}/tests/__init__.py +0 -0
  37. {textparser-0.26 → textparser-0.26.1}/tests/test_textparser.py +0 -0
  38. {textparser-0.26 → textparser-0.26.1}/textparser/__init__.py +0 -0
  39. {textparser-0.26 → textparser-0.26.1}/textparser.egg-info/dependency_links.txt +0 -0
  40. {textparser-0.26 → textparser-0.26.1}/textparser.egg-info/requires.txt +0 -0
  41. {textparser-0.26 → textparser-0.26.1}/textparser.egg-info/top_level.txt +0 -0
@@ -32,6 +32,23 @@ jobs:
32
32
  run: |
33
33
  ruff check textparser tests
34
34
 
35
+ docs:
36
+ runs-on: ubuntu-latest
37
+ steps:
38
+ - uses: actions/checkout@v4
39
+ - name: Set up Python
40
+ uses: actions/setup-python@v5
41
+ with:
42
+ python-version: "3.14"
43
+ - name: Install dependencies
44
+ run: |
45
+ python -m pip install --upgrade pip
46
+ pip install -r docs/requirements.txt
47
+ pip install -e .
48
+ - name: Build documentation
49
+ run: |
50
+ python -m sphinx -b html -Ean --keep-going docs build
51
+
35
52
  release:
36
53
  needs: [test]
37
54
  runs-on: ubuntu-latest
@@ -55,3 +55,6 @@ docs/_build/
55
55
 
56
56
  # PyBuilder
57
57
  target/
58
+
59
+ # setuptools_scm
60
+ textparser/version.py
@@ -0,0 +1,28 @@
1
+ # .readthedocs.yaml
2
+ # Read the Docs configuration file
3
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4
+
5
+ # Required
6
+ version: 2
7
+
8
+ # Set the version of Python and other tools you might need
9
+ build:
10
+ os: ubuntu-24.04
11
+ tools:
12
+ python: "3.14"
13
+
14
+ # Build documentation in the docs/ directory with Sphinx
15
+ sphinx:
16
+ configuration: docs/conf.py
17
+
18
+ # If using Sphinx, optionally build your docs in additional formats such as PDF
19
+ formats:
20
+ - pdf
21
+ - epub
22
+
23
+ # Optionally declare the Python requirements required to build your docs
24
+ python:
25
+ install:
26
+ - requirements: docs/requirements.txt
27
+ - method: pip
28
+ path: .
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: textparser
3
- Version: 0.26
3
+ Version: 0.26.1
4
4
  Summary: A text parser library for python.
5
5
  Author: Erik Moqvist
6
6
  License-Expression: MIT
@@ -0,0 +1,2 @@
1
+ Sphinx==9.*
2
+ sphinx_rtd_theme
File without changes
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
18
18
  commit_id: str | None
19
19
  __commit_id__: str | None
20
20
 
21
- __version__ = version = '0.26'
22
- __version_tuple__ = version_tuple = (0, 26)
21
+ __version__ = version = '0.26.1'
22
+ __version_tuple__ = version_tuple = (0, 26, 1)
23
23
 
24
- __commit_id__ = commit_id = 'g905bba1b4'
24
+ __commit_id__ = commit_id = 'g4f946b2f4'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: textparser
3
- Version: 0.26
3
+ Version: 0.26.1
4
4
  Summary: A text parser library for python.
5
5
  Author: Erik Moqvist
6
6
  License-Expression: MIT
@@ -1,4 +1,5 @@
1
1
  .gitignore
2
+ .readthedocs.yml
2
3
  LICENSE
3
4
  README.rst
4
5
  pyproject.toml
@@ -8,6 +9,7 @@ docs/Makefile
8
9
  docs/conf.py
9
10
  docs/index.rst
10
11
  docs/make.bat
12
+ docs/requirements.txt
11
13
  examples/hello_world.py
12
14
  examples/json.py
13
15
  examples/proto3.py
@@ -28,6 +30,7 @@ examples/benchmarks/json/parsers/textx_json.py
28
30
  tests/__init__.py
29
31
  tests/test_textparser.py
30
32
  textparser/__init__.py
33
+ textparser/py.typed
31
34
  textparser/version.py
32
35
  textparser.egg-info/PKG-INFO
33
36
  textparser.egg-info/SOURCES.txt
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