Skip to content

Commit f5e85b2

Browse files
committed
lib update
1 parent 3c36213 commit f5e85b2

6 files changed

Lines changed: 125 additions & 13 deletions

File tree

.coverage

-148 KB
Binary file not shown.

ChangeLog.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Updates
22

3+
## 1.10.2 Lib import update
4+
5+
### bug Fix
6+
- shood smoth the improt prosses
7+
38
## 1.10.1 Lib structure update
49

510
### braking changes
@@ -37,18 +42,6 @@
3742
- State machine
3843
- will not be tested at this moment
3944

40-
### bug Fix
41-
42-
- somthing
43-
44-
### changes
45-
46-
- somthing
47-
48-
### breaking changes
49-
50-
- somthing
51-
5245
## 1.9.1 location update
5346

5447
### new things

__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import os
2+
3+
# Insert the inner package directory at the front of the package search path.
4+
__path__.insert(0, os.path.join(os.path.dirname(__file__), "GabesPythonToolBox"))

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description = "A collection of useful Python tools"
99
readme = "README.md"
1010
license = { text = "MIT" }
1111
authors = [{ name = "Gabriel Røer", email = "NorgeSkiFollo@gmail.com" }]
12-
requires-python = ">=3.8"
12+
requires-python = ">=3.14"
1313
dependencies = [
1414
"matplotlib>=3.10.6,<3.11",
1515
"PyYAML>=6.0.2,<7.0",
@@ -22,6 +22,14 @@ testing = [
2222
"coverage",
2323
]
2424

25+
dev = [
26+
"pre-commit",
27+
"black",
28+
"isort",
29+
"mypy",
30+
"flake8",
31+
]
32+
2533
[project.urls]
2634
"Homepage" = "https://github.com/NorgeSkiFollo/GabesPythonToolBox"
2735
"Repository" = "https://github.com/NorgeSkiFollo/GabesPythonToolBox.git"

requirements.in

130 Bytes
Binary file not shown.

requirements.txt

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
#
2+
# This file is autogenerated by pip-compile with Python 3.14
3+
# by the following command:
4+
#
5+
# pip-compile requirements.in
6+
#
7+
black==25.12.0
8+
# via -r requirements.in
9+
cfgv==3.5.0
10+
# via pre-commit
11+
click==8.3.1
12+
# via black
13+
colorama==0.4.6
14+
# via
15+
# click
16+
# pytest
17+
contourpy==1.3.3
18+
# via matplotlib
19+
coverage[toml]==7.13.0
20+
# via
21+
# -r requirements.in
22+
# pytest-cov
23+
cycler==0.12.1
24+
# via matplotlib
25+
distlib==0.4.0
26+
# via virtualenv
27+
filelock==3.20.0
28+
# via virtualenv
29+
flake8==7.3.0
30+
# via -r requirements.in
31+
fonttools==4.61.0
32+
# via matplotlib
33+
identify==2.6.15
34+
# via pre-commit
35+
iniconfig==2.3.0
36+
# via pytest
37+
isort==7.0.0
38+
# via -r requirements.in
39+
kiwisolver==1.4.9
40+
# via matplotlib
41+
librt==0.7.3
42+
# via mypy
43+
matplotlib==3.10.8
44+
# via -r requirements.in
45+
mccabe==0.7.0
46+
# via flake8
47+
mypy==1.19.0
48+
# via -r requirements.in
49+
mypy-extensions==1.1.0
50+
# via
51+
# black
52+
# mypy
53+
nodeenv==1.9.1
54+
# via pre-commit
55+
numpy==2.3.5
56+
# via
57+
# contourpy
58+
# matplotlib
59+
packaging==25.0
60+
# via
61+
# black
62+
# matplotlib
63+
# pytest
64+
pathspec==0.12.1
65+
# via
66+
# black
67+
# mypy
68+
pillow==12.0.0
69+
# via matplotlib
70+
platformdirs==4.5.1
71+
# via
72+
# black
73+
# virtualenv
74+
pluggy==1.6.0
75+
# via
76+
# pytest
77+
# pytest-cov
78+
pre-commit==4.5.0
79+
# via -r requirements.in
80+
pycodestyle==2.14.0
81+
# via flake8
82+
pyflakes==3.4.0
83+
# via flake8
84+
pygments==2.19.2
85+
# via pytest
86+
pyparsing==3.2.5
87+
# via matplotlib
88+
pytest==9.0.2
89+
# via
90+
# -r requirements.in
91+
# pytest-cov
92+
pytest-cov==7.0.0
93+
# via -r requirements.in
94+
python-dateutil==2.9.0.post0
95+
# via matplotlib
96+
pytokens==0.3.0
97+
# via black
98+
pyyaml==6.0.3
99+
# via
100+
# -r requirements.in
101+
# pre-commit
102+
six==1.17.0
103+
# via python-dateutil
104+
typing-extensions==4.15.0
105+
# via mypy
106+
virtualenv==20.35.4
107+
# via pre-commit

0 commit comments

Comments
 (0)