Skip to content

Commit 65e768f

Browse files
chore: update GitHub org references from meta-pytorch to huggingface (#740)
1 parent ac63a72 commit 65e768f

37 files changed

Lines changed: 85 additions & 87 deletions

.claude/skills/generate-openenv-env/assets/openenv_env_template/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ requires-python = ">=3.10"
1616
dependencies = [
1717
# Core OpenEnv runtime (provides FastAPI server + HTTP client types)
1818
# install from github
19-
# "openenv-core[core] @ git+https://github.com/meta-pytorch/OpenEnv.git",
19+
# "openenv-core[core] @ git+https://github.com/huggingface/OpenEnv.git",
2020
"openenv-core[core]>=0.2.2",
2121
# Environment-specific dependencies
2222
# Add all dependencies needed for your environment here

.claude/skills/generate-openenv-env/references/openenv-docs-environment-builder.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ A typical workflow looks like:
2121

2222
- Python 3.11+ and [`uv`](https://github.com/astral-sh/uv) for dependency locking
2323
- Docker Desktop / Docker Engine
24-
- The OpenEnv library installed: `pip install https://github.com/meta-pytorch/OpenEnv.git`
24+
- The OpenEnv library installed: `pip install https://github.com/huggingface/OpenEnv.git`
2525

2626
## Step-by-Step Guide
2727

@@ -453,4 +453,4 @@ openenv push
453453

454454
Your next steps are to:
455455

456-
- [Try out the end-to-end tutorial](https://colab.research.google.com/github/meta-pytorch/OpenEnv/blob/main/examples/OpenEnv_Tutorial.ipynb)
456+
- [Try out the end-to-end tutorial](https://colab.research.google.com/github/huggingface/OpenEnv/blob/main/examples/OpenEnv_Tutorial.ipynb)

.claude/skills/generate-openenv-env/references/openenv-tutorial-01-environments.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
That's OpenEnv. Type-safe. Isolated. Production-ready. 🎯
1414

15-
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/meta-pytorch/OpenEnv/blob/main/examples/OpenEnv_Tutorial.ipynb)
16-
[![GitHub](https://img.shields.io/badge/GitHub-meta--pytorch%2FOpenEnv-blue?logo=github)](https://github.com/meta-pytorch/OpenEnv)
15+
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/huggingface/OpenEnv/blob/main/examples/OpenEnv_Tutorial.ipynb)
16+
[![GitHub](https://img.shields.io/badge/GitHub-huggingface%2FOpenEnv-blue?logo=github)](https://github.com/huggingface/OpenEnv)
1717
[![License](https://img.shields.io/badge/License-BSD%203--Clause-green.svg)](https://opensource.org/licenses/BSD-3-Clause)
1818
[![PyTorch](https://img.shields.io/badge/PyTorch-EE4C2C?logo=pytorch&logoColor=white)](https://pytorch.org/)
1919

@@ -292,7 +292,7 @@ except ImportError:
292292

293293
if IN_COLAB:
294294
print("\n📦 Cloning OpenEnv repository...")
295-
!git clone https://github.com/meta-pytorch/OpenEnv.git > /dev/null 2>&1
295+
!git clone https://github.com/huggingface/OpenEnv.git > /dev/null 2>&1
296296
%cd OpenEnv
297297

298298
print("📚 Installing dependencies (this takes ~10 seconds)...")
@@ -1245,7 +1245,7 @@ OpenEnv includes 3 complete examples:
12451245

12461246
### 🔗 Essential Links
12471247

1248-
- **🏠 OpenEnv GitHub**: https://github.com/meta-pytorch/OpenEnv
1248+
- **🏠 OpenEnv GitHub**: https://github.com/huggingface/OpenEnv
12491249
- **🎮 OpenSpiel**: https://github.com/google-deepmind/open_spiel
12501250
- **⚡ FastAPI Docs**: https://fastapi.tiangolo.com/
12511251
- **🐳 Docker Guide**: https://docs.docker.com/get-started/
@@ -1256,7 +1256,7 @@ OpenEnv includes 3 complete examples:
12561256
- **Environment Creation Guide**: `envs/README.md`
12571257
- **OpenSpiel Integration**: `envs/openspiel_env/README.md`
12581258
- **Example Scripts**: `examples/`
1259-
- **RFC 001**: [Baseline API Specs](https://github.com/meta-pytorch/OpenEnv/pull/26)
1259+
- **RFC 001**: [Baseline API Specs](https://github.com/huggingface/OpenEnv/pull/26)
12601260

12611261
### 🎓 Community & Support
12621262

.claude/skills/release/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This skill orchestrates the repo-embedded deployment tooling and documents the `
1515
## Primary Flow
1616
1. **Stage envs with `scripts/prepare_hf_deployment.sh`.** Default arguments deploy every *deployable* env from `envs/`. Pass `--env <name>` to target a subset. The script:
1717
- Resolves the requested OpenEnv ref for staged dependency rewrites. If `0.2.2` is only a release-candidate label and no `v0.2.2` tag exists yet, the script should fall back to `main` for env dependency rewrites while keeping the Hub suffix at `-0.2.2`.
18-
- Rewrites loose `openenv-core[core]>=...` specs and direct Dockerfile installs to `git+https://github.com/meta-pytorch/OpenEnv.git@<resolved-ref>` so the sweep does not silently install `0.2.1` from PyPI.
18+
- Rewrites loose `openenv-core[core]>=...` specs and direct Dockerfile installs to `git+https://github.com/huggingface/OpenEnv.git@<resolved-ref>` so the sweep does not silently install `0.2.1` from PyPI.
1919
- Builds a staging tree with `src/`, `envs/<env>/`, and a rewritten `Dockerfile` that sets `BASE_IMAGE` to `ghcr.io/meta-pytorch/openenv-base:latest` unless a hash is supplied.
2020
- Generates a README with Hub metadata, enforces `openenv`/`openenv-<version>` tags, and adds the `HUB_TAG` used in collection sync.
2121
- Uses `hf repo create`/`hf upload` plus visibility flags to push Docker spaces.

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ OpenEnv uses Claude Code as the primary development tool. We follow a two-phase
2323
Skills and agents are auto-discovered when you run Claude Code in this repo:
2424

2525
```bash
26-
git clone https://github.com/meta-pytorch/OpenEnv
26+
git clone https://github.com/huggingface/OpenEnv
2727
cd OpenEnv
2828
# Install git hooks for the team
2929
bash .claude/hooks/install.sh

envs/browsergym_env/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ rollout_func = build_harness_rollout_func(
102102

103103
BrowserGym exposes `click`, `fill`, `send_keys`, `scroll`, and `noop` as MCP-style
104104
tools while still translating them back into the underlying `BrowserGymAction`
105-
strings. See [examples/browsergym_harness.py](https://github.com/meta-pytorch/OpenEnv/blob/main/examples/browsergym_harness.py)
105+
strings. See [examples/browsergym_harness.py](https://github.com/huggingface/OpenEnv/blob/main/examples/browsergym_harness.py)
106106
for a full TRL-oriented example.
107107

108108
### Available Tasks by Benchmark
@@ -592,4 +592,4 @@ browsergym_env/
592592
- [WebArena Paper](https://arxiv.org/abs/2307.13854)
593593
- [WebArena Website](https://webarena.dev/)
594594
- [VisualWebArena Paper](https://jykoh.com/vwa)
595-
- [OpenEnv Documentation](https://github.com/meta-pytorch/OpenEnv)
595+
- [OpenEnv Documentation](https://github.com/huggingface/OpenEnv)

envs/carla_env/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ Default is **RenderOffScreen** (supports `capture_image`). For text-only evaluat
347347

348348
## Resources
349349

350-
- **OpenEnv Framework**: [github.com/meta-pytorch/OpenEnv](https://github.com/meta-pytorch/OpenEnv)
350+
- **OpenEnv Framework**: [github.com/huggingface/OpenEnv](https://github.com/huggingface/OpenEnv)
351351
- **Original carla-env**: [sinatras/carla-env](https://github.com/SinatrasC/carla-env)
352352
- **Blog Post**: [Carla-Env: Giving Models Access to World Simulation](https://blog.sinatras.dev/Carla-Env)
353353
- **CARLA Simulator**: [carla.org](https://carla.org/)
@@ -371,10 +371,10 @@ Scenarios and navigation agents adapted from [sinatras/carla-env](https://github
371371
title = {CARLA Environment for OpenEnv},
372372
author = {OpenEnv Contributors},
373373
year = {2026},
374-
url = {https://github.com/meta-pytorch/OpenEnv}
374+
url = {https://github.com/huggingface/OpenEnv}
375375
}
376376
```
377377

378378
## License
379379

380-
BSD-3-Clause License (see [LICENSE](https://github.com/meta-pytorch/OpenEnv/blob/main/LICENSE))
380+
BSD-3-Clause License (see [LICENSE](https://github.com/huggingface/OpenEnv/blob/main/LICENSE))

envs/carla_env/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ RUN pip install --upgrade pip \
8989
&& pip install --no-cache-dir cffi cryptography
9090

9191
# Install OpenEnv core from GitHub
92-
RUN pip install --no-cache-dir git+https://github.com/meta-pytorch/OpenEnv.git
92+
RUN pip install --no-cache-dir git+https://github.com/huggingface/OpenEnv.git
9393

9494
# Copy and install environment dependencies
9595
COPY server/requirements.txt /tmp/requirements.txt

envs/carla_env/server/Dockerfile.real

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2525
WORKDIR /app
2626

2727
# Install OpenEnv core from GitHub
28-
RUN pip install --no-cache-dir git+https://github.com/meta-pytorch/OpenEnv.git
28+
RUN pip install --no-cache-dir git+https://github.com/huggingface/OpenEnv.git
2929

3030
# Copy and install environment dependencies
3131
COPY server/requirements.txt /tmp/requirements.txt

envs/dm_control_env/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ description = "dm_control Environment for OpenEnv - wraps MuJoCo-based continuou
1515
requires-python = ">=3.10"
1616
dependencies = [
1717
# Core OpenEnv dependencies
18-
"openenv[core] @ git+https://github.com/meta-pytorch/OpenEnv.git",
18+
"openenv[core] @ git+https://github.com/huggingface/OpenEnv.git",
1919
"fastapi>=0.115.0",
2020
"pydantic>=2.0.0",
2121
"uvicorn>=0.24.0",

0 commit comments

Comments
 (0)