소스 검색

Remove upper bound of setuptools (#4033)

As pointed out in
https://github.com/zauberzeug/nicegui/issues/2485#issuecomment-2496689056,
`< 50` is to harsh.
Rodja Trappe 6 달 전
부모
커밋
1d0e548203
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      pyproject.toml

+ 1 - 1
pyproject.toml

@@ -81,7 +81,7 @@ nicegui-pack = "nicegui.scripts.pack:main"
 
 [build-system]
 requires = [
-    "setuptools>=30.3.0,<50",
+    "setuptools>=30.3.0",
     "poetry-core>=1.0.0"
 ]
 build-backend = "poetry.core.masonry.api"