We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f64218 commit b9e76cbCopy full SHA for b9e76cb
src/pyrfc/__init__.py
@@ -8,6 +8,7 @@
8
# Set DLL path, per https://docs.python.org/3.8/whatsnew/3.8.html#bpo-36085-whatsnew
9
10
import os
11
+from .version import __version_info__, __version__
12
13
if os.name == "nt":
14
try:
@@ -41,6 +42,7 @@
41
42
language_iso_to_sap,
43
language_sap_to_iso,
44
Connection,
45
+ Decimal,
46
Throughput,
47
TypeDescription,
48
FunctionDescription,
@@ -59,5 +61,3 @@
59
61
60
62
__author__ = "SAP SE"
63
__email__ = "srdjan.boskovic@sap.com"
-__version_info__ = (2, 7, 3)
-__version__ = ".".join(str(i) for i in __version_info__)
src/pyrfc/version.py
@@ -0,0 +1,2 @@
1
+__version_info__ = (2, 7, 3)
2
+__version__ = ".".join(str(i) for i in __version_info__)
0 commit comments