diff options
author | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-08-26 17:29:28 +0800 |
---|---|---|
committer | Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2023-08-26 17:29:28 +0800 |
commit | ec89a81d865d3cec29036c2e3d64d1e4612f4842 (patch) | |
tree | 6cd816a8f5c0f1090b23207b934aecb5ce1cceb4 /net-im/py-matrix-synapse/files | |
parent | Mk/bsd.options.desc.mk: Fix GTK{2,3,4}_DESC (diff) |
net-im/py-matrix-synapse: Allow build with py-poetry-core 1.7.0 and py-setuptools-rust 1.7.0
- While I'm here, remove blank lines among *_DEPENDS
Diffstat (limited to 'net-im/py-matrix-synapse/files')
-rw-r--r-- | net-im/py-matrix-synapse/files/patch-pyproject.toml | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/net-im/py-matrix-synapse/files/patch-pyproject.toml b/net-im/py-matrix-synapse/files/patch-pyproject.toml index 5686b1433743..ffcc044afac2 100644 --- a/net-im/py-matrix-synapse/files/patch-pyproject.toml +++ b/net-im/py-matrix-synapse/files/patch-pyproject.toml @@ -1,8 +1,8 @@ ---- pyproject.toml.orig 2023-05-09 16:38:29 UTC +--- pyproject.toml.orig 2023-07-04 15:35:46 UTC +++ pyproject.toml -@@ -209,17 +209,6 @@ importlib_metadata = { version = ">=1.4", python = "<3 - # This is the most recent version of Pydantic with available on common distros. - pydantic = ">=1.7.4" +@@ -210,17 +210,6 @@ importlib_metadata = { version = ">=1.4", python = "<3 + # We are currently incompatible with >=2.0.0: (https://github.com/matrix-org/synapse/issues/15858) + pydantic = "^1.7.4" -# This is for building the rust components during "poetry install", which -# currently ignores the `build-system.requires` directive (c.f. @@ -18,3 +18,12 @@ # Optional Dependencies # --------------------- matrix-synapse-ldap3 = { version = ">=0.1", optional = true } +@@ -370,7 +359,7 @@ furo = ">=2022.12.7,<2024.0.0" + # system changes. + # We are happy to raise these upper bounds upon request, + # provided we check that it's safe to do so (i.e. that CI passes). +-requires = ["poetry-core>=1.1.0,<=1.6.0", "setuptools_rust>=1.3,<=1.6.0"] ++requires = ["poetry-core>=1.1.0,<=1.7.0", "setuptools_rust>=1.3,<=1.7.0"] + build-backend = "poetry.core.masonry.api" + + |