-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Hotfix to allow the update check to run with new structures.
- Loading branch information
1 parent
eac51ca
commit 416bb8d
Showing
2 changed files
with
45 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# This file is part of pydidas. | ||
# | ||
# Copyright 2024 - 2025, Helmholtz-Zentrum Hereon | ||
# SPDX-License-Identifier: GPL-3.0-only | ||
# | ||
# pydidas is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License version 3 as | ||
# published by the Free Software Foundation. | ||
# | ||
# Pydidas is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with Pydidas. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
|
||
""" | ||
Module with the pydidas Version number. | ||
""" | ||
|
||
__author__ = "Malte Storm" | ||
__copyright__ = "Copyright 2024 - 2025, Helmholtz-Zentrum Hereon" | ||
__license__ = "GPL-3.0-only" | ||
__version__ = "24.09.19" | ||
__maintainer__ = "Malte Storm" | ||
__status__ = "Production" | ||
|
||
|
||
version = __version__ | ||
VERSION = __version__ |