atsds-bnf 0.0.11-alpha1 → 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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. 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.10-3.14.
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.10-3.14 (for Python package)
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
package/package.json CHANGED
@@ -37,8 +37,8 @@
37
37
  "cross-env": "^10.1.0",
38
38
  "jest": "^30.2.0",
39
39
  "npm-run-all": "^4.1.5",
40
- "rollup": "^4.53.5",
40
+ "rollup": "^4.54.0",
41
41
  "rollup-plugin-copy": "^3.5.0"
42
42
  },
43
- "version": "0.0.11-alpha1"
43
+ "version": "0.0.11-alpha2"
44
44
  }