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:
commit
42a419c00e
|
@ -24,15 +24,6 @@ jobs:
|
||||||
python-version:
|
python-version:
|
||||||
- 2.7
|
- 2.7
|
||||||
- 3.6
|
- 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:
|
steps:
|
||||||
|
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -11,6 +11,7 @@ import sys
|
||||||
# See the docs/about.rst file for licensing information.
|
# See the docs/about.rst file for licensing information.
|
||||||
|
|
||||||
import os, subprocess, re
|
import os, subprocess, re
|
||||||
|
from io import open
|
||||||
|
|
||||||
basedir = os.path.dirname(os.path.abspath(__file__))
|
basedir = os.path.dirname(os.path.abspath(__file__))
|
||||||
|
|
||||||
|
@ -357,7 +358,7 @@ if version:
|
||||||
|
|
||||||
setup(name="tahoe-lafs", # also set in __init__.py
|
setup(name="tahoe-lafs", # also set in __init__.py
|
||||||
description='secure, decentralized, fault-tolerant file store',
|
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='the Tahoe-LAFS project',
|
||||||
author_email='tahoe-dev@tahoe-lafs.org',
|
author_email='tahoe-dev@tahoe-lafs.org',
|
||||||
url='https://tahoe-lafs.org/',
|
url='https://tahoe-lafs.org/',
|
||||||
|
|
Loading…
Reference in New Issue