diff --git a/README.md b/README.md index a6515be0..2b1a120d 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ Install the CPL package ```sh -pip install cpl --extra-index-url https://pip.sh-edraft.de +pip install cpl-core --extra-index-url https://pip.sh-edraft.de ``` Install the CPL CLI diff --git a/src/cpl_core/cpl-core.json b/src/cpl_core/cpl-core.json index 7bba45ab..137ccad1 100644 --- a/src/cpl_core/cpl-core.json +++ b/src/cpl_core/cpl-core.json @@ -36,7 +36,7 @@ "sphinx-markdown-builder==0.5.5", "pygount==1.5.1" ], - "PythonVersion": ">=3.11", + "PythonVersion": ">=3.10", "PythonPath": {}, "Classifiers": [] }, diff --git a/src/cpl_core/pipes/__init__.py b/src/cpl_core/pipes/__init__.py index cc4799a0..ed7a54cf 100644 --- a/src/cpl_core/pipes/__init__.py +++ b/src/cpl_core/pipes/__init__.py @@ -19,6 +19,7 @@ __version__ = "2023.4.0" from collections import namedtuple + # imports: from .bool_pipe import BoolPipe from .ip_address_pipe import IPAddressPipe diff --git a/src/cpl_query/base/__init__.py b/src/cpl_query/base/__init__.py index 12c9541e..7418aff7 100644 --- a/src/cpl_query/base/__init__.py +++ b/src/cpl_query/base/__init__.py @@ -19,6 +19,7 @@ __version__ = "2023.4.0" from collections import namedtuple + # imports: from .default_lambda import default_lambda from .ordered_queryable import OrderedQueryable diff --git a/src/cpl_query/cpl-query.json b/src/cpl_query/cpl-query.json index 19fde564..6585103a 100644 --- a/src/cpl_query/cpl-query.json +++ b/src/cpl_query/cpl-query.json @@ -17,7 +17,7 @@ "LicenseDescription": "MIT, see LICENSE for more details.", "Dependencies": [], "DevDependencies": [], - "PythonVersion": ">=3.11", + "PythonVersion": ">=3.10", "PythonPath": {}, "Classifiers": [] }, diff --git a/tools/set_version/set-version.json b/tools/set_version/set-version.json index 22f7d8fb..50782028 100644 --- a/tools/set_version/set-version.json +++ b/tools/set_version/set-version.json @@ -16,8 +16,8 @@ "LicenseName": "MIT", "LicenseDescription": "MIT, see LICENSE for more details.", "Dependencies": [ - "cpl-core==2022.12.0", - "GitPython==3.1.29" + "cpl-core>=2022.12.0", + "GitPython>=3.1.29" ], "DevDependencies": [], "PythonVersion": ">=3.10.4",