Skip to content

Commit

Permalink
Don't pin virtualenv in dev section.
Browse files Browse the repository at this point in the history
The requirements in dev section are more general (and may require newer versions).
  • Loading branch information
andialbrecht committed Jul 24, 2023
1 parent be35807 commit 3eec63d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ sqlformat = "sqlparse.__main__:main"
dev = [
"flake8",
"build",
"virtualenv<20.22.0", # 20.22.0 dropped Python 3.6 support
"tox<4.5.0", # >=4.5.0 requires virtualenv>=20.22
]
test = [
"pytest",
Expand All @@ -53,6 +51,10 @@ test = [
doc = [
"sphinx",
]
tox = [
"virtualenv<20.22.0", # 20.22.0 dropped Python 3.6 support
"tox<4.5.0", # >=4.5.0 requires virtualenv>=20.22
]

[tool.flit.sdist]
include = [
Expand Down

0 comments on commit 3eec63d

Please sign in to comment.