Skip to content

Commit

Permalink
Update CI tests and release info
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Apr 27, 2024
1 parent fe6fc0c commit 406300b
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-xmlschema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, "3.13.0-alpha.4", "pypy-3.10"]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12, "3.13.0-alpha.6", "pypy-3.10"]
exclude:
- os: macos-latest
python-version: 3.8
Expand All @@ -36,7 +36,7 @@ jobs:
python -m pip install --upgrade pip
pip install setuptools
- name: Install optional dependencies
if: ${{ matrix.python-version != '3.13.0-alpha.4' }}
if: ${{ matrix.python-version != '3.13.0-alpha.6' }}
run: pip install lxml jinja2
- name: Test with unittest
run: |
Expand All @@ -48,5 +48,5 @@ jobs:
flake8 xmlschema --max-line-length=100 --statistics
- name: Lint with mypy
run: |
pip install mypy==1.9.0 elementpath==4.4.0 lxml-stubs
pip install mypy==1.10.0 elementpath==4.4.0 lxml-stubs
mypy --show-error-codes --strict xmlschema
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
*********

`v3.3.1`_ (2024-04-27)
======================
* Update validation errors with logging stacktrace in debug mode
* Improve locations parsing and URL encoding

`v3.3.0`_ (2024-04-17)
======================
* Rewrite the validation of openContent using InterleavedModelVisitor and SuffixedModelVisitor
Expand Down Expand Up @@ -698,3 +703,4 @@ v0.9.6 (2017-05-05)
.. _v3.2.0: https://github.com/brunato/xmlschema/compare/v3.1.0...v3.2.0
.. _v3.2.1: https://github.com/brunato/xmlschema/compare/v3.2.0...v3.2.1
.. _v3.3.0: https://github.com/brunato/xmlschema/compare/v3.2.1...v3.3.0
.. _v3.3.1: https://github.com/brunato/xmlschema/compare/v3.3.0...v3.3.1
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
# The short X.Y version.
version = '3.3'
# The full version, including alpha/beta/rc tags.
release = '3.3.0'
release = '3.3.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
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: xmlschema
url: 'https://github.com/sissaschool/xmlschema'
landingURL: 'https://github.com/sissaschool/xmlschema'
releaseDate: '2024-04-17'
softwareVersion: v3.3.0
releaseDate: '2024-04-27'
softwareVersion: v3.3.1
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 @@ -18,7 +18,7 @@

setup(
name='xmlschema',
version='3.3.0',
version='3.3.1',
packages=find_packages(include=['xmlschema*']),
package_data={
'xmlschema': ['py.typed', 'locale/**/*.mo', 'locale/**/*.po', 'schemas/*/*.xsd'],
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ commands =

[testenv:mypy-py{38,39,310,311,312,py3}]
deps =
mypy==1.9.0
mypy==1.10.0
elementpath==4.4.0
lxml-stubs
jinja2
Expand All @@ -69,7 +69,7 @@ deps =
elementpath>=4.4.0, <5.0.0
lxml
jinja2
mypy==1.9.0
mypy==1.10.0
lxml-stubs
commands =
pytest tests -ra
Expand Down
2 changes: 1 addition & 1 deletion xmlschema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
XMLSchema, XMLSchema10, XMLSchema11, XsdComponent, XsdType, XsdElement, XsdAttribute
)

__version__ = '3.3.0'
__version__ = '3.3.1'
__author__ = "Davide Brunato"
__contact__ = "brunato@sissa.it"
__copyright__ = "Copyright 2016-2024, SISSA"
Expand Down

0 comments on commit 406300b

Please sign in to comment.