We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4b5f24 commit 218e7d1Copy full SHA for 218e7d1
doc/changes/unreleased.md
@@ -1,6 +1,16 @@
1
# Unreleased
2
3
-Verification of the Python and Exasol version format of the config by adding a BaseConfig class
+Verification of the Python and Exasol version format of the config by adding a BaseConfig class. To Use:
4
+
5
+ #Use
6
+ Project_Config = BaseConfig()
7
+ #modify
8
+ Project_Config = BaseConfig(python_versions=["3.12"])
9
+ #expand
10
+ class ProjectConfig(BaseConfig):
11
+ extra_data: list[str] = ["data"]
12
13
+Project_Config = ProjectConfig()
14
15
## Feature
16
0 commit comments