Skip to content

Commit

Permalink
Latest version does not work anymore with 3.6 and 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandroautalan committed May 23, 2024
1 parent b0932a9 commit bdc1e37
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Pygubu is inspired by [Glade](https://gitlab.gnome.org/GNOME/glade).
Installation
============

The latest version of pygubu requires Python >= 3.6
The latest version of pygubu requires Python >= 3.8

You can install pygubu using pip:

Expand Down
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "pygubu"
description = "A simple GUI builder for the python tkinter module"
readme = "README.md"
requires-python = ">=3.6"
requires-python = ">=3.8"
license = { text = "MIT" }
keywords = ["gui", "tkinter", "designer"]
authors = [
Expand All @@ -15,11 +15,13 @@ authors = [
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
Expand All @@ -28,7 +30,6 @@ classifiers = [
"Topic :: Software Development :: User Interfaces",
]
dependencies = [
"dataclasses;python_version<'3.7'",
"importlib_resources;python_version<'3.9'",
]
dynamic = ["version"]
Expand Down Expand Up @@ -68,7 +69,7 @@ where = ["src"]

[tool.black]
line-length = 80
target-version = ["py36", "py37", "py38", "py39", "py310"]
target-version = ["py38", "py39", "py310"]
include = '\\.pyi?$'
exclude = '''
/(
Expand Down

0 comments on commit bdc1e37

Please sign in to comment.