Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit 9e47aa6

Browse files
authored
Merge pull request #37 from DirectiveAthena/v6.1.1
V6.2.0
2 parents 6555775 + 85f6578 commit 9e47aa6

25 files changed

+24
-105
lines changed

Tests/ColorObjects/test_ColorObjectConversions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Custom Library
99
from AthenaColor import *
10-
from AthenaColor.functions.color_object_conversion import *
10+
from AthenaColor.func.color_object_conversion import *
1111

1212
# Custom Packages
1313
# ----------------------------------------------------------------------------------------------------------------------

Tests/ColorObjects/test_ColorTupleConversions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import unittest
77

88
# Custom Library
9-
from AthenaColor.functions.color_tuple_conversion import *
9+
from AthenaColor.func.color_tuple_conversion import *
1010

1111
# Custom Packages
1212
# ----------------------------------------------------------------------------------------------------------------------

Tests/Functions/test_ANSIsequences.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import unittest
77

88
# Custom Library
9-
from AthenaColor.functions.ansi_sequences import *
9+
from AthenaColor.func.ansi_sequences import *
1010

1111
# Custom Packages
1212

Tests/Functions/test_BlendModes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
# Custom Library
99
from AthenaColor import *
10-
from AthenaColor.functions.blend_modes import *
10+
from AthenaColor.func.blend_modes import *
1111

1212

1313
# Custom Packages

Tests/Functions/test_Constraints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import unittest
77

88
# Custom Library
9-
from AthenaColor.functions.constrains import *
9+
from AthenaColor.func.constrains import *
1010

1111
# Custom Packages
1212

Tests/Functions/test_DunderFunctions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import unittest
77

88
# Custom Library
9-
from AthenaColor.functions.dunder_functions import *
9+
from AthenaColor.func.dunder_functions import *
1010

1111
# Custom Packages
1212

Tests/Functions/test_General.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import unittest
77

88
# Custom Library
9-
from AthenaColor.functions.functions import *
9+
from AthenaColor.func.general import *
1010

1111
# Custom Packages
1212

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,10 @@ def readme_handler() -> str:
1515

1616
def version_handler() -> str:
1717
# ------------------------------------------------------------------------------------------------------------------
18-
version = 6,1,0 # <-- DEFINE THE VERSION IN A TUPLE FORMAT HERE
18+
version = 6,2,0 # <-- DEFINE THE VERSION IN A TUPLE FORMAT HERE
1919
# ------------------------------------------------------------------------------------------------------------------
2020
version_str = ".".join(str(i) for i in version)
2121

22-
with open("src/AthenaColor/_info/_v.py", "w") as file:
23-
file.write(f"def _version():\n return '{version_str}'")
24-
2522
return version_str
2623

2724
# ----------------------------------------------------------------------------------------------------------------------

src/AthenaColor/__init__.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,9 @@
2020

2121
from AthenaColor.models.color_system import RGB, RGBA, HEX, HEXA, HSV, HSL, CMYK
2222

23-
import AthenaColor.functions.color_tuple_conversion as color_tuple_conversion
24-
import AthenaColor.functions.color_object_conversion as color_object_conversion
23+
import AthenaColor.func.color_tuple_conversion as color_tuple_conversion
24+
import AthenaColor.func.color_object_conversion as color_object_conversion
2525

2626
# apply the fix, so that in windows the colors are shown correctly
27-
from AthenaColor.functions.functions import fix_console as _fix_console
28-
_fix_console()
29-
30-
# import the info function
31-
# noinspection PyProtectedMember
32-
from AthenaColor._info.info import info
27+
from AthenaColor.func.general import fix_console as _fix_console
28+
_fix_console()

src/AthenaColor/_info/_v.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)