Skip to content

Commit

Permalink
Update release info and tox.ini tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed May 22, 2022
1 parent 6f86ea5 commit 73b0e78
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
CHANGELOG
*********

`v1.11.1`_ (2022-05-22)
=======================
* Protect converter calls in iter_decode()/iter_encode()
* Extend XSD type matching for code generators (fallback to schema types with a local name)

`v1.11.0`_ (2022-05-14)
=======================
* Add localization for validation related error messages
Expand Down Expand Up @@ -525,3 +530,4 @@ v0.9.6 (2017-05-05)
.. _v1.9.2: https://github.com/brunato/xmlschema/compare/v1.9.1...v1.9.2
.. _v1.10.0: https://github.com/brunato/xmlschema/compare/v1.9.2...v1.10.0
.. _v1.11.0: https://github.com/brunato/xmlschema/compare/v1.10.0...v1.11.0
.. _v1.11.1: https://github.com/brunato/xmlschema/compare/v1.11.0...v1.11.1
6 changes: 3 additions & 3 deletions publiccode.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# This repository adheres to the publiccode.yml standard by including this
# This repository adheres to the publiccode.yml standard by including this
# metadata file that makes public software easily discoverable.
# More info at https://github.com/italia/publiccode.yml

publiccodeYmlVersion: '0.2'
name: xmlschema
url: 'https://github.com/sissaschool/xmlschema'
landingURL: 'https://github.com/sissaschool/xmlschema'
releaseDate: '2022-05-14'
softwareVersion: v1.11.0
releaseDate: '2022-05-22'
softwareVersion: v1.11.1
developmentStatus: stable
platforms:
- linux
Expand Down
12 changes: 11 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,310}, pypy3, ep{250}, docs,
envlist = py{37,38,39,310}, pypy3, ep{250,251,252}, docs,
flake8, mypy-py{37,38,39,310}, coverage, pytest
skip_missing_interpreters = true
toxworkdir = {homedir}/.tox/xmlschema
Expand Down Expand Up @@ -29,6 +29,16 @@ deps =
elementpath==2.5.0
lxml

[testenv:ep251]
deps =
elementpath==2.5.1
lxml

[testenv:ep252]
deps =
elementpath==2.5.2
lxml

[testenv:docs]
commands =
make -C doc html
Expand Down
2 changes: 0 additions & 2 deletions xmlschema/validators/complex_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#
# @author Davide Brunato <brunato@sissa.it>
#
from collections.abc import MutableSequence
from typing import cast, Any, Callable, Iterator, List, Optional, Tuple, Union

from ..exceptions import XMLSchemaValueError
Expand All @@ -20,7 +19,6 @@
ExtraValidatorType
from ..translation import gettext as _
from ..helpers import get_prefixed_qname, get_qname, local_name
from .. import dataobjects

from .exceptions import XMLSchemaDecodeError
from .helpers import get_xsd_derivation_attribute
Expand Down

0 comments on commit 73b0e78

Please sign in to comment.