contrib/automation/linux-requirements.txt.in
author Raphaël Gomès <rgomes@octobus.net>
Fri, 29 May 2020 12:12:16 +0200
changeset 44928 4313a0d7540d
parent 43400 0d2393fc1cf8
child 45692 9934920af5f7
permissions -rw-r--r--
rust-dependencies: update `regex` to 1.3.9 Version `1.3.8` introduces support for empty alternations, which makes previously disallowed patterns usable in `regex`. From a user's perspective, this means that glob patterns like `*.py{,c}` will no longer generate an "invalid" regex and will use the Rust path. `1.3.9` is a bugfix release, might as well update to the latest one. Differential Revision: https://phab.mercurial-scm.org/D8593
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
43400
0d2393fc1cf8 automation: install black
Gregory Szorc <gregory.szorc@gmail.com>
parents: 42312
diff changeset
     1
# black pulls in typed-ast, which doesn't install on PyPy.
0d2393fc1cf8 automation: install black
Gregory Szorc <gregory.szorc@gmail.com>
parents: 42312
diff changeset
     2
black ; python_version >= '3.6' and platform_python_implementation != 'PyPy'
42312
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     3
# Bazaar doesn't work with Python 3 nor PyPy.
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     4
bzr ; python_version <= '2.7' and platform_python_implementation == 'CPython'
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     5
docutils
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     6
fuzzywuzzy
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     7
pyflakes
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     8
pygments
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
     9
pylint
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
    10
# Needed to avoid warnings from fuzzywuzzy.
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
    11
python-Levenshtein
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
    12
# typed-ast dependency doesn't install on PyPy.
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
    13
typed-ast ; python_version >= '3.0' and platform_python_implementation != 'PyPy'
65b3ef162b39 automation: initial support for running Linux tests
Gregory Szorc <gregory.szorc@gmail.com>
parents:
diff changeset
    14
vcrpy