Skip to content

Commit d96cbf3

Browse files
committed
<2025.7.10> Version 2.5.2
- Update: Website Ready to use Git Flow Changes to be committed: modified: .gitignore modified: .pre-commit-config.yaml deleted: Web/Background.png modified: Web/index.html deleted: dist/pyhelper-2.5.1-py3-none-any.whl modified: pyhelper/__init__.py modified: pyhelper/requirements.txt modified: pyproject.toml modified: requirements.txt
1 parent 2ab8bdc commit d96cbf3

File tree

9 files changed

+46
-31
lines changed

9 files changed

+46
-31
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ uv.lock
1818
update.*
1919
cao.*
2020
test.*
21+
nul

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
repos:
22
# Black
33
- repo: https://github.com/psf/black
4-
rev: 23.3.0
4+
rev: 25.1.0
55
hooks:
66
- id: black
7-
entry: uv run black
7+
# entry: py -m black .
88
args: ["--line-length=120"]
99

1010
# isort
1111
- repo: https://github.com/PyCQA/isort
12-
rev: 5.12.0
12+
rev: 6.0.1
1313
hooks:
1414
- id: isort
15-
entry: uv run isort
15+
# entry: py -m isort .
1616
args: ["--profile", "black"]

Web/Background.png

-860 KB
Binary file not shown.

Web/index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@
1414
<!-- Navbar with logo -->
1515
<div class="navbar">
1616
<div class="logo-container">
17-
<!-- Your logo in the header -->
17+
<img src="icon_small.ico" class="navbar-logo"></img>
1818

1919
<div class="logo-text">PyHelper</div>
2020
</div>
2121
<div class="nav-links">
2222
<a href="https://GitHub.com/nanocode38/pyhelper.git" class="nav-button">GitHub</a>
23-
<a href="https://github.com/nanocode38/pyhelper/releases/download/Version2.5.1/pyhelper-2.5.1-py3-none-any.whl" class="nav-button">Download</a>
24-
</div>
23+
<a href="https://github.com/nanocode38/pyhelper/releases/download/v2.5.2/pyhelper-2.5.2-py3-none-any.whl" class="nav-button">Download</a>
24+
</div>
2525
</div>
2626

2727
<!-- Main content -->
2828
<div class="content">
2929
<!-- Main logo -->
30-
30+
<img src="icon.ico" class="navbar-logo"></img>
3131

3232
<h1>Welcome to PyHelper</h1>
3333
<h3>PyHelper is a powerful tool set for complementing Python and Pygame development. Enhance your coding experience with our utilities and helpers.</h3>
@@ -36,7 +36,7 @@ <h3>PyHelper is a powerful tool set for complementing Python and Pygame developm
3636
<a href="https://github.com/nanocode38/pyhelper.git" class="animated-button">
3737
<span class="button-icon">🌐</span> Link to GitHub
3838
</a>
39-
<a href="https://github.com/nanocode38/pyhelper/releases/download/Version2极.5.1/pyhelper-2.5.1-py3-none-any.whl" class="animated-button download-btn">
39+
<a href="https://github.com/nanocode38/pyhelper/releases/download/v2.5.2/pyhelper-2.5.2-py3-none-any.whl" class="animated-button download-btn">
4040
<span class="button-icon">⬇️</span> Download Now
4141
</a>
4242
</div>
@@ -82,4 +82,4 @@ <h3 class="feature-title">Easy Integration</h3>
8282
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
8383
<script src="scripts.js"></script>
8484
</body>
85-
</html>
85+
</html>
-47.8 KB
Binary file not shown.

pyhelper/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
import win32com.client
5454

5555
__author__ = "nanocode38"
56-
__version__ = "2.5.1"
56+
__version__ = "2.5.2"
5757
__all__ = [
5858
"get_version",
5959
"file_reopen",

pyhelper/requirements.txt

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,25 @@
1+
altgraph~=0.17.4
12
certifi~=2025.1.31
2-
charset-normalizer~=3.4.1
3+
charset-normalizer~=3.4.2
4+
colorama~=0.4.6
5+
decorator~=5.2.1
36
docopt~=0.6.2
47
idna~=3.10
8+
packaging~=25.0
9+
pefile~=2023.2.7
510
pipreqs~=0.4.13
11+
psutil~=7.0.0
612
pygame~=2.6.1
7-
pywin32
8-
requests~=2.32.3
13+
pyinstaller~=6.14.1
14+
pyinstaller-hooks-contrib~=2025.5
15+
pyte~=0.8.2
16+
pywin32~=310
17+
pywin32-ctypes~=0.2.3
18+
requests~=2.32.4
919
setuptools~=75.8.2
20+
six~=1.17.0
21+
thefuck~=3.32
1022
urllib3~=2.3.0
23+
wcwidth~=0.2.13
24+
win_unicode_console~=0.5
1125
yarg~=0.1.10

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ version = "0.1.0"
44
description = "Add your description here"
55
readme = "README.md"
66
requires-python = ">=3.13"
7-
dependencies = []
7+
dependencies = [
8+
"pywin32>=310",
9+
"setuptools>=80.9.0",
10+
]
811

912
[dependency-groups]
10-
dev = [
11-
"black>=25.1.0",
12-
"ruff>=0.12.1",
13-
]
13+
dev = []
1414

1515
[tool.black]
1616
line-length = 120
@@ -20,4 +20,4 @@ profile = "black"
2020

2121
[tool.autoflake]
2222
remove_unused_imports = true
23-
remove_unused_variables = true
23+
remove_unused_variables = true

requirements.txt

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
certifi~=2025.1.31
2-
charset-normalizer~=3.4.1
3-
docopt~=0.6.2
4-
idna~=3.10
5-
pipreqs~=0.4.13
6-
pygame~=2.6.1
7-
pywin32
8-
requests~=2.32.3
9-
setuptools~=75.8.2
10-
urllib3~=2.3.0
11-
yarg~=0.1.10
1+
cfgv~=3.4.0
2+
distlib~=0.3.9
3+
filelock~=3.18.0
4+
identify~=2.6.12
5+
nodeenv~=1.9.1
6+
platformdirs~=4.3.8
7+
pre_commit~=4.2.0
8+
pywin32~=310
9+
PyYAML~=6.0.2
10+
setuptools~=80.9.0
11+
virtualenv~=20.31.2

0 commit comments

Comments
 (0)