S.Lott
S.Lott
This: ``` %%plantuml auth ``` gets an error. This, on the other hand, ``` %%plantuml --jar @startuml auth etc. ``` works, but, the image returned to the notebook by the...
1. Use tox for more robust testing against various Python versions. 2. Remove gh-pages branch and use a docs folder. 3. Update setup.py to create a new sdist for pypi....
The calculate module appears to use only a few `np` features: sin, cos, atan2, sqrt, pi that are also in the `math` module. This would be slightly easier to work...
This closes issue #4. Additionally, this makes a few tweaks to the implementation of the `&` and `|` operators among conditions. There are a few no-cover comments in places where...
Current state (approximately) ``` Name Stmts Miss Branch BrPart Cover Missing ---------------------------------------------------------------------- py_rete/alpha.py 12 0 2 0 100% py_rete/beta.py 23 0 2 0 100% py_rete/bind_node.py 24 0 8 0 100%...
Use a `pyproject.toml` to specify generic dependencies and replace `setup.*` files. Use **pip-tools** `pip-compile` to generate `requirements.txt` for run-time dependencies, `requirements-test.txt` for test dependencies, and `requirements-dev.txt` for other development tools...
Start with testing in 3.8, 3.9, 3.10, and 3.11 environments in the `tox.ini` configuration. Because of changes to `typing` module, there are two choices. 1. Set `mypy` to a specific...
CEL specification update: - [x] Compare CEL specification 0.5.0 (when this was released) with "current" CEL specification (0.24.0 as of this edit) to get the list of changes. - [...
Now that version 3.0 is available, can we drop support for Python 2.7? This would remove a some complications, and permit using type hints as well as making `LatexNodeList` a...
Pick one and use it consistently. See `celpy/__init__.py` for the definition of the `Expression` type. If this is to be used throughout, move it to `celparser`,