Skip to content

Commit 6cffc48

Browse files
committed
cleanup
1 parent 744c807 commit 6cffc48

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
Anything MAY change at any time. The public API SHOULD NOT be considered stable.").
1111
While 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

src/dac/_input/config.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
import pydantic
22

3-
print("here")
4-
print(pydantic.__version__)
53
if pydantic.__version__ >= "2.0.0":
6-
print("yeah")
74
from dac._input._config_pydantic_v2 import PackConfig # noqa: F401 # type: ignore
85
elif pydantic.__version__ >= "1.0.0":
9-
print("d'oh")
106
from dac._input._config_pydantic_v1 import PackConfig # noqa: F401
117
else:
128
raise RuntimeError(f"Unsupported pydantic version: {pydantic.__version__}")

0 commit comments

Comments
 (0)