Skip to content

Commit 512b5b2

Browse files
authored
Merge pull request #2908 from mabel-dev/HOUSEKEEPING/30
HOUSEKEEPING
2 parents 9c3871e + 6685072 commit 512b5b2

File tree

8 files changed

+5
-71763
lines changed

8 files changed

+5
-71763
lines changed

opteryx/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# THIS FILE IS AUTOMATICALLY UPDATED DURING THE BUILD PROCESS
22
# DO NOT EDIT THIS FILE DIRECTLY
33

4-
__build__ = 1766
4+
__build__ = 1767
55
__author__ = "@joocer"
6-
__version__ = "0.26.2-beta.1766"
6+
__version__ = "0.26.2-beta.1767"
77

88
# Store the version here so:
99
# 1) we don't load dependencies by storing it in __init__.py

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "opteryx"
3-
version = "0.26.2-beta.1766"
3+
version = "0.26.2-beta.1767"
44
description = "Query your data, where it lives"
55
requires-python = '>=3.11'
66
readme = {file = "README.md", content-type = "text/markdown"}

third_party/mabel/rugo/__init__.py

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,6 @@
55
Optimized for ultra-fast metadata extraction and analysis.
66
"""
77

8-
try:
9-
from importlib.metadata import version
8+
from .converters import rugo_to_orso_schema
109

11-
__version__ = version("rugo")
12-
except Exception:
13-
# Fallback version for development/editable installs
14-
__version__ = "0.0.0b0"
15-
16-
__author__ = "@joocer"
17-
18-
# Import converters for easy access
19-
try:
20-
from .converters import rugo_to_orso_schema
21-
22-
__all__ = ["rugo_to_orso_schema"]
23-
except ImportError:
24-
# orso may not be available
25-
__all__ = []
10+
__all__ = ["rugo_to_orso_schema"]

0 commit comments

Comments
 (0)