8000 hotfix setup.py and 0.2.10 release · sparkur/python-sasl3@9674823 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9674823

Browse files
authored
hotfix setup.py and 0.2.10 release
1 parent bdc5465 commit 9674823

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from setuptools import setup, Extension
1919
import sys
2020

21-
version = '0.2.9'
21+
version = '0.2.10'
2222

2323
# From https://github.com/pandas-dev/pandas/pull/24274:
2424
# For mac, ensure extensions are built for macos 10.9 when compiling on a
@@ -40,8 +40,9 @@
4040
libraries=["sasl2"],
4141
language="c++")
4242

43-
with open("README.md", "r") as fh:
44-
long_description = fh.read()
43+
try:
44+
with open("README.md", "r") as fh:
45+
long_description = fh.read()
4546
except FileNotFoundError:
4647
long_description = ''
4748

0 commit comments

Comments
 (0)
0