Skip to content

Commit

Permalink
Release 3.9.1.3 (#72)
Browse files Browse the repository at this point in the history
* Release 3.9.1.3

* better output

* error test
  • Loading branch information
avanov committed Dec 31, 2020
1 parent c8fa431 commit b51df19
Show file tree
Hide file tree
Showing 12 changed files with 1,314 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
=========

3.9.1.3
===============

* Slightly better error reports of Union parsing


3.9.1.2
===============

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
# The short X.Y version.
version = '3.9'
# The full version, including alpha/beta/rc tags.
release = '3.9.1.2'
release = '3.9.1.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ pytest-cov>=2.8.1,<2.11
mypy==0.790
py-money==0.5.0
requests<=2.26.0
vcrpy>=4.0.2
vcrpy>=4.0.2
openapi-type>=0.0.5
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def requirements(at_path: Path):
# ----------------------------

setup(name='typeit',
version='3.9.1.2',
version='3.9.1.3',
description='typeit brings typed data into your project',
long_description=README,
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion tests/parser/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def test_parse_builtins(typ, data):

def test_schema_node():
x = schema.nodes.SchemaNode(schema.primitives.Int())
assert x.__repr__().startswith('SchemaNode(Int(strict)')
assert x.__repr__().startswith('Int(strict)')


def test_type_with_dict():
Expand Down
2 changes: 2 additions & 0 deletions tests/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@

TESTS_ROOT = Path(__file__).parent.absolute()
VCR_FIXTURES_PATH = TESTS_ROOT / "vcr"

PETSTORE_SPEC = TESTS_ROOT / 'petstore.json'

0 comments on commit b51df19

Please sign in to comment.