Merge remote-tracking branch 'origin/master' into 3667.test-utilities-python-3

This commit is contained in:
Itamar Turner-Trauring 2021-04-06 09:26:23 -04:00
commit 7a6d9c69e6
4 changed files with 4 additions and 1 deletions

View File

@ -20,8 +20,10 @@ jobs:
os:
- macos-latest
- windows-latest
- ubuntu-latest
python-version:
- 2.7
- 3.6
steps:

0
newsfragments/3616.minor Normal file
View File

0
newsfragments/3669.minor Normal file
View File

View File

@ -11,6 +11,7 @@ import sys
# See the docs/about.rst file for licensing information.
import os, subprocess, re
from io import open
basedir = os.path.dirname(os.path.abspath(__file__))
@ -357,7 +358,7 @@ if version:
setup(name="tahoe-lafs", # also set in __init__.py
description='secure, decentralized, fault-tolerant file store',
long_description=open('README.rst', 'rU').read(),
long_description=open('README.rst', 'r', encoding='utf-8').read(),
author='the Tahoe-LAFS project',
author_email='tahoe-dev@tahoe-lafs.org',
url='https://tahoe-lafs.org/',