qtmodel 0.6.11__tar.gz → 0.6.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of qtmodel might be problematic. Click here for more details.
- {qtmodel-0.6.11 → qtmodel-0.6.12}/PKG-INFO +3 -3
- {qtmodel-0.6.11 → qtmodel-0.6.12}/README.md +1 -1
- {qtmodel-0.6.11 → qtmodel-0.6.12}/qtmodel/qt_mdb.py +3 -2
- {qtmodel-0.6.11 → qtmodel-0.6.12}/qtmodel.egg-info/PKG-INFO +3 -3
- {qtmodel-0.6.11 → qtmodel-0.6.12}/setup.py +3 -1
- {qtmodel-0.6.11 → qtmodel-0.6.12}/qtmodel/__init__.py +0 -0
- {qtmodel-0.6.11 → qtmodel-0.6.12}/qtmodel/qt_db.py +0 -0
- {qtmodel-0.6.11 → qtmodel-0.6.12}/qtmodel/qt_odb.py +0 -0
- {qtmodel-0.6.11 → qtmodel-0.6.12}/qtmodel.egg-info/SOURCES.txt +0 -0
- {qtmodel-0.6.11 → qtmodel-0.6.12}/qtmodel.egg-info/dependency_links.txt +0 -0
- {qtmodel-0.6.11 → qtmodel-0.6.12}/qtmodel.egg-info/top_level.txt +0 -0
- {qtmodel-0.6.11 → qtmodel-0.6.12}/setup.cfg +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qtmodel
|
|
3
|
-
Version: 0.6.
|
|
4
|
-
Summary: python modeling for qt 2025-04-
|
|
3
|
+
Version: 0.6.12
|
|
4
|
+
Summary: python modeling for qt 2025-04-27
|
|
5
5
|
Home-page: https://github.com/Inface0443/pyqt
|
|
6
6
|
Author: dqy-zhj
|
|
7
7
|
Author-email: 1105417715@qq.com
|
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
|
|
15
|
-
> 最新版本 V0.6.
|
|
15
|
+
> 最新版本 V0.6.12 - 2025-04-27
|
|
16
16
|
> pip install --upgrade qtmodel -i https://pypi.org/simple
|
|
17
17
|
- 新增部分接口
|
|
18
18
|
# 建模操作
|
|
@@ -1453,7 +1453,7 @@ class Mdb:
|
|
|
1453
1453
|
try:
|
|
1454
1454
|
if sec_type == "混凝土箱梁":
|
|
1455
1455
|
qt_model.AddSection(id=index, name=name, secType=sec_type, secInfo=sec_info, charmInfo=charm_info,
|
|
1456
|
-
symmetry=symmetry, boxNum=box_num, boxHeight=box_height,
|
|
1456
|
+
symmetry=symmetry, boxNum=box_num, boxHeight=box_height, charmRight=charm_right, secRight=sec_right,
|
|
1457
1457
|
biasType=bias_type, centerType=center_type, shearConsider=shear_consider,
|
|
1458
1458
|
biasX=bias_x, biasY=bias_y, secProperty=sec_property)
|
|
1459
1459
|
elif sec_type == "工字钢梁" or sec_type == "箱型钢梁":
|
|
@@ -2700,7 +2700,8 @@ class Mdb:
|
|
|
2700
2700
|
try:
|
|
2701
2701
|
if info_x is None and info_y is None and info_z is None:
|
|
2702
2702
|
raise Exception("添加反应谱函数错误,无反应谱分项信息")
|
|
2703
|
-
qt_model.AddResponseSpectrumCase(name=name, description=description, kind=kind,
|
|
2703
|
+
qt_model.AddResponseSpectrumCase(name=name, description=description, kind=kind,
|
|
2704
|
+
infoX=info_x, infoY=info_y, infoZ=info_z)
|
|
2704
2705
|
except Exception as ex:
|
|
2705
2706
|
raise Exception(ex)
|
|
2706
2707
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qtmodel
|
|
3
|
-
Version: 0.6.
|
|
4
|
-
Summary: python modeling for qt 2025-04-
|
|
3
|
+
Version: 0.6.12
|
|
4
|
+
Summary: python modeling for qt 2025-04-27
|
|
5
5
|
Home-page: https://github.com/Inface0443/pyqt
|
|
6
6
|
Author: dqy-zhj
|
|
7
7
|
Author-email: 1105417715@qq.com
|
|
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
12
12
|
Classifier: Operating System :: OS Independent
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
|
|
15
|
-
> 最新版本 V0.6.
|
|
15
|
+
> 最新版本 V0.6.12 - 2025-04-27
|
|
16
16
|
> pip install --upgrade qtmodel -i https://pypi.org/simple
|
|
17
17
|
- 新增部分接口
|
|
18
18
|
# 建模操作
|
|
@@ -4,12 +4,14 @@ from setuptools import setup, find_packages
|
|
|
4
4
|
# 读取文件内容
|
|
5
5
|
with open("README.md", "r", encoding="utf-8") as fh:
|
|
6
6
|
long_description = fh.read()
|
|
7
|
+
|
|
8
|
+
# set http_proxy= && set https_proxy=
|
|
7
9
|
# python setup.py sdist
|
|
8
10
|
# twine upload dist/*
|
|
9
11
|
|
|
10
12
|
setup(
|
|
11
13
|
name="qtmodel",
|
|
12
|
-
version=f"V0.6.
|
|
14
|
+
version=f"V0.6.12",
|
|
13
15
|
author="dqy-zhj",
|
|
14
16
|
author_email="1105417715@qq.com",
|
|
15
17
|
description=f"python modeling for qt {datetime.now().date()} ",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|