From 80a13f6727dc9a975894fb6c3910d41782b0bb52 Mon Sep 17 00:00:00 2001 From: Carl Oscar Aaro Date: Wed, 30 Jun 2021 01:56:22 +0200 Subject: [PATCH] Added py39 to black target version --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9c8c501..379bb23 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "utcnow" -version = "0.2.2" +version = "0.3.0" description = "Timestamps as opinionated RFC 3339 (Date and Time on the Internet) formatted strings" authors = ["Carl Oscar Aaro "] homepage = "https://github.com/kalaspuff/utcnow" @@ -38,7 +38,7 @@ codecov = { version = ">=2.1.10", markers = "sys_platform != \"win32\"" } [tool.black] line-length = 120 -target_version = ["py37", "py38"] +target_version = ["py37", "py38", "py39"] include = '\.pyi?$' exclude = '\.eggs/|\.egg-info/|\.git/|\.github/|\.mypy_cache/|\.venv/|\.pytest_cache/|\.vscode/|__pycache__/|build/|dist/|setup\.py'