From b94db62cb83d9df59c30615d246c439f1c3decee Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 22 Jun 2022 09:09:29 -0500 Subject: [PATCH] Remove upper bound on python_requires. (#137) * Remove upper bound on python_requires. * Update changelog. --- changelog.txt | 22 ++++++++-------------- setup.py | 2 +- 2 files changed, 9 insertions(+), 15 deletions(-) diff --git a/changelog.txt b/changelog.txt index 06d59979..f4ff4b81 100644 --- a/changelog.txt +++ b/changelog.txt @@ -17,6 +17,7 @@ Added - Schema module for the ProjectContext (#110). - ProjectContext support for the DocumentList, ImageViewer, TextDisplay, and VideoViewer modules (#110). - Dashboard config option ``CARDS_PER_ROW`` controls the number of cards per row in the desktop view (#133). +- The endpoint ``views.get_file`` now reads the ``download_name`` request argument (#127). Changed +++++++ @@ -28,23 +29,16 @@ Fixed - Hide the list and grid view buttons when viewing a single job (#92, #110). - Fixed bug with disabled modules not showing a checkbox to enable them in the grid view (#134). +- FileList module now respects prefix_jobid option (#127, #128). +- Endpoints added via ``Dashboard.add_url`` can be used with multiple routes (#130). -Version 0.2 -=========== - -[0.2.11] -- 2022-xx-xx ----------------------- - -Added -+++++ - -- The endpoint ``views.get_file`` now reads the ``download_name`` request argument (#127). +Removed ++++++++ -Fixed -+++++ +- Removed upper bound on ``python_requires`` (#137). -- FileList module now respects prefix_jobid option (#127, #128). -- Endpoints added via ``Dashboard.add_url`` can be used with multiple routes (#130). +Version 0.2 +=========== [0.2.10] -- 2022-04-05 ---------------------- diff --git a/setup.py b/setup.py index 4ca74672..38207c25 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ include_package_data=True, # Supported versions are determined according to NEP 29. # https://numpy.org/neps/nep-0029-deprecation_policy.html - python_requires=">=3.8,<4", + python_requires=">=3.8", install_requires=requirements, classifiers=[ "Development Status :: 3 - Alpha",