Merge pull request #20 from pkgw/release-0.4.1

Release 0.4.1
This commit is contained in:
Peter Williams 2020-09-18 09:53:08 -04:00 коммит произвёл GitHub
Родитель 5e33dd7e73 db810a2f8e
Коммит 50a66f9758
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,7 @@
# 0.4.1 (2020-Sep-18)
- Fix the test suite on Windows (hopefully).
# 0.4.0 (2020-Sep-15)
- Add a bunch of CLI documentation.

Просмотреть файл

@ -11,7 +11,7 @@ def get_long_desc():
in_preamble = True
lines = []
with open('README.md') as f:
with open('README.md', 'rt', encoding='utf8') as f:
for line in f:
if in_preamble:
if line.startswith('<!--pypi-begin-->'):
@ -88,8 +88,5 @@ setup_args = dict(
},
)
# That was fun.
if __name__ == '__main__':
setup(**setup_args)