python-statsmodels/0001-Fix-missing-version-of-python3.10dist-statsmodels.patch
2022-11-22 10:58:00 +08:00

33 lines
924 B
Diff

From 05fe988b4334620b37cff9e4e0f81fcc1157c54a Mon Sep 17 00:00:00 2001
From: jxy_git <jiangxinyu@kylinos.cn>
Date: Tue, 22 Nov 2022 10:55:47 +0800
Subject: [PATCH] Fix missing version of python3.10dist(statsmodels)
---
setup.py | 2 ++
1 file changed, 2 insertions(+)
diff --git a/setup.py b/setup.py
index 8100d10..a8537b3 100644
--- a/setup.py
+++ b/setup.py
@@ -79,6 +79,7 @@ EXTRAS_REQUIRE = {
# Values that rarely change
###############################################################################
DISTNAME = "statsmodels"
+VERSION = "0.13.5"
DESCRIPTION = "Statistical computations and models for Python"
README = SETUP_DIR.joinpath("README.rst").read_text()
LONG_DESCRIPTION = README
@@ -387,6 +388,7 @@ class BinaryDistribution(Distribution):
setup(
name=DISTNAME,
+ version=VERSION,
maintainer=MAINTAINER,
ext_modules=extensions,
maintainer_email=MAINTAINER_EMAIL,
--
2.38.1