Skip to content

Commit

Permalink
build: Explicitly add Python 3.10 classifier to pyproject.toml
Browse files Browse the repository at this point in the history
At a moment `poetry@1.1.10` does not automatically add the classifier
into wheel metadata, even when run on python 3.10.0rc2, as it used at
GitHub Actions.

Related: python-poetry/poetry#4581
  • Loading branch information
playpauseandstop committed Oct 2, 2021
1 parent 87dc65e commit f7a4f24
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
# Classifier below need to added manually to classifiers list due to
# https://github.com/python-poetry/poetry/issues/4581 issue, when using
# stable poetry
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed"
Expand Down

0 comments on commit f7a4f24

Please sign in to comment.