From 731bdc1a55e6128fbafab941d035f5e8313c5163 Mon Sep 17 00:00:00 2001 From: Alexander O'Donovan-Jones Date: Wed, 7 Jun 2017 19:04:26 +0000 Subject: [PATCH] Fix indentation for the distributions key. After some searching, it turns out that the `distributions` key was put within the `on` key (which makes no sense) so that any changes to it would not be detected, since the value of `distributions` was defaulting to just "sdist". Thanks to this guy: https://github.com/JonathonReinhart/scuba/issues/71#issuecomment-238057243 --- .travis.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 31528e4..e1f4ad9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,6 @@ deploy: user: aodj password: secure: sDOElGxcgWSkAFAEu3EAusZLhqUenOm7IcAeIas7xlof9jOKdbE5bO4oBsYkfbpryklpShUkOc+NXoqZ5Bxi2ZNruRGYaFCEif5wlUj2wEAgc9pCSL/QTb/IjoQDGym3l1yDUKm5pq6dvsXffxr/RrPu4/xrDMUM+FCmTDjs5UNoRhEULt8u5DigBo5UPl1tH4Hmp6TRzhlfaRw3Qld4iFZPpacp9lcI3WQmxKrL3grPxSq25pGkhOMVl05lT+MSt+i0gcbuOwhpyyAO8+kTU+EdCp9oAuVGkhf5ZFODdoc2NduTCXXv2xkzXJAs3yF8locfmzETC4Nd6EYvFpOvEhYfRRI2cnSaYzn69XY2UDi0RTGEa3jsDuqPFTbrpKRfiBRPElEAYheacLckiFYp82I94dENNNOy9yxupPGwn4qIKAS0taA4F6hDKVJ0F53ShPKliZRmmhxEnKhd04hiKv/Y+R+u9mwpB1iwxcDkEV0Hd3tRsrj2LCP1l/9kKgIlK5CvPUW8CvJwQJKHzICCfV8E/ybH9h5nBbfrHFWajzUj5NIdogZjyI4Da0ObKScNWCIt2YJ8kBPKISfxYIr3NIwb0VmK+bCDHXaalSr1wTj9cVV+JaMa375724qOc8yYdSrVsn0qSk4jH+UeGwj6cVouYZTKdNrvcBR4hRLEbME= + distributions: "sdist bdist_wheel" on: - distributions: "sdist bdist_wheel" repo: multiplechoice/scrapy-sqs-exporter diff --git a/setup.py b/setup.py index f7bd236..dc0e2e9 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ with open('requirements.txt') as requirements: setup( name='scrapy-sqs-exporter', - version='1.0.2', + version='1.0.3', py_modules=['sqsfeedexport'], install_requires=requirements.read().splitlines(), url='https://github.com/multiplechoice/scrapy-sqs-exporter',