Skip to content

Commit

Permalink
Bump bugfix release and use mypy==1.4.1 for static typing checks
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Jun 26, 2023
1 parent 372ed60 commit 50c6e47
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-elementpath.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Lint with mypy if Python version != 3.7
if: ${{ matrix.python-version != '3.7' }}
run: |
pip install mypy==1.3.0 xmlschema lxml-stubs
pip install mypy==1.4.1 xmlschema lxml-stubs
mypy --show-error-codes --strict elementpath
- name: Test with unittest
run: |
Expand Down
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
*********

`v4.1.4`_ (2023-06-26)
======================
* Fix select of prefixed names (issue #68)
* Fix zero length *xs:base64Binary* (pull request #69)

`v4.1.3`_ (2023-06-17)
======================
* Fix XP30+ fn:path (issue #67)
Expand Down Expand Up @@ -424,3 +429,4 @@ CHANGELOG
.. _v4.1.1: https://github.com/sissaschool/elementpath/compare/v4.1.0...v4.1.1
.. _v4.1.2: https://github.com/sissaschool/elementpath/compare/v4.1.1...v4.1.2
.. _v4.1.3: https://github.com/sissaschool/elementpath/compare/v4.1.2...v4.1.3
.. _v4.1.4: https://github.com/sissaschool/elementpath/compare/v4.1.3...v4.1.4
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 = '4.1'
# The full version, including alpha/beta/rc tags
release = '4.1.3'
release = '4.1.4'

# -- 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__ = '4.1.3'
__version__ = '4.1.4'
__author__ = "Davide Brunato"
__contact__ = "brunato@sissa.it"
__copyright__ = "Copyright 2018-2023, SISSA"
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: '2023-06-17'
softwareVersion: v4.1.3
releaseDate: '2023-06-26'
softwareVersion: v4.1.4
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='4.1.3',
version='4.1.4',
packages=find_packages(include=['elementpath', 'elementpath.*']),
package_data={
'elementpath': ['py.typed'],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ commands =

[testenv:mypy-py{38,39,310,311,312,py3}]
deps =
mypy==1.3.0
mypy==1.4.1
xmlschema
lxml-stubs
commands =
Expand Down

0 comments on commit 50c6e47

Please sign in to comment.