Skip to content

Commit f8a3c16

Browse files
committed
Remove cffi dependency as it doesn't look like we're using it
1 parent c450159 commit f8a3c16

15 files changed

Lines changed: 8 additions & 15 deletions

File tree

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.circleci/docker/common/install_conda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ if [ -n "$ANACONDA_PYTHON_VERSION" ]; then
7575
}
7676

7777
# Install PyTorch conda deps, as per https://github.com/pytorch/pytorch README
78-
CONDA_COMMON_DEPS="astunparse pyyaml mkl=2022.0.1 mkl-include=2022.0.1 setuptools cffi six"
78+
CONDA_COMMON_DEPS="astunparse pyyaml mkl=2022.0.1 mkl-include=2022.0.1 setuptools six"
7979
if [ "$ANACONDA_PYTHON_VERSION" = "3.10" ]; then
8080
# Install llvm-8 as it is required to compile llvmlite-0.30.0 from source
8181
conda_install numpy=1.21.2 ${CONDA_COMMON_DEPS} llvmdev=8.0.0

.circleci/scripts/binary_ios_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export PATH="~/anaconda/bin:${PATH}"
1515
source ~/anaconda/bin/activate
1616

1717
# Install dependencies
18-
conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi requests typing_extensions --yes
18+
conda install numpy ninja pyyaml mkl mkl-include setuptools cmake requests typing_extensions --yes
1919
conda install -c conda-forge valgrind --yes
2020
export CMAKE_PREFIX_PATH=${CONDA_PREFIX:-"$(dirname $(which conda))/../"}
2121

.circleci/verbatim-sources/job-specs/job-specs-custom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@
577577
$* || (sleep 1 && $*) || (sleep 2 && $*) || (sleep 4 && $*) || (sleep 8 && $*)
578578
}
579579
580-
retry conda install numpy ninja pyyaml mkl mkl-include setuptools cmake cffi requests typing_extensions --yes
580+
retry conda install numpy ninja pyyaml mkl mkl-include setuptools cmake requests typing_extensions --yes
581581
582582
# sync submodules
583583
cd ${PROJ_ROOT}

.github/requirements-gha-cache.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
# functorch/docs/requirements.txt
77
# .circleci/docker/requirements-ci.txt
88
boto3==1.19.12
9-
cffi==1.15.0
109
dataclasses==0.6
1110
jinja2==3.0.1
1211
lintrunner==0.9.2

.github/requirements/conda-env-Linux-X64

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
cffi=1.15.1
21
cmake=3.22.*
32
mkl=2022.1.0
43
mkl-include=2022.1.0

.github/requirements/conda-env-iOS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
blas=1.0
2-
cffi=1.15.1
32
cmake=3.22.1
43
mkl=2022.1.0
54
mkl-include=2022.1.0

.github/requirements/conda-env-macOS-ARM64

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ numpy=1.22.3
22
pyyaml=6.0
33
setuptools=61.2.0
44
cmake=3.22.*
5-
cffi=1.15.1
65
typing_extensions=4.3.0
76
dataclasses=0.8
87
pip=22.2.2

.github/requirements/conda-env-macOS-X64

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ numpy=1.18.5
44
pyyaml=5.3
55
setuptools=46.0.0
66
cmake=3.22.*
7-
cffi=1.15.1
87
typing_extensions=4.3.0
98
dataclasses=0.8
109
pip=22.2.2

.github/workflows/run_torchbench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
. "${SETUP_SCRIPT}"
4141
conda activate pr-ci
4242
conda install -y numpy="${NUMPY_VERSION}" requests ninja pyyaml mkl mkl-include \
43-
setuptools cmake=3.22.* cffi typing_extensions boto3 \
43+
setuptools cmake=3.22.* typing_extensions boto3 \
4444
future six dataclasses pillow pytest tabulate gitpython git-lfs tqdm psutil
4545
pip install --pre torch torchvision torchtext -f https://download.pytorch.org/whl/nightly/cu116/torch_nightly.html
4646
- name: Setup TorchBench branch

0 commit comments

Comments
 (0)