Skip to content

Commits

Commits on Oct 10, 2023

  1. Copy the full SHA
    46462ff View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. Copy the full SHA
    7b2764e View commit details
    View at this point in the history
    Browse the repository at this point in the history
  3. Fix CIFuzz build (#110576)

    sobolevn committed Oct 10, 2023
    Copy the full SHA
    def7ea5 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. gh-107652: Set up CIFuzz to run fuzz targets continuously (#107653)

    Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
    illia-v and hugovk committed Oct 9, 2023
    Copy the full SHA
    ea7b53f View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 29, 2023

  1. gh-108716: make regen-global-objects no longer builds deepfreeze.c (#…

    …110078)
    
    Remove more references to now unused Python/deepfreeze/deepfreeze.c.
    vstinner committed Sep 29, 2023
    Copy the full SHA
    e260087 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 28, 2023

  1. gh-109991: Update GitHub CI workflows to use OpenSSL 3.0.11 and multi…

    …ssltests to use 1.1.1w, 3.0.11, and 3.1.3. (gh-110002)
    ned-deily committed Sep 28, 2023
    Copy the full SHA
    c88037d View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 26, 2023

  1. gh-109566, regrtest: Add --fast-ci and --slow-ci options (#109570)

    * Add --fast-ci and --slow-ci options to libregrtest:
    
      * --fast-ci uses a default timeout of 10 minutes and "-u all,-cpu"
        (skip slowest tests).
      * --slow-ci uses a default timeout of 20 minues and "-u all" (run
        all tests).
    
    * regrtest header now lists test resources.
    * Makefile changes:
    
      * "make test", "make hostrunnertest" and "make coverage-report" now
        use --fast-ci option and TESTTIMEOUT variable.
      * "make buildbottest" now uses "--slow-ci". Remove options which
        became redundant with "--slow-ci".
      * "make testall" and "make testuniversal" now use --slow-ci option
        and TESTTIMEOUT variable.
      * "make testall" now uses "find -exec rm ..." instead of
        "find ... -print|xargs rm ...", same as "make clean".
    
    * GitHub Actions workflow:
    
      * Ubuntu and Address Sanitizer jobs now use "make test". Remove
        options which became redundant with "--fast-ci".
      * Windows jobs now use --fast-ci option.
      * Use -j0 to detect the number of CPUs.
    
    * Set Makefile TESTTIMEOUT default to an empty string, since
      --slow-ci and --fast-ci use different default timeout. It's now
      accepted to pass "--timeout=" to regrtest: treated as not timeout.
    * Tools/scripts/run_tests.py now uses --fast-ci option.
    * Tools/buildbot/test.bat now uses --slow-ci option. Remove
      --timeout=1200 option, redundant with --slow-ci.
    vstinner committed Sep 26, 2023
    Copy the full SHA
    859618c View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 21, 2023

  1. Copy the full SHA
    712cb17 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 20, 2023

  1. 1
    Copy the full SHA
    14cdefa View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 19, 2023

  1. Copy the full SHA
    f65497f View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. Update workflow permissions in require-pr-label Action (#109342)

    Change the permission from `read` to `write`.
    Mariatta committed Sep 12, 2023
    Copy the full SHA
    44c8699 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. gh-60283: Check for redefined test names in CI (#109161)

    Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
    Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
    3 people committed Sep 12, 2023
    Copy the full SHA
    3cb9a8e View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 8, 2023

  1. Copy the full SHA
    00cf626 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 5, 2023

  1. Copy the full SHA
    24e9892 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Sep 4, 2023

  1. Copy the full SHA
    572678e View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. Copy the full SHA
    6ead5bd View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. gh-108455: Run mypy on Tools/peg_generator (#108456)

    Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
    sobolevn and hugovk committed Aug 28, 2023
    Copy the full SHA
    cf7ba83 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Aug 24, 2023

  1. Copy the full SHA
    be800f4 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Aug 19, 2023

  1. gh-101100: Only show GitHub check annotations on changed doc paragrap…

    …hs (#108065)
    
    * Only show GitHub check annotations on changed doc paragraphs
    * Improve check-warnings script arg parsing following Hugo's suggestions
    * Factor filtering warnings by modified diffs into helper function
    * Build docs on unmerged branch so warning lines match & avoid deep clone
    
    ---------
    
    Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
    Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
    3 people committed Aug 19, 2023
    Copy the full SHA
    eb953d6 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Aug 18, 2023

  1. gh-107565: Update multissltests and GitHub CI workflows to use OpenSS…

    …L 1.1.1v, 3.0.10, and 3.1.2. (GH-107896)
    ned-deily committed Aug 18, 2023
    Copy the full SHA
    ed25f09 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. gh-104504: Run mypy on cases_generator in CI (and blacken the code) (g…

    …h-108090)
    
    
    Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
    corona10 and AlexWaygood committed Aug 18, 2023
    Copy the full SHA
    28cab71 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Aug 17, 2023

  1. Add workflow for automatic issue headers (#108054)

    We don't get the "Bug report" and "Feature or enhancement" titles anymore, with the new issue forms. This brings them back!
    AA-Turner committed Aug 17, 2023
    Copy the full SHA
    4cb0818 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Aug 16, 2023

  1. Improve the feature-proposal issue form (#108033)

    Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
    Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
    3 people committed Aug 16, 2023
    Copy the full SHA
    8891a88 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. Copy the full SHA
    0d7f5d3 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Aug 14, 2023

  1. Convert the GitHub issue templates into GitHub issue forms (#107920)

    Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
    Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
    Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
    4 people committed Aug 14, 2023
    Copy the full SHA
    8d3cb1b View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Aug 1, 2023

  1. Copy the full SHA
    052a0d1 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 29, 2023

  1. Copy the full SHA
    2e9ddb9 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. Improve the GitHub issue templates (#107150)

    Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
    AlexWaygood and ezio-melotti committed Jul 29, 2023
    Copy the full SHA
    d0dcd27 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 22, 2023

  1. Copy the full SHA
    806d7c9 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. Copy the full SHA
    1654916 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 14, 2023

  1. gh-106752: Move zipfile._path into its own package (#106753)

    * gh-106752: Move zipfile._path into its own package so it may have supplementary behavior.
    
    * Add blurb
    jaraco committed Jul 14, 2023
    Copy the full SHA
    03185f0 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 6, 2023

  1. Introduce a gate/check GHA job (#97533)

    Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
    webknjaz and hugovk committed Jul 6, 2023
    Copy the full SHA
    e7cd557 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 4, 2023

  1. Add some codeowners for Tools/clinic/ (#106430)

    Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
    AlexWaygood and erlend-aasland committed Jul 4, 2023
    Copy the full SHA
    eeb5c63 View commit details
    View at this point in the history
    Browse the repository at this point in the history
  2. Copy the full SHA
    c5dacc8 View commit details
    View at this point in the history
    Browse the repository at this point in the history

Commits on Jul 2, 2023

  1. gh-106217: Truncate the issue body size of `new-bugs-announce-notifie…

    …r` (#106329)
    
    
    Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
    sobolevn and hugovk committed Jul 2, 2023
    Copy the full SHA
    5950e7d View commit details
    View at this point in the history
    Browse the repository at this point in the history
Older