servo/python/requirements.txt
Martin Robinson 492091e5b0 Use notify-py to send notifications
- Use notify-py to send notifications, but use a custom notifier on
  Linux since transient (ie non-sticky) notifications are not supported.
- Add an icon to the notification.
- Don't send a notification after doing `./mach check` because that
  can trigger notifications when `rust-analyzer` is working.
2023-04-13 10:01:25 +02:00

38 lines
753 B
Text

# Ensure all versions are pinned for repeatability,
# since `--system-site-packages` is enabled
blessings == 1.7
distro == 1.4
mozdebug == 0.3
mozinfo == 1.2.1
mozlog == 7.1.0
setuptools == 65.5.1
toml == 0.9.2
dataclasses == 0.8; python_version < "3.7"
# For Python linting
flake8 == 3.8.3
pep8 == 1.5.7
pyflakes == 2.2.0
# For test-webidl
ply == 3.8
# For Cross-platform colored terminal text
colorama == 0.3.7
# For package uploading
boto3 == 1.17.27
# Default root CAs on Windows CI do not trust CloudFront certificates,
# connecting to https://static.rust-lang.org would fail:
# https://github.com/servo/servo/pull/18942
certifi
# For Python3 compatibility
six == 1.15
# For sending build notifications.
notify-py == 0.3.42
-e python/tidy