From da2c344cd25bb455d3875a01030fbf3ec778acac Mon Sep 17 00:00:00 2001 From: Giuseppe De Marco Date: Tue, 13 Sep 2022 00:33:16 +0200 Subject: [PATCH 1/3] fix: [CIE] xsd updated - Closes https://github.com/italia/spid-sp-test/issues/115 --- src/spid_sp_test/xsd/cie/cie.xsd | 2 +- src/spid_sp_test/xsd/cie/saml-schema-metadata-sp-cie.xsd | 1 + src/spid_sp_test/xsd/cie/xml.xsd | 9 ++++++++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/spid_sp_test/xsd/cie/cie.xsd b/src/spid_sp_test/xsd/cie/cie.xsd index 9330524..2e746c2 100644 --- a/src/spid_sp_test/xsd/cie/cie.xsd +++ b/src/spid_sp_test/xsd/cie/cie.xsd @@ -29,7 +29,7 @@ - + diff --git a/src/spid_sp_test/xsd/cie/saml-schema-metadata-sp-cie.xsd b/src/spid_sp_test/xsd/cie/saml-schema-metadata-sp-cie.xsd index 49e7269..a242cd3 100644 --- a/src/spid_sp_test/xsd/cie/saml-schema-metadata-sp-cie.xsd +++ b/src/spid_sp_test/xsd/cie/saml-schema-metadata-sp-cie.xsd @@ -111,6 +111,7 @@ + diff --git a/src/spid_sp_test/xsd/cie/xml.xsd b/src/spid_sp_test/xsd/cie/xml.xsd index 425222f..b786e5c 100644 --- a/src/spid_sp_test/xsd/cie/xml.xsd +++ b/src/spid_sp_test/xsd/cie/xml.xsd @@ -48,7 +48,14 @@ - + + + + + + + + In due course, we should install the relevant ISO 2- and 3-letter codes as the enumerated possible values . . . From c3a01215a169ffca30cb33f059a17f7aca9c2e77 Mon Sep 17 00:00:00 2001 From: Giuseppe De Marco Date: Tue, 13 Sep 2022 00:35:22 +0200 Subject: [PATCH 2/3] v1.2.7 --- src/spid_sp_test/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spid_sp_test/__init__.py b/src/spid_sp_test/__init__.py index 707d61e..cee1e25 100644 --- a/src/spid_sp_test/__init__.py +++ b/src/spid_sp_test/__init__.py @@ -6,7 +6,7 @@ BASE_DIR = Path(__file__).resolve().parent -__version__ = "1.2.6" +__version__ = "1.2.7" __name__ = "spid_sp_test" logger = logging.getLogger(__name__) From eb26dbfe4170451e647799a369ddb59fc763cab2 Mon Sep 17 00:00:00 2001 From: Giuseppe De Marco Date: Tue, 13 Sep 2022 00:43:09 +0200 Subject: [PATCH 3/3] chore: CI update with pip --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 929797d..d38ee93 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -31,7 +31,7 @@ jobs: python -m pip install --upgrade pip if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi - python setup.py install + pip install . - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names