mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-23 23:02:25 +00:00
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
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@ -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
0
newsfragments/3669.minor
Normal file
3
setup.py
3
setup.py
@ -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/',
|
||||
|
Loading…
Reference in New Issue
Block a user