Skip to content

Commit

Permalink
Remove upper bound on python_requires. (#137)
Browse files Browse the repository at this point in the history
* Remove upper bound on python_requires.

* Update changelog.
  • Loading branch information
bdice authored Jun 22, 2022
1 parent 2241890 commit b94db62
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
22 changes: 8 additions & 14 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
+++++++
Expand All @@ -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
----------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit b94db62

Please sign in to comment.