Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"cmake<4.0.0", # For building binary targets in the wheel. 4.0.0 breaks third-party CMake build so temporarily pin the version.
"cmake>=3.19,<4.0.0", # For building binary targets in the wheel. 4.0.0 breaks third-party CMake build so temporarily pin the version.
"pip>=23", # For building the pip package.
"pyyaml", # Imported by the kernel codegen tools.
"setuptools>=63", # For building the pip package contents.
Expand Down Expand Up @@ -49,7 +49,7 @@ classifiers = [
]

# Python dependencies required for use.
# coremltools has issue with python 3.13, see https://github.com/apple/coremltools/issues/2487
# coremltools has issue with python 3.13, see https://github.com/apple/coremltools/issues/2487
requires-python = ">=3.10,<3.13"
dependencies=[
"expecttest",
Expand Down
10 changes: 3 additions & 7 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
# Pip packages needed to build from source. Mainly for development of ExecuTorch.

cmake>=3.19, <4.0.0 # For building binary targets in the wheel.
pip>=23 # For building the pip package.
pyyaml # Imported by the kernel codegen tools.
setuptools>=63 # For building the pip package contents.
tomli # Imported by extract_sources.py when using python < 3.11.
wheel # For building the pip package archive.
zstd # Imported by resolve_buck.py.
# Build specific requirements are in pyproject.toml's build-system.requires already
# and invoked during pip install .

lintrunner==0.12.7
lintrunner-adapters==0.12.4
Loading