atsds-bnf 0.0.10 → 0.0.11-alpha2
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.
- package/README.md +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ This package enables you to write logical rules in a more natural, mathematical
|
|
|
24
24
|
pip install apyds-bnf
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
-
Requires Python 3.
|
|
27
|
+
Requires Python 3.11-3.14.
|
|
28
28
|
|
|
29
29
|
### JavaScript/TypeScript (npm)
|
|
30
30
|
|
|
@@ -127,7 +127,7 @@ For structured terms:
|
|
|
127
127
|
|
|
128
128
|
### Prerequisites
|
|
129
129
|
|
|
130
|
-
- Python 3.
|
|
130
|
+
- Python 3.11-3.14 (for Python package)
|
|
131
131
|
- Node.js (for JavaScript package)
|
|
132
132
|
- Java (for ANTLR parser generation)
|
|
133
133
|
- ANTLR 4.13.2
|
|
@@ -144,10 +144,10 @@ uv sync --extra dev
|
|
|
144
144
|
uv build
|
|
145
145
|
|
|
146
146
|
# Run tests
|
|
147
|
-
pytest
|
|
147
|
+
uv run pytest
|
|
148
148
|
|
|
149
149
|
# Run with coverage
|
|
150
|
-
pytest --cov
|
|
150
|
+
uv run pytest --cov
|
|
151
151
|
```
|
|
152
152
|
|
|
153
153
|
### JavaScript Package
|