Skip to content

Commit a734c3a

Browse files
committed
fix github actions zip
1 parent 9d103ea commit a734c3a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/python-app.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
type: 'zip'
3030
filename: 'D2RLoader.windows.zip'
31-
path: './dist/'
31+
path: './dist/D2RLoader/*'
3232

3333
- name: Add release
3434
uses: ncipollo/release-action@v1

d2rloader/ui/info_tab.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def send_request(self, url: str, type: RequestType):
117117
def on_finished(self, reply: QNetworkReply, type: RequestType):
118118
response = reply.readAll()
119119
json_response = json.loads(response.data()) # pyright: ignore
120-
logger.debug(f"Requested Data: {type} -> {json_response}")
120+
logger.trace(f"Requested Data: {type} -> {json_response}")
121121

122122
if type == RequestType.TZ:
123123
self.tzinfo.process(json_response)

pyproject.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ dependencies = [
55
"loguru>=0.7.3",
66
"psutil>=6.1.1",
77
"pydantic>=2.10.6",
8-
"PySide6",
8+
"PySide6>=6.8.2.1",
99
"pywin32>=308; platform_system == 'Windows'",
1010
"unidecode>=1.3.8",
1111
]
12-
requires-python = ">=3.8"
12+
requires-python = ">=3.12"
1313
authors = [
1414
{name = "sh4nks", email = ""},
1515
]
@@ -28,9 +28,9 @@ classifiers = [
2828

2929
[dependency-groups]
3030
dev = [
31-
"ruff",
32-
"ipython",
33-
"pyinstaller"
31+
"ruff>=0.9.7",
32+
"ipython>=8.32.0",
33+
"pyinstaller>=6.12.0"
3434
]
3535

3636
[project.urls]

0 commit comments

Comments
 (0)