uncommitted - luma.emulator

Ready changes

Summary

Import uploads missing from VCS:

Diff

diff --git a/debian/changelog b/debian/changelog
index 32dcecd..3e3d050 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+luma.emulator (1.4.0-3) unstable; urgency=medium
+
+  * [05b6194] Fix ModuleNotFoundError. (Closes: #1009478)
+  * [fae08e9] Apply cme fix dpkg. Set Standards-Version to 4.6.0 (no changes)
+  * [20822a4] Replace license name MIT->EXPAT
+
+ -- Anton Gladky <gladk@debian.org>  Sun, 15 May 2022 13:44:25 +0200
+
 luma.emulator (1.4.0-2) unstable; urgency=medium
 
   * Source-only upload
diff --git a/luma/__init__.py b/luma/__init__.py
new file mode 100644
index 0000000..1aea73b
--- /dev/null
+++ b/luma/__init__.py
@@ -0,0 +1,8 @@
+# -*- coding: utf-8 -*-
+# Copyright (c) 2017-2020 Richard Hull and contributors
+# See LICENSE.rst for details.
+
+try:
+    __import__('pkg_resources').declare_namespace(__name__)
+except ImportError:
+    __path__ = __import__('pkgutil').extend_path(__path__, __name__)
diff --git a/pytest.ini b/pytest.ini
index 28e15c2..335968d 100644
--- a/pytest.ini
+++ b/pytest.ini
@@ -1,2 +1,2 @@
 [pytest]
-addopts = -v -r wsx -s
+addopts = --timeout=10 -v -r wsx -s
diff --git a/setup.py b/setup.py
index 2a7fa3e..405838e 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ import re
 import os
 import sys
 from io import open
-from setuptools import setup, find_namespace_packages
+from setuptools import setup, find_packages
 
 
 def read_file(fname, encoding='utf-8'):
@@ -51,7 +51,7 @@ setup(
     url="https://github.com/rm-hull/luma.emulator",
     download_url="https://github.com/rm-hull/luma.emulator/tarball/" + version,
     namespace_packages=["luma"],
-    packages=find_namespace_packages(include=['luma']),
+    packages=find_packages(),
     include_package_data=True,
     package_data={"luma.emulator.images": [
         "luma/emulator/images/led_on.png",

Debdiff

File lists identical (after any substitutions)

No differences were encountered between the control files of package luma.emulator-doc

No differences were encountered between the control files of package python3-luma.emulator

Run locally

More details

Full run details