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 37e1036 commit d4cbee9Copy full SHA for d4cbee9
setup.py
@@ -3,7 +3,7 @@
3
4
here = os.path.abspath(os.path.dirname(__file__))
5
version = {}
6
-with open(os.path.join(here, "opto/version.py")) as fp:
+with open(os.path.join(here, "opto/version.py"), encoding="utf8") as fp:
7
exec(fp.read(), version)
8
__version__ = version["__version__"]
9
@@ -23,7 +23,7 @@
23
url="https://github.com/microsoft/trace",
24
license='MIT LICENSE',
25
description="An AutoDiff-like tool for training AI systems end-to-end with general feedback",
26
- long_description=open('README.md').read(),
+ long_description=open('README.md', encoding="utf8").read(),
27
packages=setuptools.find_packages(include=["opto*"]),
28
install_requires=install_requires,
29
python_requires=">=3.9",
0 commit comments