Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mull-project/FileCheck.py
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.23
Choose a base ref
...
head repository: mull-project/FileCheck.py
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.24
Choose a head ref
  • 15 commits
  • 13 files changed
  • 2 contributors

Commits on Nov 21, 2023

  1. Pass count as keyword argument to re.sub()

    This fixes two test failures under Python 3.13:
    
    ```
    Failed Tests (2):
      FileCheck.py integration tests :: tests/extra_features/pseudo_numeric_variables/01_line_variable_once/test.itest
      FileCheck.py integration tests :: tests/extra_features/pseudo_numeric_variables/02_line_variable_twice/test.itest
    ```
    
    Both are failing due to:
    
    ```
    filecheck/filecheck.py:372: DeprecationWarning: 'count' is passed as positional argument
    ```
    
    Passing `count` as positional argument to `re.sub()` has been deprecated
    in Python 3.13: https://docs.python.org/3.13/whatsnew/3.13.html#id9
    and produces a `DeprecationWarning` exception.
    rathann committed Nov 21, 2023
    Configuration menu
    Copy the full SHA
    2864540 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2023

  1. Configuration menu
    Copy the full SHA
    8e2ff43 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #195 from mull-project/stanislaw/replace_poetry

     pyproject.toml: remove Poetry
    stanislaw authored Nov 26, 2023
    Configuration menu
    Copy the full SHA
    63c73dd View commit details
    Browse the repository at this point in the history
  3. CI: add Python 3.12

    stanislaw committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    a8cf735 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #196 from mull-project/stanislaw/replace_poetry

     CI: add Python 3.12
    stanislaw authored Nov 26, 2023
    Configuration menu
    Copy the full SHA
    4298341 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    83fa66d View commit details
    Browse the repository at this point in the history
  6. Merge pull request #197 from mull-project/stanislaw/python_313

    Pass count as keyword argument to re.sub()
    stanislaw authored Nov 26, 2023
    Configuration menu
    Copy the full SHA
    20bf178 View commit details
    Browse the repository at this point in the history
  7. CI: Add 3.13-dev

    stanislaw committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    53a2557 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #198 from mull-project/stanislaw/python_313

     CI: Add 3.13-dev
    stanislaw authored Nov 26, 2023
    Configuration menu
    Copy the full SHA
    4ccdf13 View commit details
    Browse the repository at this point in the history
  9. tasks: release task

    stanislaw committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    432a8b5 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #199 from mull-project/stanislaw/python_313

    tasks: release task
    stanislaw authored Nov 26, 2023
    Configuration menu
    Copy the full SHA
    1600ab5 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    d856a61 View commit details
    Browse the repository at this point in the history
  12. Remove .bumpversion.cfg

    stanislaw committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    5466bf6 View commit details
    Browse the repository at this point in the history
  13. Bump version to 0.0.24

    stanislaw committed Nov 26, 2023
    Configuration menu
    Copy the full SHA
    145c3ea View commit details
    Browse the repository at this point in the history
  14. Merge pull request #200 from mull-project/stanislaw/python_313

     Bump version to 0.0.24
    stanislaw authored Nov 26, 2023
    Configuration menu
    Copy the full SHA
    bbef9db View commit details
    Browse the repository at this point in the history
Loading