generated from deepin-community/template-repository-main
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No module named 'py._path'; 'py' is not a package
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
quart (0.18.3-2deepin1) unstable; urgency=medium | ||
|
||
* fix No module named 'py._path'; 'py' is not a package. | ||
|
||
-- LiChengGang <[email protected]> Wed, 22 Nov 2023 09:37:34 +0800 | ||
|
||
quart (0.18.3-2) unstable; urgency=medium | ||
|
||
* Team upload | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
--- quart-0.18.3.orig/tests/test_helpers.py | ||
+++ quart-0.18.3/tests/test_helpers.py | ||
@@ -6,7 +6,7 @@ from pathlib import Path | ||
from typing import AsyncGenerator | ||
|
||
import pytest | ||
-from py._path.local import LocalPath | ||
+#from py._path.local import LocalPath | ||
from werkzeug.exceptions import NotFound | ||
|
||
from quart import Blueprint, Quart, request | ||
--- quart-0.18.3.orig/tests/wrappers/test_response.py | ||
+++ quart-0.18.3/tests/wrappers/test_response.py | ||
@@ -8,7 +8,7 @@ from typing import Any, AsyncGenerator | ||
|
||
import pytest | ||
from hypothesis import given, strategies as strategies | ||
-from py._path.local import LocalPath | ||
+#from py._path.local import LocalPath | ||
from werkzeug.datastructures import Headers | ||
from werkzeug.exceptions import RequestedRangeNotSatisfiable | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fix-LocalPath |