We are delighted to announce the release of: yaql 3.2.0 The source is available from: https://opendev.org/openstack/yaql Download the package from: https://pypi.org/project/yaql For more details, please see below. Changes in yaql 3.1.0..3.2.0 ---------------------------- 2d78444 Import latest ply library code 89cc644 Fix wrong section for console script 555fbb5 Migrate setup configuration to pyproject.toml Diffstat (except docs and test files) ------------------------------------- .pre-commit-config.yaml | 1 + README.rst | 5 +- pyproject.toml | 37 + requirements.txt | 1 - setup.cfg | 30 - tox.ini | 2 +- yaql/_ply/__init__.py | 5 + yaql/_ply/lex.py | 901 ++++++++++++++++ yaql/_ply/yacc.py | 2482 +++++++++++++++++++++++++++++++++++++++++++++ yaql/language/factory.py | 8 +- 11 files changed, 3435 insertions(+), 39 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index b3acf1f..1ac5bbc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3 +2,0 @@ python-dateutil>=2.4.2 -ply