Rename kaya.session_memcache → kaya.session.memcache
CI / Build Pip package (push) Failing after 1m11s

- Move src/kaya/session_memcache/ → src/kaya/session/memcache/
- Add pkgutil.extend_path to kaya.session for subpackage namespace support
- Update pyproject.toml version_file path
- Update all import references (tests, READMEs, root README)
This commit is contained in:
2026-07-23 15:51:42 +00:00
parent dba0c24b1a
commit c8c8c6052a
8 changed files with 8 additions and 4 deletions
@@ -1,3 +1,7 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
from ._mixin import SessionMixin
from ._session import Session
from ._store import InMemorySessionStore, SessionStore