Skip to content

Commit d4b4e07

Browse files
update user guide
1 parent d7d17a5 commit d4b4e07

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

doc/changes/unreleased.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Unreleased
22

3-
Verification of the Python and Exasol version format of the config by adding a BaseConfig class. To Use:
3+
Verification of the Python/Exasol version format of the config by adding a BaseConfig class. To Use:
44

55
#Use
66
Project_Config = BaseConfig()
77
#modify
88
Project_Config = BaseConfig(python_versions=["3.12"])
99
#expand
1010
class ProjectConfig(BaseConfig):
11-
extra_data: list[str] = ["data"]
11+
extra_data: list[str] = ["data"]
1212

13-
Project_Config = ProjectConfig()
13+
Project_Config = ProjectConfig()
1414

1515
## Feature
1616

noxconfig.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,18 @@ def prepare_release_add_files(self, session, config):
3838
return self.template_workflows + self.actions
3939

4040

41+
#BaseConfig
42+
# Includes validation of the Exasol/Python version format and max/min Python version.
43+
# Use
44+
# Project_Config = BaseConfig()
45+
# modify
46+
# Project_Config = BaseConfig(python_versions=["3.12"])
47+
# expand (Do not overwrite the attributes of BaseConfig)
48+
# class ProjectConfig(BaseConfig):
49+
# extra_data: list[str] = ["data"]
50+
51+
52+
4153
class Config(BaseConfig):
4254
"""Project specific configuration used by nox infrastructure"""
4355

0 commit comments

Comments
 (0)