Skip to content

Commit

Permalink
code formatting, bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
petercorke committed Nov 11, 2023
1 parent d3cbc97 commit e8b28b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions rtb-data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ The Toolbox function `path_to_datafile(file)` will return an absolute
`Path` to `file` which is relative to the root of the data package. For example

```
loadmat('data/map1.mat') # read rtbdata/data/map1.mat
loadmat('foo.dat') # read ./foo.dat
loadmat('~/foo.dat') # read $HOME/foo.dat
loadmat("data/map1.mat") # read rtbdata/data/map1.mat
loadmat("foo.dat") # read ./foo.dat
loadmat("~/foo.dat") # read $HOME/foo.dat
```

A matching local file takes precendence over a file in the data package.
Expand Down
2 changes: 1 addition & 1 deletion rtb-data/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
with open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()

release = "1.0.0"
release = "1.0.1"

# list all data folders here, to ensure they get packaged

Expand Down

0 comments on commit e8b28b1

Please sign in to comment.