You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GH-39: Remove usages of the future components (GH-40)
* Fix path creation for the win32 platform
* Fix the routes in the final thumbnails
* Fix the PyAV version depending on the environment
* Add assertions after CLI test cases
Copy file name to clipboardExpand all lines: README.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,22 +34,24 @@ thumbnails --help
34
34
35
35
## Development
36
36
37
-
Install the dependencies:
37
+
### Install the dependencies
38
38
```bash
39
39
python3 -m pip install -r requirements.txt
40
40
```
41
41
42
-
Install the development dependencies:
42
+
### Install the development dependencies
43
43
```bash
44
-
python3 -m pip install -r requirements-dev.txt
44
+
python3 -m pip install -r tests/requirements.txt
45
45
```
46
46
47
-
Install the package in editable mode:
47
+
### Install the package in editable mode
48
48
```bash
49
49
python3 -m pip install -e .
50
50
```
51
+
If you are using a non-default version of Python (for example, you work with a virtual environment), you may get an error with `distutils`. See how to [fix](https://askubuntu.com/questions/1261162) the issue.
51
52
52
-
Run the tests to ensure everything is working before opening a PR:
53
+
### Run the tests
54
+
Run this in the local environment to ensure everything is working before opening a PR
0 commit comments