From e7e25e68ddbb275e8dfdfff4ea176eaea0079558 Mon Sep 17 00:00:00 2001 From: Peter Marheine Date: Thu, 1 Aug 2024 06:28:06 +0000 Subject: [PATCH] Add missing import in packaging test This test was broken when changed to begin using importlib, but that wasn't evident because the tests directory wasn't being automatically tested. --- tests/packaging.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/packaging.py b/tests/packaging.py index 42e9efe..ce2b705 100644 --- a/tests/packaging.py +++ b/tests/packaging.py @@ -1,4 +1,5 @@ """Tests around project's distribution and packaging.""" +import importlib.metadata import os import unittest