Skip to content

Commit 406300b

Browse files
committed
Update CI tests and release info
1 parent fe6fc0c commit 406300b

File tree

7 files changed

+16
-10
lines changed

7 files changed

+16
-10
lines changed

.github/workflows/test-xmlschema.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, "3.13.0-alpha.4", "pypy-3.10"]
17+
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, "3.13.0-alpha.6", "pypy-3.10"]
1818
exclude:
1919
- os: macos-latest
2020
python-version: 3.8
@@ -36,7 +36,7 @@ jobs:
3636
python -m pip install --upgrade pip
3737
pip install setuptools
3838
- name: Install optional dependencies
39-
if: ${{ matrix.python-version != '3.13.0-alpha.4' }}
39+
if: ${{ matrix.python-version != '3.13.0-alpha.6' }}
4040
run: pip install lxml jinja2
4141
- name: Test with unittest
4242
run: |
@@ -48,5 +48,5 @@ jobs:
4848
flake8 xmlschema --max-line-length=100 --statistics
4949
- name: Lint with mypy
5050
run: |
51-
pip install mypy==1.9.0 elementpath==4.4.0 lxml-stubs
51+
pip install mypy==1.10.0 elementpath==4.4.0 lxml-stubs
5252
mypy --show-error-codes --strict xmlschema

CHANGELOG.rst

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
CHANGELOG
33
*********
44

5+
`v3.3.1`_ (2024-04-27)
6+
======================
7+
* Update validation errors with logging stacktrace in debug mode
8+
* Improve locations parsing and URL encoding
9+
510
`v3.3.0`_ (2024-04-17)
611
======================
712
* Rewrite the validation of openContent using InterleavedModelVisitor and SuffixedModelVisitor
@@ -698,3 +703,4 @@ v0.9.6 (2017-05-05)
698703
.. _v3.2.0: https://github.com/brunato/xmlschema/compare/v3.1.0...v3.2.0
699704
.. _v3.2.1: https://github.com/brunato/xmlschema/compare/v3.2.0...v3.2.1
700705
.. _v3.3.0: https://github.com/brunato/xmlschema/compare/v3.2.1...v3.3.0
706+
.. _v3.3.1: https://github.com/brunato/xmlschema/compare/v3.3.0...v3.3.1

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
# The short X.Y version.
8282
version = '3.3'
8383
# The full version, including alpha/beta/rc tags.
84-
release = '3.3.0'
84+
release = '3.3.1'
8585

8686
# The language for content autogenerated by Sphinx. Refer to documentation
8787
# for a list of supported languages.

publiccode.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ publiccodeYmlVersion: '0.2'
66
name: xmlschema
77
url: 'https://github.com/sissaschool/xmlschema'
88
landingURL: 'https://github.com/sissaschool/xmlschema'
9-
releaseDate: '2024-04-17'
10-
softwareVersion: v3.3.0
9+
releaseDate: '2024-04-27'
10+
softwareVersion: v3.3.1
1111
developmentStatus: stable
1212
platforms:
1313
- linux

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name='xmlschema',
21-
version='3.3.0',
21+
version='3.3.1',
2222
packages=find_packages(include=['xmlschema*']),
2323
package_data={
2424
'xmlschema': ['py.typed', 'locale/**/*.mo', 'locale/**/*.po', 'schemas/*/*.xsd'],

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ commands =
4848

4949
[testenv:mypy-py{38,39,310,311,312,py3}]
5050
deps =
51-
mypy==1.9.0
51+
mypy==1.10.0
5252
elementpath==4.4.0
5353
lxml-stubs
5454
jinja2
@@ -69,7 +69,7 @@ deps =
6969
elementpath>=4.4.0, <5.0.0
7070
lxml
7171
jinja2
72-
mypy==1.9.0
72+
mypy==1.10.0
7373
lxml-stubs
7474
commands =
7575
pytest tests -ra

xmlschema/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
XMLSchema, XMLSchema10, XMLSchema11, XsdComponent, XsdType, XsdElement, XsdAttribute
3434
)
3535

36-
__version__ = '3.3.0'
36+
__version__ = '3.3.1'
3737
__author__ = "Davide Brunato"
3838
__contact__ = "brunato@sissa.it"
3939
__copyright__ = "Copyright 2016-2024, SISSA"

0 commit comments

Comments
 (0)