Skip to content

Commit 4d148d3

Browse files
authored
Prep for 0.2.1 release tag (#118)
1 parent 2dc64bc commit 4d148d3

File tree

3 files changed

+29
-6
lines changed

3 files changed

+29
-6
lines changed

LICENSE.TXT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SPDX-License-Identifier: BSD-2-Clause
22

3-
Copyright (c) 2022-2024 by the drake-blender developers.
3+
Copyright (c) 2022-2025 by the drake-blender developers.
44

55
Redistribution and use in source and binary forms, with or without
66
modification, are permitted provided that the following conditions

README.md

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,42 @@ work with any Python interpreter that supports our `requirements.txt`.
1717

1818
## Running the render server
1919

20-
There are two ways to run the server.
20+
There are three ways to run the server.
2121

22-
(1) From a git checkout of `drake-blender`:
22+
(1) From pip:
2323

24+
Ensure you are using a virtual environment:
2425
```sh
25-
./bazel run :server
26+
python3 -m venv env
27+
```
28+
29+
Install into the virtual environment, either from a release tag or from the
30+
development branch:
31+
32+
(a) Using a release tag:
33+
```sh
34+
env/bin/pip install https://github.com/RobotLocomotion/drake-blender/archive/refs/tags/v0.2.1.zip
35+
env/bin/drake-blender-server --help
36+
```
37+
38+
(b) Using the development branch:
39+
40+
```sh
41+
env/bin/pip install https://github.com/RobotLocomotion/drake-blender/archive/refs/heads/main.zip
42+
env/bin/drake-blender-server --help
43+
```
44+
45+
(2) From a git checkout of `drake-blender`:
46+
47+
```sh
48+
./bazel run :server -- --help
2649
```
2750

2851
This way has no extra setup steps. It will automatically download the required
2952
dependencies into the Bazel sandbox, using the same versions as pinned by our
3053
requirements lockfile that is tested in our Continuous Integration build.
3154

32-
(2) From your own virtual environment:
55+
(3) From your own virtual environment:
3356

3457
The `server.py` file is self-contained -- it does not import any other files
3558
from drake-blender. Instead of using Bazel, you can also run it as a standalone

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[project]
44
name = "drake-blender"
5-
version = "0.2.1.dev0"
5+
version = "0.2.1"
66
# NOTE TO MAINTAINERS: when editing this list, you must copy the identical
77
# update into requirements.in as well.
88
dependencies = [

0 commit comments

Comments
 (0)