Skip to content

Commit ed2629f

Browse files
authored
Merge pull request #12 from kiwicom/mk/remove-init
chore(deps): Remove __init__.py from kw folder.
2 parents ec809db + 031208a commit ed2629f

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.3.4 (2024-09-27)
4+
5+
- Remove `__init__.py` from kw folder
6+
37
## 0.3.3 (2024-01-24)
48

59
- Add support for structlog==24.1.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.3
1+
0.3.4

kw/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from pathlib import Path
2-
from setuptools import find_packages, setup
2+
from setuptools import find_namespace_packages, setup
33

44
with open("requirements.in") as f:
55
REQUIREMENTS = [line for line in f if line and line[0] not in "#-"]
@@ -15,7 +15,7 @@
1515
url="https://github.com/kiwicom/kiwi-structlog-config",
1616
author="Booking Backend team",
1717
author_email="[email protected]",
18-
packages=find_packages(),
18+
packages=find_namespace_packages(),
1919
install_requires=REQUIREMENTS,
2020
tests_require=TEST_REQUIREMENTS,
2121
include_package_data=True,

0 commit comments

Comments
 (0)