mirror of
https://github.com/zebrajr/faceswap.git
synced 2025-12-06 00:20:09 +01:00
* Remove tensorflow_probability requirement * setup.py - fix progress bars * requirements.txt: Remove pre python 3.9 packages * update apple requirements.txt * update INSTALL.md * Remove python<3.9 code * setup.py - fix Windows Installer * typing: python3.9 compliant * Update pytest and readthedocs python versions * typing fixes * Python Version updates - Reduce max version to 3.10 - Default to 3.10 in installers - Remove incompatible 3.11 tests * Update dependencies * Downgrade imageio dep for Windows * typing: merge optional unions and fixes * Updates - min python version 3.10 - typing to python 3.10 spec - remove pre-tf2.10 code - Add conda tests * train: re-enable optimizer saving * Update dockerfiles * Update setup.py - Apple Conda deps to setup.py - Better Cuda + dependency handling * bugfix: Patch logging to prevent Autograph errors * Update dockerfiles * Setup.py - Setup.py - stdout to utf-8 * Add more OSes to github Actions * suppress mac-os end to end test
58 lines
1.3 KiB
INI
58 lines
1.3 KiB
INI
[flake8]
|
|
max-line-length = 99
|
|
max-complexity=10
|
|
statistics = True
|
|
count = True
|
|
exclude = .git, __pycache__
|
|
per-file-ignores =
|
|
__init__.py:F401
|
|
lib/gpu_stats/directml.py:E402
|
|
|
|
[mypy]
|
|
[mypy-comtypes.*]
|
|
ignore_missing_imports = True
|
|
[mypy-cv2.*]
|
|
ignore_missing_imports = True
|
|
[mypy-fastcluster.*]
|
|
ignore_missing_imports = True
|
|
[mypy-ffmpy.*]
|
|
ignore_missing_imports = True
|
|
[mypy-imageio.*]
|
|
ignore_missing_imports = True
|
|
[mypy-imageio_ffmpeg.*]
|
|
ignore_missing_imports = True
|
|
[mypy-keras.*]
|
|
ignore_missing_imports = True
|
|
[mypy-matplotlib.*]
|
|
ignore_missing_imports = True
|
|
[mypy-numexpr.*]
|
|
ignore_missing_imports = True
|
|
[mypy-numpy.*]
|
|
ignore_missing_imports = True
|
|
[mypy-numpy.core._multiarray_umath.*]
|
|
ignore_missing_imports = True
|
|
[mypy-pexpect.*]
|
|
ignore_missing_imports = True
|
|
[mypy-PIL.*]
|
|
ignore_missing_imports = True
|
|
[mypy-psutil.*]
|
|
ignore_missing_imports = True
|
|
[mypy-pynvml.*]
|
|
ignore_missing_imports = True
|
|
[mypy-pynvx.*]
|
|
ignore_missing_imports = True
|
|
[mypy-pytest.*]
|
|
ignore_missing_imports = True
|
|
[mypy-scipy.*]
|
|
ignore_missing_imports = True
|
|
[mypy-sklearn.*]
|
|
ignore_missing_imports = True
|
|
[mypy-tensorflow.*]
|
|
ignore_missing_imports = True
|
|
[mypy-tqdm.*]
|
|
ignore_missing_imports = True
|
|
[mypy-win32console.*]
|
|
ignore_missing_imports = True
|
|
[mypy-winpty.*]
|
|
ignore_missing_imports = True
|