From e1de592e46c7d7b129dbfb80de1f64a24e9d82ee Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Fri, 18 May 2018 08:09:42 +1200 Subject: Release cleanups - rtool suck back in, the bastard! Delete it. - Ditch CONTRRIBUTORS, saving a step. I added this before Github had a contributors page, which is good enough: https://github.com/mitmproxy/mitmproxy/graphs/contributors - Remove some cruft from CI that we no longer use. --- release/ci.py | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'release/ci.py') diff --git a/release/ci.py b/release/ci.py index 7550aae4..a5000879 100755 --- a/release/ci.py +++ b/release/ci.py @@ -12,7 +12,6 @@ import tarfile import zipfile from os.path import join, abspath, dirname, exists, basename -import cryptography.fernet import click # https://virtualenv.pypa.io/en/latest/userguide.html#windows-notes @@ -268,14 +267,5 @@ def upload(): ]) -@cli.command("decrypt") -@click.argument('infile', type=click.File('rb')) -@click.argument('outfile', type=click.File('wb')) -@click.argument('key', envvar='RTOOL_KEY') -def decrypt(infile, outfile, key): - f = cryptography.fernet.Fernet(key.encode()) - outfile.write(f.decrypt(infile.read())) - - if __name__ == "__main__": cli() -- cgit v1.2.3