mg-pso-gui 0.2.6__py3-none-any.whl → 0.2.7__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mg-pso-gui
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: GUI for MG-PSO
5
5
  Author: Robert Cordingly
6
6
  Author-email: <rcording@uw.ed>
@@ -5,7 +5,7 @@ mgpsogui/gui/HomePage.py,sha256=hkrXtQ3rh1vWIxuzTXFgv8h49QCna3XsTZHc-c_csEg,2162
5
5
  mgpsogui/gui/OptionManager.py,sha256=wyLYHr0d2I_wUYugGxDrxbYVYD9aC-SE_7f22Cwdezw,20269
6
6
  mgpsogui/gui/OptionManager_backup.py,sha256=TCWfPnHL2foN5id47jsi267lamRG6yGU6y_M29eOOJk,18530
7
7
  mgpsogui/gui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- mgpsogui/gui/General/ParameterView.py,sha256=yIeknEI3E9devXezGyg8Y3GbQwglFApUOVz1rWR3QGo,4764
8
+ mgpsogui/gui/General/ParameterView.py,sha256=06vqbbQDmH_MTWlo8ksr4198bXRqRlk0xCRXkqgyGKc,5001
9
9
  mgpsogui/gui/General/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  mgpsogui/gui/PlatformTab/PlatformTab.py,sha256=XVaXjNoH1MBI-587CWigLIT3LGT00yzEAEnXNkzCLrk,10947
11
11
  mgpsogui/gui/PlatformTab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -68,8 +68,8 @@ mgpsogui/util/recosu/utils/trace_writer.py,sha256=V9BJlOjCbNYGoXGEk3CF5wjifBxvar
68
68
  mgpsogui/util/recosu/utils/utils.py,sha256=QB8vftq3142ekG0ORjz0ZBHU5YknXbR0oTsrxrPAsF0,3951
69
69
  mgpsogui/util/recosu/utils/plot/__init__.py,sha256=h1KjM7_tNDv351pcwt8A6Ibb1jhwWyx5Gbu-zj-sI3Q,71
70
70
  mgpsogui/util/recosu/utils/plot/cost_steps.py,sha256=1Ce11AJyweWkmvjXPxEygzS-h8yVLmQEDLS53yjPLqQ,3779
71
- mg_pso_gui-0.2.6.dist-info/METADATA,sha256=bFnv2h-3jTQsEX6Frbu1XSd9Y1Ae4WfCTiKxfSGz87Y,9454
72
- mg_pso_gui-0.2.6.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
73
- mg_pso_gui-0.2.6.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
74
- mg_pso_gui-0.2.6.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
75
- mg_pso_gui-0.2.6.dist-info/RECORD,,
71
+ mg_pso_gui-0.2.7.dist-info/METADATA,sha256=aVmf8mplWsFTtxfh5cc96ouxQgBvujqEtPjANJ2P0WQ,9454
72
+ mg_pso_gui-0.2.7.dist-info/WHEEL,sha256=cVxcB9AmuTcXqmwrtPhNK88dr7IR_b6qagTj0UvIEbY,91
73
+ mg_pso_gui-0.2.7.dist-info/entry_points.txt,sha256=jg82VOFjR1XDGrchs1wJSCqKYE4Ozv12aBcCSp--koA,117
74
+ mg_pso_gui-0.2.7.dist-info/top_level.txt,sha256=y7JuS9xJN5YdxUsQ3PSVjN8MzQAnR146bP3ZN3PYWdE,9
75
+ mg_pso_gui-0.2.7.dist-info/RECORD,,
@@ -63,16 +63,16 @@ class ParameterView(CTkScrollableFrame):
63
63
  month.set(vv[1])
64
64
  day.set(vv[2])
65
65
  year_options = [str(i) for i in range(1999, 2030)]
66
- month_options = [str(i) for i in range(1, 13)]
67
- day_options = [str(i) for i in range(1, 32)]
68
-
66
+ month_options = ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"]
67
+ day_options = ["01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31"]
68
+
69
69
  update_date = lambda om_text_var=om_text_var, year=year, month=month, day=day: om_text_var.set(f"{year.get()}-{month.get()}-{day.get()}")
70
70
  year_menu = CTkOptionMenu(self.containerFrame, variable=year, values=year_options, command=update_date)
71
71
  year_menu.grid(row=row, column=3, columnspan=1, padx=(0, 0), pady=(5, 5), sticky="ew")
72
72
  month_menu = CTkOptionMenu(self.containerFrame, variable=month, values=month_options, command=update_date)
73
- month_menu.grid(row=row, column=4, columnspan=1, padx=(0, 0), pady=(5, 5), sticky="ew")
73
+ month_menu.grid(row=row, column=4, columnspan=1, padx=(0, 0), pady=(5, 5), width=30, sticky="ew")
74
74
  day_menu = CTkOptionMenu(self.containerFrame, variable=day, values=day_options, command=update_date)
75
- day_menu.grid(row=row, column=5, columnspan=1, padx=(0, 0), pady=(5, 5), sticky="ew")
75
+ day_menu.grid(row=row, column=5, columnspan=1, padx=(0, 0), pady=(5, 5), width=30, sticky="ew")
76
76
  else:
77
77
  bb = CTkEntry(self.containerFrame)
78
78
  bb.grid(row=row, column=3, columnspan=3, padx=(5, 5), pady=(5, 5), sticky="ew")