Skip to content

Commit

Permalink
[CI] Add missing packages for smoke test
Browse files Browse the repository at this point in the history
ghstack-source-id: 1ae2795ee734baac4419b722d4e11d522051b112
Pull Request resolved: #1149
  • Loading branch information
vmoens committed Dec 19, 2024
1 parent b19fc05 commit 42ad066
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-wheels-aarch64-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
matrix:
include:
- repository: pytorch/tensordict
smoke-test-script: test/smoke_test.py
package-name: tensordict
name: pytorch/tensordict
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-wheels-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
include:
- repository: pytorch/tensordict
smoke-test-script: test/smoke_test.py
env-script: .github/scripts/install-deps-smoke-test.sh
package-name: tensordict
name: pytorch/tensordict
uses: pytorch/test-infra/.github/workflows/build_wheels_linux.yml@main
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-wheels-m1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
include:
- repository: pytorch/tensordict
smoke-test-script: test/smoke_test.py
env-script: .github/scripts/install-deps-smoke-test.sh
package-name: tensordict
name: pytorch/tensordict
uses: pytorch/test-infra/.github/workflows/build_wheels_macos.yml@main
Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,13 @@ def _main(argv):
"build_ext": BuildExtension.with_options(no_python_abi_suffix=True),
"clean": clean,
},
install_requires=[pytorch_package_dep, "numpy", "cloudpickle", "orjson"],
install_requires=[
pytorch_package_dep,
"numpy",
"cloudpickle",
"orjson",
"packaging",
],
extras_require={
"tests": [
"pytest",
Expand Down

0 comments on commit 42ad066

Please sign in to comment.