Mark library as typed and bump version

This commit is contained in:
Correl Roush 2020-11-23 11:29:28 -05:00
parent d7cffc4df8
commit a5aa5adc9f
3 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "tornado-openapi3"
version = "0.1.1"
version = "0.1.2"
description = "Tornado OpenAPI 3 request and response validation library"
authors = ["Correl Roush <correl@gmail.com>"]
license = "MIT"

View file

@ -4,8 +4,8 @@ import unittest
from urllib.parse import urlencode
import attr
from hypothesis import given, settings
import hypothesis.strategies as s
from hypothesis import given, settings # type: ignore
import hypothesis.strategies as s # type: ignore
from openapi_core import create_spec # type: ignore
from openapi_core.exceptions import OpenAPIError # type: ignore
from openapi_core.schema.parameters.exceptions import ( # type: ignore

View file