-
Notifications
You must be signed in to change notification settings - Fork 12
Deploy release v0.23.3 #542
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps the development-dependencies group with 9 updates: | Package | From | To | | --- | --- | --- | | [black](https://github.com/psf/black) | `23.3.0` | `23.7.0` | | [coverage](https://github.com/nedbat/coveragepy) | `7.2.7` | `7.3.0` | | [flake8](https://github.com/pycqa/flake8) | `6.0.0` | `6.1.0` | | [mypy](https://github.com/python/mypy) | `1.2.0` | `1.5.1` | | [tox](https://github.com/tox-dev/tox) | `4.6.4` | `4.8.0` | | [twine](https://github.com/pypa/twine) | `3.1.1` | `4.0.2` | | [types-jsonschema](https://github.com/python/typeshed) | `4.17.0.6` | `4.17.0.10` | | [types-pytz](https://github.com/python/typeshed) | `2023.3.0.0` | `2023.3.0.1` | | [wheel](https://github.com/pypa/wheel) | `0.41.0` | `0.41.2` | Updates `black` from 23.3.0 to 23.7.0 - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@23.3.0...23.7.0) Updates `coverage` from 7.2.7 to 7.3.0 - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](coveragepy/coveragepy@7.2.7...7.3.0) Updates `flake8` from 6.0.0 to 6.1.0 - [Commits](PyCQA/flake8@6.0.0...6.1.0) Updates `mypy` from 1.2.0 to 1.5.1 - [Commits](python/mypy@v1.2.0...v1.5.1) Updates `tox` from 4.6.4 to 4.8.0 - [Release notes](https://github.com/tox-dev/tox/releases) - [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst) - [Commits](tox-dev/tox@4.6.4...4.8.0) Updates `twine` from 3.1.1 to 4.0.2 - [Release notes](https://github.com/pypa/twine/releases) - [Changelog](https://github.com/pypa/twine/blob/main/docs/changelog.rst) - [Commits](pypa/twine@3.1.1...4.0.2) Updates `types-jsonschema` from 4.17.0.6 to 4.17.0.10 - [Commits](https://github.com/python/typeshed/commits) Updates `types-pytz` from 2023.3.0.0 to 2023.3.0.1 - [Commits](https://github.com/python/typeshed/commits) Updates `wheel` from 0.41.0 to 0.41.2 - [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst) - [Commits](pypa/wheel@0.41.0...0.41.2) --- updated-dependencies: - dependency-name: black dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: coverage dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: flake8 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: mypy dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: tox dependency-type: direct:development update-type: version-update:semver-minor dependency-group: development-dependencies - dependency-name: twine dependency-type: direct:development update-type: version-update:semver-major dependency-group: development-dependencies - dependency-name: types-jsonschema dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: types-pytz dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies - dependency-name: wheel dependency-type: direct:development update-type: version-update:semver-patch dependency-group: development-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
Fix the following error: ```text E721 do not compare types, for exact checks use `is` / `is not`, for instance checks use `isinstance()` ```
- [Software Repository](https://pypi.org/project/typing-extensions/4.7.1/) - [Release notes](https://github.com/python/typing_extensions/releases/tag/4.7.1) - [Changelog](https://github.com/python/typing_extensions/blob/4.7.1/CHANGELOG.md#release-471-july-2-2023) - [Commits](python/typing_extensions@4.3.0...4.7.1)
…dencies-c71c7ea164 chore: Bump the development-dependencies group with 9 updates
chore(deps): Update `typing-extensions` from 4.3.0 to 4.7.1
Add specific EditorConfig files for the following directories: - `cl_sii/data/ref/factura_electronica/schemas-xml/` - `tests/test_data/`
Fix errors reported by EditorConfig-Checker
This project currently uses a “flat layout”. This commit changes the project structure to a “src layout”. > The “flat layout” refers to organising a project’s files in a folder > or repository, such that the various configuration files and import > packages are all in the top-level directory. > The “src layout” deviates from the flat layout by moving the code that > is intended to be importable (i.e. `import awesome_package`, also > known as import packages) into a subdirectory. This subdirectory is > typically named `src/`, hence “src layout”. Two advantages of the src layout are: > - It helps prevent accidental usage of the in-development copy of the > code. > - The src layout helps enforce that an editable installation is only > able to import files that were meant to be importable. Related documentation: - [Src Layout vs Flat Layout ← Python Packaging User Guide](https://packaging.python.org/en/latest/discussions/src-layout-vs-flat-layout/) - [Package Discovery and Namespace Packages ← Setuptools documentation](https://setuptools.pypa.io/en/stable/userguide/package_discovery.html#automatic-discovery)
- Update Python-related files: - Python Setuptools configuration (`setup.py`). - Python Source distribution Manifest (`MANIFEST.in`). - Coverage.py configuration. - Mypy configuration. - Python code comments. - Update other files: - Make tasks. - Git Ignore. - Bumpversion configuration. - DeepSource configuration.
…-src-layout Change Python project structure from Flat layout to Src layout
Add Codecov repository upload token; update Codecov status badge
- [Software Repository](https://pypi.org/project/pydantic/2.3.0/) - [Release notes](https://github.com/pydantic/pydantic/releases/tag/v2.3.0) - [Changelog](https://github.com/pydantic/pydantic/blob/v2.3.0/HISTORY.md#v230-2023-08-23) - [Commits](pydantic/pydantic@v1.10.12...v2.3.0)
This update switches to `pydantic==2.3.0` but retains the code from the previous version. Subsequent commits will introduce changes to utilize the features from version 2. Ref: https://app.shortcut.com/cordada/story/768/update-lib-cl-sii-python
…ib-cl-sii-python Update pydantic from 1.10.12 to 2.3.0
Release v0.23.3
|
SonarCloud Quality Gate failed.
|
jtrobles-cdd
approved these changes
Sep 14, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.










Ref: #541