package/python-flit-core: bump to version 3.8.0
Drop patch which is now upstream. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
cbf4207063
commit
db7089edd4
@ -1,80 +0,0 @@
|
||||
From 2cd8b5708be88b90ea2fa0fb35407a5ec2038c8e Mon Sep 17 00:00:00 2001
|
||||
From: James Hilliard <james.hilliard1@gmail.com>
|
||||
Date: Sat, 27 Nov 2021 02:36:15 -0700
|
||||
Subject: [PATCH] Fix ast version parser for multiple assignments
|
||||
|
||||
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
|
||||
[Upstream status:
|
||||
https://github.com/takluyver/flit/pull/474]
|
||||
---
|
||||
flit_core/common.py | 21 +++++++++++--------
|
||||
.../tests/samples/moduleunimportabledouble.py | 8 +++++++
|
||||
flit_core/tests/test_common.py | 5 +++++
|
||||
3 files changed, 25 insertions(+), 9 deletions(-)
|
||||
create mode 100644 flit_core/tests/samples/moduleunimportabledouble.py
|
||||
|
||||
diff --git a/flit_core/common.py b/flit_core/common.py
|
||||
index f1f378f..86bcf4b 100644
|
||||
--- a/flit_core/common.py
|
||||
+++ b/flit_core/common.py
|
||||
@@ -132,15 +132,18 @@ def get_docstring_and_version_via_ast(target):
|
||||
for child in node.body:
|
||||
# Only use the version from the given module if it's a simple
|
||||
# string assignment to __version__
|
||||
- is_version_str = (
|
||||
- isinstance(child, ast.Assign)
|
||||
- and len(child.targets) == 1
|
||||
- and isinstance(child.targets[0], ast.Name)
|
||||
- and child.targets[0].id == "__version__"
|
||||
- and isinstance(child.value, ast.Str)
|
||||
- )
|
||||
- if is_version_str:
|
||||
- version = child.value.s
|
||||
+ if isinstance(child, ast.Assign):
|
||||
+ for target in child.targets:
|
||||
+ is_version_str = (
|
||||
+ isinstance(target, ast.Name)
|
||||
+ and target.id == "__version__"
|
||||
+ and isinstance(child.value, ast.Str)
|
||||
+ )
|
||||
+ if is_version_str:
|
||||
+ version = child.value.s
|
||||
+ break
|
||||
+ else:
|
||||
+ continue
|
||||
break
|
||||
else:
|
||||
version = None
|
||||
diff --git a/flit_core/tests/samples/moduleunimportabledouble.py b/flit_core/tests/samples/moduleunimportabledouble.py
|
||||
new file mode 100644
|
||||
index 0000000..42d51f3
|
||||
--- /dev/null
|
||||
+++ b/flit_core/tests/samples/moduleunimportabledouble.py
|
||||
@@ -0,0 +1,8 @@
|
||||
+
|
||||
+"""
|
||||
+A sample unimportable module with double assignment
|
||||
+"""
|
||||
+
|
||||
+raise ImportError()
|
||||
+
|
||||
+VERSION = __version__ = "0.1"
|
||||
diff --git a/flit_core/tests/test_common.py b/flit_core/tests/test_common.py
|
||||
index 02cfab7..42e230b 100644
|
||||
--- a/flit_core/tests/test_common.py
|
||||
+++ b/flit_core/tests/test_common.py
|
||||
@@ -70,6 +70,11 @@ class ModuleTests(TestCase):
|
||||
'version': '0.1'}
|
||||
)
|
||||
|
||||
+ info = get_info_from_module(Module('moduleunimportabledouble', samples_dir))
|
||||
+ self.assertEqual(info, {'summary': 'A sample unimportable module with double assignment',
|
||||
+ 'version': '0.1'}
|
||||
+ )
|
||||
+
|
||||
info = get_info_from_module(Module('module1', samples_dir / 'constructed_version'))
|
||||
self.assertEqual(info, {'summary': 'This module has a __version__ that requires runtime interpretation',
|
||||
'version': '1.2.3'}
|
||||
--
|
||||
2.33.1
|
||||
|
@ -1,3 +1,3 @@
|
||||
# md5, sha256 from https://pypi.org/pypi/flit_core/json
|
||||
md5 4a4791e97f3a8c9a1645064a35636ee6 flit_core-3.7.1.tar.gz
|
||||
sha256 14955af340c43035dbfa96b5ee47407e377ee337f69e70f73064940d27d0a44f flit_core-3.7.1.tar.gz
|
||||
md5 7c41da13273f7787709a24f74e0f5a99 flit_core-3.8.0.tar.gz
|
||||
sha256 b305b30c99526df5e63d6022dd2310a0a941a187bd3884f4c8ef0418df6c39f3 flit_core-3.8.0.tar.gz
|
||||
|
@ -4,9 +4,9 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PYTHON_FLIT_CORE_VERSION = 3.7.1
|
||||
PYTHON_FLIT_CORE_VERSION = 3.8.0
|
||||
PYTHON_FLIT_CORE_SOURCE = flit_core-$(PYTHON_FLIT_CORE_VERSION).tar.gz
|
||||
PYTHON_FLIT_CORE_SITE = https://files.pythonhosted.org/packages/15/d1/d8798b83e953fd6f86ca9b50f93eec464a9305b0661469c8234e61095481
|
||||
PYTHON_FLIT_CORE_SITE = https://files.pythonhosted.org/packages/10/e5/be08751d07b30889af130cec20955c987a74380a10058e6e8856e4010afc
|
||||
PYTHON_FLIT_CORE_LICENSE = BSD-3-Clause
|
||||
PYTHON_FLIT_CORE_SETUP_TYPE = flit-bootstrap
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user