Skip to content

Commit

Permalink
Upgrading requirements following Python 3.7 EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Aug 31, 2023
1 parent b7a4f75 commit 860dd66
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
[![PyPI pyversions](https://img.shields.io/pypi/pyversions/guidata.svg)](https://pypi.python.org/pypi/guidata/)
[![download count](https://img.shields.io/conda/dn/conda-forge/guidata.svg)](https://www.anaconda.com/download/)

## Overview

Simple example of ``guidata`` datasets embedded in an application window:

<img src="https://raw.githubusercontent.com/CODRA-Ingenierie-Informatique/guidata/master/doc/images/screenshots/editgroupbox.png">
Expand All @@ -17,7 +19,7 @@ Copyrights and licensing:
* Copyright © 2023 [CEA](https://www.cea.fr), [Codra](https://codra.net/), [Pierre Raybaut](https://github.com/PierreRaybaut).
* Licensed under the terms of the BSD 3-Clause (see [LICENSE](LICENSE)).

## Overview
## Features

Based on the Qt library, ``guidata`` is a Python library generating graphical user
interfaces for easy dataset editing and display. It also provides helpers and
Expand Down
2 changes: 1 addition & 1 deletion doc/update_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

if __name__ == "__main__":
print("Updating requirements.rst file...", end=" ")
gen_module_req_rst(guidata, ["Python>=3.7", "PyQt5>=5.11"])
gen_module_req_rst(guidata, ["Python>=3.8", "PyQt5>=5.11"])
print("done.")
2 changes: 1 addition & 1 deletion guidata/tests/test_genreqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def test_compare_cfg_toml():

def test_generate_requirement_tables():
"""Test generate_requirement_tables."""
genreqs.gen_path_req_rst(GR_PATH, "guidata", ["Python>=3.7", "PyQt>=5.11"], GR_PATH)
genreqs.gen_path_req_rst(GR_PATH, "guidata", ["Python>=3.8", "PyQt>=5.11"], GR_PATH)


if __name__ == "__main__":
Expand Down

0 comments on commit 860dd66

Please sign in to comment.