Home > Release Notes > wq 1.3 alpha

wq 1.3 alpha

wq 1.3 alpha introduces a brand new UI renderer based on React and Material UI (#41). Since this is a prerelease, specify the --pre option when installing from PyPI:

python3 -m pip install wq --pre

See the submodule release notes (especially for wq.app) for additional details:

  • wq.app 1.3 alpha
  • wq.core 1.3 alpha
  • wq.db 1.3 alpha
  • wq.start 1.3 alpha

In addition, the wq repository now hosts the new wq npm package, which provides a single wq.js module with all required dependencies built in. This means wq can be used on any webpage with a single script tag:

<script type="module">
    import wq from 'https://unpkg.com/wq';
    wq.init({});
</script>