From b4e1c090e658410a070249e7ceb9cb339dddd3f1 Mon Sep 17 00:00:00 2001 From: mxmlnkn Date: Fri, 1 Nov 2024 13:25:18 +0100 Subject: [PATCH] [build] Uncomment dependency on pyfatfs Github fork --- core/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/pyproject.toml b/core/pyproject.toml index 3d7b9004..da428a7e 100644 --- a/core/pyproject.toml +++ b/core/pyproject.toml @@ -150,7 +150,8 @@ zstd = [ # Pin to < 3.12 because of https://github.com/nathanhi/pyfatfs/issues/41 fat = [ 'pyfatfs ~= 1.0; python_version < "3.12.0"', - 'pyfatfs@git+https://github.com/mxmlnkn/pyfatfs.git@v1.2.0 ; python_version >= "3.12.0"', + # Not allowed by PyPI + #'pyfatfs@git+https://github.com/mxmlnkn/pyfatfs.git@v1.2.0 ; python_version >= "3.12.0"', ] # All optional dependencies of asyncssh via sshfs. I have not yet needed any of these. # Half of these are installed anyway via other dependencies.