Skip to content

Commit

Permalink
[HWORKS-802] Python 3.12 support for clients (logicalclocks#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
robzor92 committed Jan 24, 2024
1 parent 252d290 commit fba0199
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions python/setup.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import os
import imp
from importlib.machinery import SourceFileLoader
from setuptools import setup, find_packages


__version__ = imp.load_source(
"hopsworks.version", os.path.join("hopsworks", "version.py")
).__version__
__version__ = (
SourceFileLoader("hopsworks.version", os.path.join("hopsworks", "version.py"))
.load_module()
.__version__
)


def read(fname):
Expand Down

0 comments on commit fba0199

Please sign in to comment.