File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010Anything MAY change at any time. The public API SHOULD NOT be considered stable.").
1111While in this phase, we will denote breaking changes with a minor increase.
1212
13+ ## 0.3.3
14+
15+ ### Fixed
16+
17+ * Cleanup
18+
1319## 0.3.2
1420
1521### Changed
Original file line number Diff line number Diff line change 11import pydantic
22
3- print ("here" )
4- print (pydantic .__version__ )
53if pydantic .__version__ >= "2.0.0" :
6- print ("yeah" )
74 from dac ._input ._config_pydantic_v2 import PackConfig # noqa: F401 # type: ignore
85elif pydantic .__version__ >= "1.0.0" :
9- print ("d'oh" )
106 from dac ._input ._config_pydantic_v1 import PackConfig # noqa: F401
117else :
128 raise RuntimeError (f"Unsupported pydantic version: { pydantic .__version__ } " )
You can’t perform that action at this time.
0 commit comments