Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ jobs:
pytest
pytest-cov
pytest-timeout
trove-classifiers>=2024.10.12
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These things are essentially the test dependencies, trove-classifiers>=2024.10.12 being required for a pyroma test.

Can we list this new trove-classifiers>=2024.10.12 in pyproject.toml's optional-dependencies.tests, remove this step (and duplicated dependencies), and modify the Build Pillow step below to pip install with the tests extra?

-        cmd /c "winbuild\build\build_env.cmd && $env:pythonLocation\python.exe -m pip install -v $FLAGS ."
+        cmd /c "winbuild\build\build_env.cmd && $env:pythonLocation\python.exe -m pip install -v $FLAGS .[tests]"


- name: Install CPython dependencies
if: "!contains(matrix.python-version, 'pypy')"
Expand Down
Loading