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

feat: Allow multi-file edits #83

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open

Commits on Jun 14, 2024

  1. feat: Allow multi-file edits

    kgilpin committed Jun 14, 2024
    Configuration menu
    Copy the full SHA
    06ae83a View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2024

  1. feat: Add navie instance sets

    I've verified that the sets are split into 4 roughly even groups.
    
    navie-1.txt is the same as devin-all.txt
    navie-2, navie-3, navie-4 are roughly equal groupings of the remaining instances.
    
    The union of the four sets contains 2294 members, which is the size of the SWE-Bench dataset.
    
    irb(main):4625:0> navie_1 = Set.new(File.read("navie-1.txt").split("\n")); nil
    => nil
    irb(main):4626:0> navie_2 = Set.new(File.read("navie-2.txt").split("\n")); nil
    => nil
    irb(main):4627:0> navie_3 = Set.new(File.read("navie-3.txt").split("\n")); nil
    => nil
    irb(main):4628:0> navie_4 = Set.new(File.read("navie-4.txt").split("\n")); nil
    => nil
    irb(main):4630:0> (navie_1 + navie_2 + navie_3 + navie_4).length
    => 2294
    
    The instances in navie 2, 3, and 4 are sorted.
    kgilpin committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    7255e9f View commit details
    Browse the repository at this point in the history
  2. fix: pytest not found in seaborn

    dustinbyrne authored and kgilpin committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    019bb6d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f8db91e View commit details
    Browse the repository at this point in the history
  4. feat: Remove sympy__sympy-12472 from navie-4

    It's causing a huge stack trace and failure of the solve instance.
    kgilpin committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    0efad03 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    60d646f View commit details
    Browse the repository at this point in the history
  6. fix: Only omit specific files when generating patches

    Including only files originally changed risked throwing away
    posttest fixes. Instead just filter out tox.ini and setup.py.
    dividedmind authored and kgilpin committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    f686983 View commit details
    Browse the repository at this point in the history
  7. feat: Remove sphinx from node-7 rerun instance set

    Sphinx will be rerun separately via full-sphinx instance set
    kgilpin committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    f59f46d View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    4034d9d View commit details
    Browse the repository at this point in the history