Skip to content

Commit ae8f6d7

Browse files
committed
Update to version 23.0.2
1 parent 6d03243 commit ae8f6d7

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ keywords:
1919
- GUI
2020
- Python
2121
license: MIT
22-
version: 23.0.1
22+
version: 23.0.2
2323
date-released: '2023-03-21'

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="topasgraphsim",
8-
version="23.0.1",
8+
version="23.0.2",
99
author="Sebastian Schäfer",
1010
author_email="sebastian.schaefer@student.uni-halle.de",
1111
description="GUI to analyze the results of a Monte-Carlo radiation simulation",
@@ -20,6 +20,7 @@
2020
"Operating System :: OS Independent",
2121
],
2222
install_requires=[
23+
"customtkinter",
2324
"requests",
2425
"numpy",
2526
"scipy",

topasgraphsim/src/classes/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class CheckForUpdates:
1010
def __init__(self):
1111

12-
currentVersion = "23.0.1"
12+
currentVersion = "23.0.2"
1313
try:
1414
newestVersion = requests.get(
1515
"https://api.github.com/repos/sebasj13/topasgraphsim/releases/latest"

topasgraphsim/topasgraphsim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def __init__(self):
2525
super().__init__()
2626

2727
self.appname = "TopasGraphSim"
28-
self.version = "23.0.1"
28+
self.version = "23.0.2"
2929
self.author = "Sebastian Schäfer"
3030
self.affiliation = "UK Halle\nMLU Halle-Wittenberg\nUK Hamburg-Eppendorf"
3131
self.title(f"{self.appname} - v.{self.version}")

0 commit comments

Comments
 (0)