Skip to content
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

Replace ruamel.yaml with PyYAML and Cleanup Imports #73

Merged
merged 5 commits into from
Jul 21, 2023

Commits on Jul 20, 2023

  1. Upgrade versionImprove code readability and update dependencies

    This commit makes several improvements with the goal of enhancing code maintainability. Several import statements have been reorganized for consistency and improved readability. ruamel.yaml package usage has been replaced with yaml PyYAML parsing. This decision was made due to its wider usage, more frequent updates, and better integration. This change also necessitates updates in requirement.txt and setup.py. Unit and UAT tests have been updated to reflect these changes. Mkdoxy version has been bumped from 1.1.5 to 1.1.6 to indicate these changes.
    Altay Sansal committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    919d326 View commit details
    Browse the repository at this point in the history
  2. Remove ruamel.yaml from dev dependencies

    The library 'ruamel.yaml' was removed from the development dependencies in setup.py. This was done because it's no longer necessary for the current version of the application. The application's functionality should remain unaffected.
    Altay Sansal committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    4ed4b55 View commit details
    Browse the repository at this point in the history
  3. update changelog

    Altay Sansal committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    ede67b7 View commit details
    Browse the repository at this point in the history
  4. Replace m.group(x) with m[x]`` for re.Match objects

    Altay Sansal committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    a98eb70 View commit details
    Browse the repository at this point in the history
  5. yaml.safe_dump instead of yaml.dump

    Altay Sansal committed Jul 20, 2023
    Configuration menu
    Copy the full SHA
    e787a38 View commit details
    Browse the repository at this point in the history