diff libervia/backend/__init__.py @ 4079:10b6ad569157

version: use standard Python's `dev0` instead of Libervia specific `D` for dev version
author Goffi <goffi@goffi.org>
date Tue, 06 Jun 2023 12:41:53 +0200
parents 4b842c1fb686
children
line wrap: on
line diff
--- a/libervia/backend/__init__.py	Fri Jun 02 18:21:15 2023 +0200
+++ b/libervia/backend/__init__.py	Tue Jun 06 12:41:53 2023 +0200
@@ -15,12 +15,9 @@
 
 # You should have received a copy of the GNU Affero General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
-import os.path
 from sat_tmp import wokkel
 
-version_file = os.path.join(os.path.dirname(__file__), "VERSION")
-with open(version_file) as f:
-    __version__ = f.read().strip()
+__version__ = "0.9.0.dev0"
 
 if not wokkel.installed:
     wokkel.install()