Skip to content

Commit

Permalink
Update release info (v2.5.3)
Browse files Browse the repository at this point in the history
  - Fix a typo (unused import)
  - Rationalize xmlschema environments in tox.ini
  • Loading branch information
brunato committed May 30, 2022
1 parent bf869d9 commit a11a80b
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 13 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
*********

`v2.5.3`_ (2022-05-30)
======================
* Fix unary path step operator (issue #46)
* Fix sphinx warnings *'reference target not found'* (issue #45)

`v2.5.2`_ (2022-05-17)
======================
* Include PR #43 with fixes for `XPathContext.iter_siblings()` (issues #42 and #44)
Expand Down Expand Up @@ -361,3 +366,4 @@ CHANGELOG
.. _v2.5.0: https://github.com/sissaschool/elementpath/compare/v2.4.0...v2.5.0
.. _v2.5.1: https://github.com/sissaschool/elementpath/compare/v2.5.0...v2.5.1
.. _v2.5.2: https://github.com/sissaschool/elementpath/compare/v2.5.1...v2.5.2
.. _v2.5.3: https://github.com/sissaschool/elementpath/compare/v2.5.2...v2.5.3
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# The short X.Y version
version = '2.5'
# The full version, including alpha/beta/rc tags
release = '2.5.2'
release = '2.5.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion elementpath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# @author Davide Brunato <brunato@sissa.it>
#
__version__ = '2.5.2'
__version__ = '2.5.3'
__author__ = "Davide Brunato"
__contact__ = "brunato@sissa.it"
__copyright__ = "Copyright 2018-2022, SISSA"
Expand Down
3 changes: 1 addition & 2 deletions elementpath/xpath_selectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
# @author Davide Brunato <brunato@sissa.it>
#
from typing import TYPE_CHECKING, Any, Dict, Optional, Iterator, Union, Type
import typing

from .namespaces import NamespacesType
from .xpath_context import ContextRootType, XPathContext
Expand All @@ -18,7 +17,7 @@
from .xpath1 import XPath1Parser
from .xpath30 import XPath30Parser

ParserType = typing.Union[Type[XPath1Parser], Type[XPath2Parser], Type[XPath30Parser]]
ParserType = Union[Type[XPath1Parser], Type[XPath2Parser], Type[XPath30Parser]]
else:
ParserType = XPath2Parser

Expand Down
4 changes: 2 additions & 2 deletions publiccode.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ publiccodeYmlVersion: '0.2'
name: elementpath
url: 'https://github.com/sissaschool/elementpath'
landingURL: 'https://github.com/sissaschool/elementpath'
releaseDate: '2022-05-17'
softwareVersion: v2.5.2
releaseDate: '2022-05-30'
softwareVersion: v2.5.3
developmentStatus: stable
platforms:
- linux
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name='elementpath',
version='2.5.2',
version='2.5.3',
packages=find_packages(include=['elementpath', 'elementpath.*']),
include_package_data=True,
author='Davide Brunato',
Expand Down
10 changes: 4 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[tox]
envlist =
py{37,38,39,310}, pypy3, xmlschema{190,191,192,1100,1110},
py{37,38,39,310}, pypy3, xmlschema{19,110,111},
docs, flake8, mypy-py{37,38,39,310}, pytest, coverage
skip_missing_interpreters = true
toxworkdir = {homedir}/.tox/elementpath
Expand All @@ -16,11 +16,9 @@ deps =
xmlschema>=1.9.0
docs: Sphinx
coverage: coverage
xmlschema190: xmlschema==1.9.0
xmlschema191: xmlschema==1.9.1
xmlschema192: xmlschema==1.9.2
xmlschema1100: xmlschema==1.10.0
xmlschema1110: xmlschema==1.11.0
xmlschema190: xmlschema~=1.9.0
xmlschema1100: xmlschema~=1.10.0
xmlschema1110: xmlschema~=1.11.0
commands = python -m unittest
whitelist_externals = make

Expand Down

0 comments on commit a11a80b

Please sign in to comment.