Skip to content

Commit

Permalink
Fix version number in some files
Browse files Browse the repository at this point in the history
  • Loading branch information
themasterlink committed Jan 14, 2020
1 parent e946f5b commit 83da0f3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ A very small config file could look like this:
{
"setup": {
"blender_install_path": "/home_local/<env:USER>/blender/",
"blender_version": "blender-2.80-linux-glibc217-x86_64",
"blender_version": "blender-2.81-linux-glibc217-x86_64",
"pip": [
"h5py"
]
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXBUILD = /home_local/${USER}/blender/blender-2.80-linux-glibc217-x86_64/blender --background --python run.py --
SPHINXBUILD = /home_local/${USER}/blender/blender-2.81-linux-glibc217-x86_64/blender --background --python run.py --
SPHINXPROJ = BlenderPipeline
SOURCEDIR = source
BUILDDIR = build
Expand Down
2 changes: 1 addition & 1 deletion docs/Readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
The scripts assume that blender is installed at `/home_local/${USER}/blender/blender-2.80-linux-glibc217-x86_64`
The scripts assume that blender is installed at `/home_local/${USER}/blender/blender-2.81-linux-glibc217-x86_64`

Regenerate docs:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import os
import sys
sys.path.insert(0, os.path.abspath('../..'))
sys.path.append("/home_local/" + os.environ["USER"] + " /blender/blender-2.80-linux-glibc217-x86_64/custom-python-packages/")
sys.path.append("/home_local/" + os.environ["USER"] + " /blender/blender-2.81-linux-glibc217-x86_64/custom-python-packages/")
exclude_patterns = ["run.py", "debug.py"]

autodoc_default_flags = ['members', 'undoc-members', 'private-members', 'show-inheritance']
Expand Down
2 changes: 1 addition & 1 deletion examples/basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The three arguments afterwards are used to fill placeholders like `<args:0>` ins
```yaml
"setup": {
"blender_install_path": "/home_local/<env:USER>/blender/",
"blender_version": "blender-2.80-linux-glibc217-x86_64",
"blender_version": "blender-2.81-linux-glibc217-x86_64",
"pip": [
"h5py",
"imageio"
Expand Down

0 comments on commit 83da0f3

Please sign in to comment.