Developer Guide =============== Versioning Scheme ----------------- bpod-core uses `Semantic Versioning `_. Its version string (currently |version_code|) is a combination of three fields, separated by dots: .. centered:: ``MAJOR`` . ``MINOR`` . ``PATCH`` * The ``MAJOR`` field is only incremented for breaking changes, i.e., changes that are not backward compatible with previous changes. * The ``MINOR`` field will be incremented upon adding new, backward compatible features. * The ``PATCH`` field will be incremented with each new, backward compatible bugfix release that does not implement a new feature. On the developer side, these 3 fields are manually controlled by, both 1. adjusting the variable ``__version__`` in ``bpod-core/__init__.py``, and 2. adding the corresponding version string to a commit as a `git tag `_, for instance: .. code-block:: console $ git tag 1.2.3 $ git push origin --tags Installing UV ------------- This project is utilizing `UV `_ as its package manager for managing dependencies and ensuring consistent and reproducible environments. To install UV: .. tab-set:: .. tab-item:: Linux and macOS .. code-block:: console $ curl -LsSf https://astral.sh/uv/install.sh | sh .. tab-item:: Windows .. code-block:: pwsh-session PS> powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" See `UV's documentation `_ for details. Installing developer dependencies --------------------------------- To set up your development environment, you need to install the necessary dependencies. The following command will synchronize your environment with the dependencies specified in the ``pyproject.toml`` file, including development dependencies and Qt: .. code-block:: console $ uv sync Running the unit-tests ---------------------- We use `tox `_ to automate our unit-tests. This allows us to verify that our code works with various versions of Qt for Python. To run the unit tests, execute the following command: .. code-block:: console $ uv run tox -p Tox will create isolated environments for each specified version of Qt and run the tests in those environments. You can find the results of the tests in the terminal output, which will indicate whether the tests passed or failed. Alternatively, if you want to run unit-tests for your current environment, run .. code-block:: console $ uv run pytest Coverage report --------------- After running ``tox`` or ``pytest`` (see above), you can generate a coverage report to assess how much of the code is covered by the unit tests: .. code-block:: console $ uv run coverage report If you need a more detailed representation of your code coverage, generate an HTML report: .. code-block:: console $ uv run coverage html You'll find the HTML report in the folder ``htmlcov``, where you can open ``index.html`` in a web browser to view detailed coverage statistics. Checking and formatting of code ------------------------------- We use `ruff `_ to ensure our code adheres to style guidelines and is free of common issues. To format your code automatically, run: .. code-block:: console $ uv run ruff format This command will apply formatting changes to your codebase according to the specified style rules. To check your code for issues, use: .. code-block:: console $ uv run ruff check This command will analyze your code and report any issues it finds. If you want ruff to attempt to fix any issues it identifies, you can add the ``--fix`` flag, which will automatically correct fixable problems. Building the documentation -------------------------- We use `Sphinx `_ to build our documentation and API reference. To build the documentation, run the following command: .. code-block:: console $ uv run sphinx-build docs/source docs/build After running this command, you can view the generated documentation in your web browser by opening ``docs/build/index.html``. Building the package -------------------- To build the package, execute the following command: .. code-block:: console $ uv build This command will create a distributable package of your project, in the form of a source distribution (sdist) and a wheel (bdist_wheel). The generated package files will be located in the ``dist`` directory.