Skip to content

Commit fd17c1f

Browse files
committed
Merge branch 'main' of github.com:ymetz/rlhfblender
2 parents 1788452 + da019a0 commit fd17c1f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: ["3.10", "3.11", "3.12"]
23+
python-version: ["3.10", "3.11"]
2424

2525
steps:
2626
- uses: actions/checkout@v3
@@ -32,7 +32,7 @@ jobs:
3232
run: |
3333
python -m pip install --upgrade pip
3434
# cpu version of pytorch
35-
pip install torch==2.1.0 --index-url https://download.pytorch.org/whl/cpu
35+
pip install torch --index-url https://download.pytorch.org/whl/cpu
3636
3737
pip install .[tests,docs]
3838
# Use headless version

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,10 @@
3030
packages=[package for package in find_packages() if package.startswith("rlhfblender")],
3131
package_data={"rlhfblender": ["py.typed", "version.txt"]},
3232
install_requires=[
33-
"gymnasium[atari,accept-rom-license,mujoco]>=0.29.1,<0.30",
33+
# "safety-gymnasium>=1.0.0",
34+
"stable-baselines3[extra]>=2.2.1",
3435
"minigrid>=2.0.0",
3536
"highway-env>=1.8.2",
36-
# "safety-gymnasium>=1.0.0",
37-
"stable-baselines3>=2.0.0",
3837
"sb3-contrib>=2.0.0",
3938
"imitation>=1.0.0",
4039
"fastapi",

0 commit comments

Comments
 (0)