Skip to content

Commit

Permalink
Fix required Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
petamas committed May 13, 2023
1 parent 63cf347 commit d4997a1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@ authors = [
]
description = "OS-independent wrapper for shlex and mslex"
readme = "README.md"
requires-python = ">=3.5"
# mslex is supposed to support >=3.5, but it has an accidental f-string, making it unusable on 3.5
# see https://github.com/smoofra/mslex/issues/1
requires-python = ">=3.6"
dependencies = [
"mslex",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand Down

0 comments on commit d4997a1

Please sign in to comment.