qtmodel 0.5.46__tar.gz → 0.5.47__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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qtmodel
3
- Version: 0.5.46
3
+ Version: 0.5.47
4
4
  Summary: python modeling for qt 2024-12-17
5
5
  Home-page: https://github.com/Inface0443/pyqt
6
6
  Author: dqy-zhj
@@ -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.5.46 - 2024-12-17
15
+ # 最新版本 V0.5.47 - 2024-12-17
16
16
  > pip install --upgrade qtmodel -i https://pypi.org/simple
17
17
  - 除荷载组合外不自动刷新模型,用户可自行调用update_model刷新模型
18
18
  ## 项目管理
@@ -2883,4 +2883,3 @@ odb.get_deviation_load(case_name="荷载工况1")
2883
2883
  Returns: json字符串,包含信息为list[dict]
2884
2884
 
2885
2885
 
2886
-
@@ -1,4 +1,4 @@
1
- # 最新版本 V0.5.46 - 2024-12-17
1
+ # 最新版本 V0.5.47 - 2024-12-17
2
2
  > pip install --upgrade qtmodel -i https://pypi.org/simple
3
3
  - 除荷载组合外不自动刷新模型,用户可自行调用update_model刷新模型
4
4
  ## 项目管理
@@ -2867,4 +2867,3 @@ from qtmodel import *
2867
2867
  odb.get_deviation_load(case_name="荷载工况1")
2868
2868
  ```
2869
2869
  Returns: json字符串,包含信息为list[dict]
2870
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qtmodel
3
- Version: 0.5.46
3
+ Version: 0.5.47
4
4
  Summary: python modeling for qt 2024-12-17
5
5
  Home-page: https://github.com/Inface0443/pyqt
6
6
  Author: dqy-zhj
@@ -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.5.46 - 2024-12-17
15
+ # 最新版本 V0.5.47 - 2024-12-17
16
16
  > pip install --upgrade qtmodel -i https://pypi.org/simple
17
17
  - 除荷载组合外不自动刷新模型,用户可自行调用update_model刷新模型
18
18
  ## 项目管理
@@ -2883,4 +2883,3 @@ odb.get_deviation_load(case_name="荷载工况1")
2883
2883
  Returns: json字符串,包含信息为list[dict]
2884
2884
 
2885
2885
 
2886
-
@@ -1,21 +1,19 @@
1
1
  from datetime import datetime
2
2
  from setuptools import setup, find_packages
3
+ from test import Readme
3
4
 
4
5
  # 读取文件内容
5
6
  with open("README.md", "r", encoding="utf-8") as fh:
6
7
  long_description = fh.read()
7
8
  # python setup.py sdist
8
9
  # twine upload dist/*
9
- # 获取当前日期和时间
10
- now = datetime.now()
11
- today = now.date()
12
10
 
13
11
  setup(
14
12
  name="qtmodel",
15
- version="0.5.46",
13
+ version=f"{Readme.version}",
16
14
  author="dqy-zhj",
17
15
  author_email="1105417715@qq.com",
18
- description=f"python modeling for qt {today} ",
16
+ description=f"python modeling for qt {datetime.now().date()} ",
19
17
  long_description=long_description, # 使用读取的 README.md 文件内容
20
18
  long_description_content_type="text/markdown", # 指明内容格式为markdown
21
19
  url="https://github.com/Inface0443/pyqt",
File without changes
File without changes
File without changes
File without changes
File without changes