Skip to content

Commit d2612a3

Browse files
committed
.
1 parent cee5439 commit d2612a3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,10 +120,10 @@ myfile.close()
120120
```
121121

122122
# Testing
123-
Testing is done with [pytest](https://nose.readthedocs.io/en/latest/). Run the tests via:
123+
Testing is done with [pytest](https://docs.pytest.org/). Run the tests via:
124124

125125
```
126-
openmatrix\test> nosetests -v
126+
pytest
127127
```
128128

129129
# OMX File Validator
@@ -137,7 +137,7 @@ omx-validate my_file.omx
137137

138138
### File Objects
139139

140-
OMX File objects extend Pytables.File, so all Pytables functions work normally. We've also added some useful stuff to make things even easier.
140+
OMX File objects extend h5py.File, so all h5py functions work normally. We've also added some useful stuff to make things even easier.
141141

142142
### Writing Data
143143

@@ -170,7 +170,7 @@ total_trips = np.sum(myfile.root.trips)`
170170
```
171171

172172
### Properties
173-
Every Matrix has its own dictionary of key/value pair attributes (properties) which can be accessed using the standard Pytables .attrs field. Add as many attributes as you like; attributes can be string, ints, floats, and lists:
173+
Every Matrix has its own dictionary of key/value pair attributes (properties) which can be accessed using the standard h5py .attrs field. Add as many attributes as you like; attributes can be string, ints, floats, and lists:
174174

175175
```python
176176
print mymatrix.attrs

0 commit comments

Comments
 (0)