Commit f4291199 authored by Yureka's avatar Yureka
Browse files

matrix-synapse: relax poetry-core dependency

in staging-next we have poetry-core 2.2.0, which is outside of the 'defensive' version bound
parent 3a4c73a2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -31,7 +31,8 @@ python3Packages.buildPythonApplication rec {

  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "setuptools_rust>=1.3,<=1.11.1" "setuptools_rust<=1.12,>=1.3"
      --replace-fail "setuptools_rust>=1.3,<=1.11.1" "setuptools_rust<=1.12,>=1.3" \
      --replace-fail "poetry-core>=1.1.0,<=2.1.3" "poetry-core>=1.1.0,<=2.3.0"
  '';

  build-system = with python3Packages; [