aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_commandline_parser.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2026-01-14rename `--test` and `--debug` args && add `--version` argtassaron1-25/+17
2026-01-14log PyQt version && update ffmpeg version checktassaron1-1/+5
2026-01-13crush png filesizetassaron1-0/+0
2026-01-13update readme: recommend pipx and uv + change headerstassaron1-19/+34
2026-01-13Use pyproject.toml + uv_buildAeliton G. Silva53-76/+347
This replaces setup.py by a modern pyproject.toml using uv_build backend. Dependencies are being also managed by uv, so to install dependencies and run the project one can execute: ``` uv sync uv run pytest # optional python -m avp ``` To build the both source and binary (wheel) distribution package run: ``` uv build ``` Uv can be installed with `pip install uv`. The directory structure has been changed to reflect best practices. - src/* -> src/avp/ - src/tests -> ../tests
2026-01-12update readme and create requirements.txt for v2.1.0tassaron2-4/+8
2026-01-12update for Pillow 12 and Qt 6tassaron2-3/+2
2026-01-11update to Qt 6 and Pillow 12tassaron30-2240/+2558
and yeah, I accidentally ran black on the codebase. I don't want to spend more free time fixing that. All of these changes are simple renames or removals, nothing too major.
2024-09-15fix #78tassaron2-3/+6
2024-04-10update readme for Ubuntu 24.04Brianna Rainey1-21/+5
also remove outdated macOS instructions, which probably don't work anymore
2024-04-10pin pillow version to one with qt5 supportBrianna Rainey1-1/+1
2023-02-17fix #75 by computing evolution during frameRenderBrianna Rainey1-24/+12
instead of pre-computing the entire evolution during preFrameRender, it creates 60 ticks' worth of grid data at a time during the rendering process, deleting old data as it goes. This works with the current render process and should still work if the render process changes, as long as render threads don't become extremely de-synchronized (which would probably be an issue anyway)
2023-02-17ignore cells that are 40+ coords out of frameBrianna Rainey1-0/+11
2023-02-17fix typoBrianna Rainey1-1/+1
2023-02-17Add comments to Life componentBrianna Rainey1-1/+14
added comments to preFrameRender and gridForTick methods
2022-05-10change screenshot, remove unused filetassaron2-59/+0
2022-05-10log name of missing/unreadable audio filetassaron2-1/+2
2022-05-09move variable declaration closer to usage.tassaron2-7/+5
2022-05-09use pytest-qt to test actual export processtassaron2-1/+31
2022-05-09no components on commandline adds a default visualizertassaron1-0/+4
2022-05-09include test data in package, pytest-qt plugin for testing Qt event loop, ↵tassaron5-25/+22
remove useless pytest fixtures
2022-05-09rename visualisation to visualizationtassaron2-6/+9
2022-05-09demote error message to debug messagetassaron1-1/+1
it's worth noting, but not important enough for 'error'
2022-05-08reorganize Classic Visualizer widgets to be more left-alignedtassaron1-29/+68
Looks less weird when window is maximized
2022-05-08Add sensitivity option to classic visualizertassaron2-39/+51
Allows to decide how balanced the up/down smoothing is. The default (0) is the same as before; increasing sensitivity makes the up/down values closer to each other (less smooth, more sensitive)