excel2moodle 0.6.0__py3-none-any.whl → 0.6.1__py3-none-any.whl

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.
excel2moodle/__main__.py CHANGED
@@ -2,9 +2,10 @@
2
2
 
3
3
  import logging.config as logConfig
4
4
  import signal
5
+ import sys
5
6
  from pathlib import Path
6
7
 
7
- from PySide6 import QtWidgets, sys
8
+ from PySide6.QtWidgets import QApplication
8
9
 
9
10
  import excel2moodle
10
11
  from excel2moodle import e2mMetadata, mainLogger
@@ -23,7 +24,7 @@ def main() -> None:
23
24
  logfile.replace(f"{logfile}.old")
24
25
  logConfig.dictConfig(config=loggerConfig)
25
26
  signal.signal(signal.SIGINT, signal.SIG_DFL)
26
- app = QtWidgets.QApplication(sys.argv)
27
+ app = QApplication(sys.argv)
27
28
  settings = Settings()
28
29
  database: dataStructure.QuestionDB = dataStructure.QuestionDB(settings)
29
30
  window = ui.MainWindow(settings, database)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: excel2moodle
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: A package for converting questions from a spreadsheet, to valid moodle-xml
5
5
  Author: Jakob Bosse
6
6
  License-Expression: GPL-3.0-or-later
@@ -81,6 +81,13 @@ If You want to support my work as well, you can by me a [coffee](https://ko-fi.c
81
81
 
82
82
  # Changelogs
83
83
 
84
+ ## 0.6.1 (2025-07-12)
85
+ Fixing import error caused by dumping pyside meta package
86
+
87
+ ### bugfix (1 change)
88
+
89
+ - [fixing pyside import error](https://gitlab.com/jbosse3/excel2moodle/-/commit/e5e0fc7695caa1a6864785828ff7311fa9624ad4)
90
+
84
91
  ## 0.6.0 (2025-07-12)
85
92
  Added variable generator and other architechtural improvements
86
93
 
@@ -1,5 +1,5 @@
1
1
  excel2moodle/__init__.py,sha256=mnb-RWgmWIPSBk4S65a_jP6rxntAkTeYxN0ObUJalbQ,1801
2
- excel2moodle/__main__.py,sha256=sG4ygwfVFskLQorBn-v98SvasNcPmwl_vLYpruT5Hk8,1175
2
+ excel2moodle/__main__.py,sha256=DgddHjnxFPXQp4CFvqGNjgUZRgaHp15U57Va9UdW_ms,1184
3
3
  excel2moodle/logger.py,sha256=fq8ZOkCI1wj38v8IyrZsUlpt16onlSH_phqbVvYUwBQ,3725
4
4
  excel2moodle/core/__init__.py,sha256=87BwhtZse72Tk17Ib-V9X2k9wkhmtVnEj2ZmJ9JBAnI,63
5
5
  excel2moodle/core/bullets.py,sha256=F9g0dZfkMjoYQ5jneT47GwM1-RAyhPF8y203W5mOYpU,3505
@@ -31,9 +31,9 @@ excel2moodle/ui/appUi.py,sha256=0jxpgGiDU82AEDrj-BFgD9XdktrY_0EB7bAVMqWzJLY,1328
31
31
  excel2moodle/ui/dialogs.py,sha256=8m1_hBGHt56T581PpPDsCrAd66cIy_Kxo_8NIy9kw_0,6179
32
32
  excel2moodle/ui/equationChecker.py,sha256=RII9DlZAlHqe5udBWzeUaozhtyi3ZkCZs8h3-oO6pEw,2700
33
33
  excel2moodle/ui/treewidget.py,sha256=aLR_B1iT2j1AAGk_9Dc6WtRbq1XijK8pICG8BEOW_Ak,1916
34
- excel2moodle-0.6.0.dist-info/licenses/LICENSE,sha256=ywQqe6Sitymkf2lV2NRcx_aGsaC-KbSl_EfEsRXmNRw,35135
35
- excel2moodle-0.6.0.dist-info/METADATA,sha256=ry39D3WK7oORTNVo4H1zmK9SU3d1QYEPNGBFwEpoRLI,8429
36
- excel2moodle-0.6.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
37
- excel2moodle-0.6.0.dist-info/entry_points.txt,sha256=myfMLDThuGgWHMJDPPfILiZqo_7D3fhmDdJGqWOAjPw,60
38
- excel2moodle-0.6.0.dist-info/top_level.txt,sha256=5V1xRUQ9o7UmOCmNoWCZPAuy5nXp3Qbzyqch8fUGT_c,13
39
- excel2moodle-0.6.0.dist-info/RECORD,,
34
+ excel2moodle-0.6.1.dist-info/licenses/LICENSE,sha256=ywQqe6Sitymkf2lV2NRcx_aGsaC-KbSl_EfEsRXmNRw,35135
35
+ excel2moodle-0.6.1.dist-info/METADATA,sha256=963o72_grmJfUqLcnc4HQcbPXxOQ62BRtZGUCq6ku34,8656
36
+ excel2moodle-0.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
37
+ excel2moodle-0.6.1.dist-info/entry_points.txt,sha256=myfMLDThuGgWHMJDPPfILiZqo_7D3fhmDdJGqWOAjPw,60
38
+ excel2moodle-0.6.1.dist-info/top_level.txt,sha256=5V1xRUQ9o7UmOCmNoWCZPAuy5nXp3Qbzyqch8fUGT_c,13
39
+ excel2moodle-0.6.1.dist-info/RECORD,,