Skip to content

Commit 4374aaa

Browse files
author
Vincent Moens
committed
Update
[ghstack-poisoned]
2 parents 2c797c1 + 8113cfc commit 4374aaa

22 files changed

+326
-232
lines changed
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
11
#!/bin/bash
22

3-
if [ "$(uname)" != "Darwin" ]; then
4-
yum update gcc
5-
yum update libstdc++
6-
else
7-
brew update
8-
brew upgrade gcc
9-
fi
3+
yum update gcc
4+
yum update libstdc++

.github/scripts/linux-pre-script.sh

Lines changed: 0 additions & 15 deletions
This file was deleted.

.github/scripts/version_script.bat

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22
set TENSORDICT_BUILD_VERSION=0.8.0
33
echo TENSORDICT_BUILD_VERSION is set to %TENSORDICT_BUILD_VERSION%
44

5-
if "%CONDA_RUN%"=="" (
6-
echo CONDA_RUN is not set. Please activate your conda environment or set CONDA_RUN.
7-
exit /b 1
8-
)
9-
10-
:: Run the pip install command
11-
%CONDA_RUN% conda install -c conda-forge pybind11 -y
12-
135
@echo on
146

157
set VC_VERSION_LOWER=17

.github/scripts/version_script.sh

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
11
#!/bin/bash
22

33
export TENSORDICT_BUILD_VERSION=0.8.0
4-
5-
if [ "$(uname)" == "Darwin" ]; then
6-
# For OSX
7-
export CXXFLAGS="-march=armv8-a+fp16+sha3"
8-
export CMAKE_OSX_ARCHITECTURES=arm64
9-
fi
10-
11-
${CONDA_RUN} conda install -c conda-forge pybind11 -y

.github/scripts/win-pre-script.bat

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/unittest/linux/scripts/environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ dependencies:
1919
- coverage
2020
- h5py
2121
- orjson
22-
- ninja
2322
- numpy<2.0.0

.github/unittest/linux/scripts/setup_env.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,6 @@ pip install pip --upgrade
5353

5454
conda env update --file "${this_dir}/environment.yml" --prune
5555

56-
conda install anaconda::cmake -y
57-
conda install -c conda-forge pybind11 -y
58-
5956
#if [[ $OSTYPE == 'darwin'* ]]; then
6057
# printf "* Installing C++ for OSX\n"
6158
# conda install -c conda-forge cxx-compiler -y

.github/unittest/rl_linux_optdeps/scripts/environment.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ dependencies:
1616
- pyyaml
1717
- scipy
1818
- orjson
19-
- ninja
2019
- numpy<2.0.0

.github/unittest/rl_linux_optdeps/scripts/setup_env.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,6 @@ pip install pip --upgrade
6060

6161
conda env update --file "${this_dir}/environment.yml" --prune
6262

63-
conda install anaconda::cmake -y
64-
conda install -c conda-forge pybind11 -y
65-
6663
#yum makecache
6764
#yum -y install glfw-devel
6865
#yum -y install libGLEW

.github/workflows/build-wheels-linux.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ jobs:
3333
include:
3434
- repository: pytorch/tensordict
3535
smoke-test-script: test/smoke_test.py
36-
pre-script: .github/scripts/linux-pre-script.sh
3736
post-script: .github/scripts/linux-post-script.sh
3837
package-name: tensordict
3938
name: pytorch/tensordict

0 commit comments

Comments
 (0)