Merge pull request #1035 from tahoe-lafs/3669.py36-windows-github-actions

Run tests with Python 3.6 and Windows on GitHub Actions

Fixes ticket:3669
This commit is contained in:
Itamar Turner-Trauring 2021-04-06 09:25:57 -04:00 committed by GitHub
commit 42a419c00e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 10 deletions

View File

@ -24,15 +24,6 @@ jobs:
python-version:
- 2.7
- 3.6
exclude:
# Do not run coverage tests with Python 3.6 on Windows for
# now. They will fail. Dealing with them separately would
# be simpler.
#
# XXX: https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3669
# should track the effort to add Windows to the test matrix.
- python-version: 3.6
os: windows-latest
steps:

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/',