diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-03-05 13:08:23 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-05 13:08:23 +0100 |
| commit | 241adf678f8d6f0d6ec62d0bed5e32611a3fb75c (patch) | |
| tree | 7c283214aa52119a428b800d1d9e12b44b7ee8b0 /tests/requirements/py3.txt | |
| parent | 6e195b800aed7d6a0d2a4c073d8f3507f6beb126 (diff) | |
Used sys_platform in tests requirements.
We already use implementation_name and python_version markers
so it's more consistent. Moreover, marker values can be specified
via pip's command line options.
Diffstat (limited to 'tests/requirements/py3.txt')
| -rw-r--r-- | tests/requirements/py3.txt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/requirements/py3.txt b/tests/requirements/py3.txt index 26800e0506..d1f3708720 100644 --- a/tests/requirements/py3.txt +++ b/tests/requirements/py3.txt @@ -1,21 +1,21 @@ aiosmtpd asgiref >= 3.7.0 -argon2-cffi >= 19.2.0; sys.platform != 'win32' or python_version < '3.13' +argon2-cffi >= 19.2.0; sys_platform != 'win32' or python_version < '3.13' bcrypt black docutils >= 0.19 geoip2; python_version < '3.13' jinja2 >= 2.11.0 -numpy; sys.platform != 'win32' or python_version < '3.13' -Pillow >= 6.2.1; sys.platform != 'win32' or python_version < '3.13' +numpy; sys_platform != 'win32' or python_version < '3.13' +Pillow >= 6.2.1; sys_platform != 'win32' or python_version < '3.13' # pylibmc/libmemcached can't be built on Windows. -pylibmc; sys.platform != 'win32' +pylibmc; sys_platform != 'win32' pymemcache >= 3.4.0 -pywatchman; sys.platform != 'win32' +pywatchman; sys_platform != 'win32' PyYAML redis >= 3.4.0 -selenium >= 4.8.0; sys.platform != 'win32' or python_version < '3.13' +selenium >= 4.8.0; sys_platform != 'win32' or python_version < '3.13' sqlparse >= 0.3.1 tblib >= 1.5.0 tzdata -colorama >= 0.4.6; sys.platform == 'win32' +colorama >= 0.4.6; sys_platform == 'win32' |
