From 48e474e11b8c698ed637660e79e788231e073566 Mon Sep 17 00:00:00 2001 From: Henrik Skupin Date: Wed, 28 Sep 2022 11:00:37 +0200 Subject: [PATCH] Release version 1.27.0 (#618) * Update changelog for 1.27.0 release * Bump version to 1.27.0 and update classifiers --- History.md | 20 ++++++++++++++++++++ mozdownload/cli.py | 2 +- setup.py | 9 +++++---- 3 files changed, 26 insertions(+), 5 deletions(-) diff --git a/History.md b/History.md index 5157d877..af6bf8fb 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,23 @@ +1.27.0 / 2022-09-28 +=================== + + * Switch remote tinderbox tests from mozilla-central to mozilla-release (#627) + * Bump redo from 2.0.3 to 2.0.4 (#626) + * Use GitHub Actions for running tests in CI (#623) + * Drop support for Python 2.7 (#622) + * Create .github folder for code owners and contribution doc (#616) + * Upgrade to Python 3.8 for CI tests (#615) + * Fix invalid escape sequence \d in setup.py for Python 3 (#612) + * Replace RequestException with NotFoundError (#596) + * Raise an error if an invalid build number for the candidate scraper is used (#607) + * Improve installation section of README (#608) + * Enable authentication tests in test_base_scraper.py (#597) + * Fix Python 3 job on MacOS (#600) (#601) + * Add markers to run remote tests by default only in CI (#572) + * Scheduled weekly dependency update for week 25 (#568) + * Fix remote tests for Fennec which is discontinued on mozilla-central (#566) + * Scheduled weekly dependency update for week 21 (#561) + 1.26 / 2019-05-13 ================= * Update setup.py for classifiers (#557) diff --git a/mozdownload/cli.py b/mozdownload/cli.py index df328461..35db4c81 100644 --- a/mozdownload/cli.py +++ b/mozdownload/cli.py @@ -15,7 +15,7 @@ from mozdownload import factory, scraper -__version__ = '1.26.0' +__version__ = '1.27.0' def parse_arguments(argv): diff --git a/setup.py b/setup.py index f5c248f1..79b56947 100755 --- a/setup.py +++ b/setup.py @@ -31,17 +31,18 @@ def get_version(): # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ "Development Status :: 5 - Production/Stable", + "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)", - "Operating System :: POSIX", - "Operating System :: Microsoft :: Windows", - "Operating System :: MacOS :: MacOS X", + "Operating System :: OS Independent", "Topic :: Software Development :: Testing", "Topic :: System :: Software Distribution", "Topic :: Utilities", - "Programming Language :: Python", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", ], keywords='mozilla', author='Mozilla Automation and Testing Team',