mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
24 lines
668 B
Diff
24 lines
668 B
Diff
this is standard since python3.8, stop using pypi modules for this
|
|
diff --git a/chaospy/__init__.py b/chaospy/__init__.py
|
|
index 9430314..f0c5321 100644
|
|
--- a/chaospy/__init__.py
|
|
+++ b/chaospy/__init__.py
|
|
@@ -6,7 +6,7 @@ This module contains tools for performing uncertainty quantification of models.
|
|
"""
|
|
import logging
|
|
import os
|
|
-import importlib_metadata
|
|
+import importlib.metadata
|
|
|
|
from numpoly import *
|
|
|
|
@@ -29,7 +29,7 @@ from chaospy.regression import *
|
|
from chaospy.external import *
|
|
from chaospy.recurrence import *
|
|
|
|
-__version__ = importlib_metadata.version("chaospy")
|
|
+__version__ = importlib.metadata.version("chaospy")
|
|
|
|
|
|
def configure_logging():
|