Skip to content

Commit c95d13c

Browse files
committed
fix windows tests
1 parent a6dc5e3 commit c95d13c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ ipython_config.py
8585
# pyenv
8686
# For a library or package, you might want to ignore these files since the code is
8787
# intended to run in multiple environments; otherwise, check them in:
88-
# .python-version
88+
.python-version
8989

9090
# pipenv
9191
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.

doc/source/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Change Log
33
==========
44

55

6-
v1.3.0 (2024-02-17)
6+
v1.3.0 (2024-02-18)
77
===================
88

99
* Implemented `Remove support for python 3.8 <https://github.com/bckohan/django-render-static/issues/30>`_

tests/system_cmd.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
#!/usr/bin/env python
2+
import sys
3+
from pathlib import Path
4+
5+
sys.path.append(str(Path(__file__).parent.parent))
26
from tests import track_file
37
import json
4-
import sys
8+
59

610
if __name__ == "__main__":
711
if not track_file.is_file():

0 commit comments

Comments
 (0)