From c17bcd66c83e21bf591b469bc2763e4aaf110532 Mon Sep 17 00:00:00 2001 From: Dick Marinus Date: Sat, 14 Jul 2018 09:41:54 +0200 Subject: [PATCH] exclude *.pyc from sdist and lower python3-keyring to >= 11.0.0 --- MANIFEST.in | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index be32b95d..1c5f697c 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,2 @@ include LICENSE.txt AUTHORS changelog.rst -recursive-include tests * +recursive-include tests *.py *.txt *.feature *.ini diff --git a/setup.py b/setup.py index 7845724d..3e68ee44 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ install_requirements = [ 'configobj >= 5.0.6', 'humanize >= 0.5.1', 'cli_helpers[styles] >= 1.0.1', - 'keyring >= 12.2.0' + 'keyring >= 11.0.0' ]