Skip to content

Commit c36ac92

Browse files
committed
[#1161] Back to version.py
1 parent 6a586b4 commit c36ac92

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ project(
1111
'c', 'cpp', 'cython',
1212
license: 'MIT',
1313
meson_version: '>=1.8.3',
14-
version: run_command(['python', 'tofu/_version.py'], check:true).stdout().strip(),
14+
version: run_command(['python', 'tofu/version.py'], check:true).stdout().strip(),
1515
default_options: [
1616
'buildtype=release',
1717
'c_std=c11',

tofu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
import os
5555
import sys
5656
import warnings
57-
from ._version import __version__
57+
from .version import __version__
5858

5959

6060
# -------------------------------------
File renamed without changes.

0 commit comments

Comments
 (0)