├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── question.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── deploy-docs.yml │ └── pytest.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── codecov.yml ├── docs ├── README.md ├── api │ ├── harness.md │ ├── inference.md │ └── versioning.md ├── assets │ ├── build_deploy.sh │ ├── collection.md │ ├── evaluation.md │ ├── figures │ │ ├── collection.png │ │ ├── evaluation.png │ │ ├── swellama_banner.svg │ │ ├── swellama_banner_nobg.svg │ │ ├── teaser.png │ │ └── validation.png │ ├── icons │ │ ├── mini-swe-agent-banner.svg │ │ ├── sb-cli-button.svg │ │ ├── swe-agent-button.svg │ │ ├── swe-rex-button.svg │ │ └── swe-smith-button.svg │ ├── mini_logo.svg │ ├── mini_logo_text_below.svg │ ├── sbcli_logo_text_below.svg │ ├── sweagent_logo_text_below.svg │ ├── swebench_logo_text_below.svg │ ├── swellama.svg │ ├── swerex_logo_text_below.svg │ └── swesmith_logo_text_below.svg ├── blog │ ├── .authors.yml │ ├── index.md │ └── posts │ │ ├── 250808-gpt5.md │ │ ├── 250808-gpt5 │ │ ├── default.py │ │ ├── gpt5_bar.svg │ │ ├── gpt5_cost.svg │ │ ├── gpt5_cost_cut.svg │ │ ├── gpt5_steps.svg │ │ ├── gpt5_steps_cut.svg │ │ ├── mini_control_flow.svg │ │ └── swebench.yaml │ │ ├── 250820-mini-roulette.md │ │ └── 250820-mini-roulette │ │ ├── roulette_bar_v4.svg │ │ ├── roulette_cost.svg │ │ └── roulette_steps.svg ├── css │ ├── custom.css │ └── mkdocstrings.css ├── faq.md ├── guides │ ├── create_rag_datasets.md │ ├── datasets.md │ ├── docker_setup.md │ ├── evaluation.md │ └── quickstart.md ├── index.md ├── installation.md ├── other_languages │ ├── README_CN.md │ ├── README_JP.md │ └── README_TW.md └── reference │ ├── harness.md │ ├── inference.md │ └── versioning.md ├── mkdocs.yml ├── pyproject.toml ├── swebench ├── __init__.py ├── collect │ ├── README.md │ ├── __init__.py │ ├── build_dataset.py │ ├── build_dataset_ft.py │ ├── cleanup │ │ ├── delete_gh_workflows.py │ │ └── remove_envs.py │ ├── get_tasks_pipeline.py │ ├── get_top_pypi.py │ ├── make_lite │ │ ├── README.md │ │ ├── criteria.py │ │ └── make_lite.py │ ├── make_repo │ │ ├── call_make_repo.py │ │ └── make_repo.sh │ ├── print_pulls.py │ ├── run_build_dataset_ft.sh │ ├── run_get_tasks_pipeline.sh │ └── utils.py ├── harness │ ├── __init__.py │ ├── constants │ │ ├── __init__.py │ │ ├── c.py │ │ ├── go.py │ │ ├── java.py │ │ ├── javascript.py │ │ ├── php.py │ │ ├── python.py │ │ ├── ruby.py │ │ └── rust.py │ ├── docker_build.py │ ├── docker_utils.py │ ├── dockerfiles │ │ ├── __init__.py │ │ ├── c.py │ │ ├── go.py │ │ ├── java.py │ │ ├── javascript.py │ │ ├── php.py │ │ ├── python.py │ │ ├── ruby.py │ │ └── rust.py │ ├── grading.py │ ├── log_parsers │ │ ├── __init__.py │ │ ├── c.py │ │ ├── go.py │ │ ├── java.py │ │ ├── javascript.py │ │ ├── php.py │ │ ├── python.py │ │ ├── ruby.py │ │ └── rust.py │ ├── modal_eval │ │ ├── __init__.py │ │ ├── run_evaluation_modal.py │ │ ├── run_evaluation_modal_entrypoint.py │ │ └── utils.py │ ├── prepare_images.py │ ├── remove_containers.py │ ├── reporting.py │ ├── run_evaluation.py │ ├── test_spec │ │ ├── __init__.py │ │ ├── create_scripts.py │ │ ├── javascript.py │ │ ├── python.py │ │ ├── test_spec.py │ │ └── utils.py │ └── utils.py ├── inference │ ├── __init__.py │ ├── codellama_device_maps.json │ ├── llamao │ │ ├── __init__.py │ │ ├── distributed_attention.py │ │ └── modeling_flash_llama.py │ ├── make_datasets │ │ ├── __init__.py │ │ ├── bm25_retrieval.py │ │ ├── create_instance.py │ │ ├── create_text_dataset.py │ │ ├── eval_retrieval.py │ │ ├── tokenize_dataset.py │ │ └── utils.py │ ├── run_api.py │ ├── run_live.py │ └── run_llama.py ├── resources │ ├── __init__.py │ └── swebench-og │ │ ├── astropy__astropy │ │ ├── 7166 │ │ │ └── environment.yml │ │ ├── 7336 │ │ │ └── environment.yml │ │ ├── 7606 │ │ │ └── environment.yml │ │ ├── 7671 │ │ │ └── environment.yml │ │ ├── 8707 │ │ │ └── environment.yml │ │ ├── 8872 │ │ │ └── environment.yml │ │ ├── 12907 │ │ │ └── environment.yml │ │ ├── 13033 │ │ │ └── environment.yml │ │ ├── 13236 │ │ │ └── environment.yml │ │ ├── 13398 │ │ │ └── environment.yml │ │ ├── 13453 │ │ │ └── environment.yml │ │ ├── 13579 │ │ │ └── environment.yml │ │ ├── 13977 │ │ │ └── environment.yml │ │ ├── 14096 │ │ │ └── environment.yml │ │ ├── 14182 │ │ │ └── environment.yml │ │ ├── 14309 │ │ │ └── environment.yml │ │ ├── 14365 │ │ │ └── environment.yml │ │ ├── 14369 │ │ │ └── environment.yml │ │ ├── 14508 │ │ │ └── environment.yml │ │ ├── 14539 │ │ │ └── environment.yml │ │ ├── 14598 │ │ │ └── environment.yml │ │ └── 14995 │ │ │ └── environment.yml │ │ ├── django__django │ │ ├── 7530 │ │ │ └── environment.yml │ │ ├── 9296 │ │ │ └── environment.yml │ │ ├── 10097 │ │ │ └── environment.yml │ │ ├── 10554 │ │ │ └── environment.yml │ │ ├── 10880 │ │ │ └── environment.yml │ │ ├── 10914 │ │ │ └── environment.yml │ │ ├── 10973 │ │ │ └── environment.yml │ │ ├── 10999 │ │ │ └── environment.yml │ │ ├── 11066 │ │ │ └── environment.yml │ │ ├── 11087 │ │ │ └── environment.yml │ │ ├── 11095 │ │ │ └── environment.yml │ │ ├── 11099 │ │ │ └── environment.yml │ │ ├── 11119 │ │ │ └── environment.yml │ │ ├── 11133 │ │ │ └── environment.yml │ │ ├── 11138 │ │ │ └── environment.yml │ │ ├── 11141 │ │ │ └── environment.yml │ │ ├── 11149 │ │ │ └── environment.yml │ │ ├── 11163 │ │ │ └── environment.yml │ │ ├── 11179 │ │ │ └── environment.yml │ │ ├── 11206 │ │ │ └── environment.yml │ │ ├── 11211 │ │ │ └── environment.yml │ │ ├── 11239 │ │ │ └── environment.yml │ │ ├── 11265 │ │ │ └── environment.yml │ │ ├── 11276 │ │ │ └── environment.yml │ │ ├── 11292 │ │ │ └── environment.yml │ │ ├── 11299 │ │ │ └── environment.yml │ │ ├── 11333 │ │ │ └── environment.yml │ │ ├── 11400 │ │ │ └── environment.yml │ │ ├── 11433 │ │ │ └── environment.yml │ │ ├── 11451 │ │ │ └── environment.yml │ │ ├── 11477 │ │ │ └── environment.yml │ │ ├── 11490 │ │ │ └── environment.yml │ │ ├── 11532 │ │ │ └── environment.yml │ │ ├── 11551 │ │ │ └── environment.yml │ │ ├── 11555 │ │ │ └── environment.yml │ │ ├── 11603 │ │ │ └── environment.yml │ │ ├── 11728 │ │ │ └── environment.yml │ │ ├── 11734 │ │ │ └── environment.yml │ │ ├── 11740 │ │ │ └── environment.yml │ │ ├── 11749 │ │ │ └── environment.yml │ │ ├── 11790 │ │ │ └── environment.yml │ │ ├── 11815 │ │ │ └── environment.yml │ │ ├── 11820 │ │ │ └── environment.yml │ │ ├── 11848 │ │ │ └── environment.yml │ │ ├── 11880 │ │ │ └── environment.yml │ │ ├── 11885 │ │ │ └── environment.yml │ │ ├── 11951 │ │ │ └── environment.yml │ │ ├── 11964 │ │ │ └── environment.yml │ │ ├── 11999 │ │ │ └── environment.yml │ │ ├── 12039 │ │ │ └── environment.yml │ │ ├── 12050 │ │ │ └── environment.yml │ │ ├── 12125 │ │ │ └── environment.yml │ │ ├── 12143 │ │ │ └── environment.yml │ │ ├── 12155 │ │ │ └── environment.yml │ │ ├── 12193 │ │ │ └── environment.yml │ │ ├── 12209 │ │ │ └── environment.yml │ │ ├── 12262 │ │ │ └── environment.yml │ │ ├── 12273 │ │ │ └── environment.yml │ │ ├── 12276 │ │ │ └── environment.yml │ │ ├── 12304 │ │ │ └── environment.yml │ │ ├── 12308 │ │ │ └── environment.yml │ │ ├── 12325 │ │ │ └── environment.yml │ │ ├── 12406 │ │ │ └── environment.yml │ │ ├── 12419 │ │ │ └── environment.yml │ │ ├── 12663 │ │ │ └── environment.yml │ │ ├── 12708 │ │ │ └── environment.yml │ │ ├── 12713 │ │ │ └── environment.yml │ │ ├── 12741 │ │ │ └── environment.yml │ │ ├── 12754 │ │ │ └── environment.yml │ │ ├── 12774 │ │ │ └── environment.yml │ │ ├── 12858 │ │ │ └── environment.yml │ │ ├── 12965 │ │ │ └── environment.yml │ │ ├── 13012 │ │ │ └── environment.yml │ │ ├── 13023 │ │ │ └── environment.yml │ │ ├── 13028 │ │ │ └── environment.yml │ │ ├── 13033 │ │ │ └── environment.yml │ │ ├── 13089 │ │ │ └── environment.yml │ │ ├── 13109 │ │ │ └── environment.yml │ │ ├── 13112 │ │ │ └── environment.yml │ │ ├── 13121 │ │ │ └── environment.yml │ │ ├── 13128 │ │ │ └── environment.yml │ │ ├── 13158 │ │ │ └── environment.yml │ │ ├── 13195 │ │ │ └── environment.yml │ │ ├── 13212 │ │ │ └── environment.yml │ │ ├── 13279 │ │ │ └── environment.yml │ │ ├── 13297 │ │ │ └── environment.yml │ │ ├── 13315 │ │ │ └── environment.yml │ │ ├── 13343 │ │ │ └── environment.yml │ │ ├── 13344 │ │ │ └── environment.yml │ │ ├── 13346 │ │ │ └── environment.yml │ │ ├── 13363 │ │ │ └── environment.yml │ │ ├── 13401 │ │ │ └── environment.yml │ │ ├── 13406 │ │ │ └── environment.yml │ │ ├── 13410 │ │ │ └── environment.yml │ │ ├── 13417 │ │ │ └── environment.yml │ │ ├── 13449 │ │ │ └── environment.yml │ │ ├── 13512 │ │ │ └── environment.yml │ │ ├── 13513 │ │ │ └── environment.yml │ │ ├── 13516 │ │ │ └── environment.yml │ │ ├── 13551 │ │ │ └── environment.yml │ │ ├── 13568 │ │ │ └── environment.yml │ │ ├── 13569 │ │ │ └── environment.yml │ │ ├── 13590 │ │ │ └── environment.yml │ │ ├── 13658 │ │ │ └── environment.yml │ │ ├── 13670 │ │ │ └── environment.yml │ │ ├── 13741 │ │ │ └── environment.yml │ │ ├── 13786 │ │ │ └── environment.yml │ │ ├── 13794 │ │ │ └── environment.yml │ │ ├── 13807 │ │ │ └── environment.yml │ │ ├── 13809 │ │ │ └── environment.yml │ │ ├── 13810 │ │ │ └── environment.yml │ │ ├── 13820 │ │ │ └── environment.yml │ │ ├── 13821 │ │ │ └── environment.yml │ │ ├── 13837 │ │ │ └── environment.yml │ │ ├── 13925 │ │ │ └── environment.yml │ │ ├── 13933 │ │ │ └── environment.yml │ │ ├── 13964 │ │ │ └── environment.yml │ │ ├── 14007 │ │ │ └── environment.yml │ │ ├── 14011 │ │ │ └── environment.yml │ │ ├── 14017 │ │ │ └── environment.yml │ │ ├── 14034 │ │ │ └── environment.yml │ │ ├── 14053 │ │ │ └── environment.yml │ │ ├── 14089 │ │ │ └── environment.yml │ │ ├── 14122 │ │ │ └── environment.yml │ │ ├── 14140 │ │ │ └── environment.yml │ │ ├── 14155 │ │ │ └── environment.yml │ │ ├── 14170 │ │ │ └── environment.yml │ │ ├── 14238 │ │ │ └── environment.yml │ │ ├── 14311 │ │ │ └── environment.yml │ │ ├── 14315 │ │ │ └── environment.yml │ │ ├── 14349 │ │ │ └── environment.yml │ │ ├── 14351 │ │ │ └── environment.yml │ │ ├── 14373 │ │ │ └── environment.yml │ │ ├── 14376 │ │ │ └── environment.yml │ │ ├── 14404 │ │ │ └── environment.yml │ │ ├── 14434 │ │ │ └── environment.yml │ │ ├── 14493 │ │ │ └── environment.yml │ │ ├── 14500 │ │ │ └── environment.yml │ │ ├── 14534 │ │ │ └── environment.yml │ │ ├── 14539 │ │ │ └── environment.yml │ │ ├── 14559 │ │ │ └── environment.yml │ │ ├── 14580 │ │ │ └── environment.yml │ │ ├── 14608 │ │ │ └── environment.yml │ │ ├── 14631 │ │ │ └── environment.yml │ │ ├── 14672 │ │ │ └── environment.yml │ │ ├── 14725 │ │ │ └── environment.yml │ │ ├── 14752 │ │ │ └── environment.yml │ │ ├── 14765 │ │ │ └── environment.yml │ │ ├── 14771 │ │ │ └── environment.yml │ │ ├── 14787 │ │ │ └── environment.yml │ │ ├── 14792 │ │ │ └── environment.yml │ │ ├── 14855 │ │ │ └── environment.yml │ │ ├── 14915 │ │ │ └── environment.yml │ │ ├── 14999 │ │ │ └── environment.yml │ │ ├── 15022 │ │ │ └── environment.yml │ │ ├── 15037 │ │ │ └── environment.yml │ │ ├── 15098 │ │ │ └── environment.yml │ │ ├── 15103 │ │ │ └── environment.yml │ │ ├── 15104 │ │ │ └── environment.yml │ │ ├── 15127 │ │ │ └── environment.yml │ │ ├── 15128 │ │ │ └── environment.yml │ │ ├── 15161 │ │ │ └── environment.yml │ │ ├── 15252 │ │ │ └── environment.yml │ │ ├── 15268 │ │ │ └── environment.yml │ │ ├── 15277 │ │ │ └── environment.yml │ │ ├── 15278 │ │ │ └── environment.yml │ │ ├── 15280 │ │ │ └── environment.yml │ │ ├── 15315 │ │ │ └── environment.yml │ │ ├── 15368 │ │ │ └── environment.yml │ │ ├── 15375 │ │ │ └── environment.yml │ │ ├── 15380 │ │ │ └── environment.yml │ │ ├── 15382 │ │ │ └── environment.yml │ │ ├── 15467 │ │ │ └── environment.yml │ │ ├── 15499 │ │ │ └── environment.yml │ │ ├── 15503 │ │ │ └── environment.yml │ │ ├── 15525 │ │ │ └── environment.yml │ │ ├── 15554 │ │ │ └── environment.yml │ │ ├── 15561 │ │ │ └── environment.yml │ │ ├── 15563 │ │ │ └── environment.yml │ │ ├── 15569 │ │ │ └── environment.yml │ │ ├── 15572 │ │ │ └── environment.yml │ │ ├── 15629 │ │ │ └── environment.yml │ │ ├── 15695 │ │ │ └── environment.yml │ │ ├── 15731 │ │ │ └── environment.yml │ │ ├── 15732 │ │ │ └── environment.yml │ │ ├── 15741 │ │ │ └── environment.yml │ │ ├── 15814 │ │ │ └── environment.yml │ │ ├── 15851 │ │ │ └── environment.yml │ │ ├── 15863 │ │ │ └── environment.yml │ │ ├── 15916 │ │ │ └── environment.yml │ │ ├── 15930 │ │ │ └── environment.yml │ │ ├── 15957 │ │ │ └── environment.yml │ │ ├── 15973 │ │ │ └── environment.yml │ │ ├── 15987 │ │ │ └── environment.yml │ │ ├── 16032 │ │ │ └── environment.yml │ │ ├── 16082 │ │ │ └── environment.yml │ │ ├── 16100 │ │ │ └── environment.yml │ │ ├── 16116 │ │ │ └── environment.yml │ │ ├── 16136 │ │ │ └── environment.yml │ │ ├── 16139 │ │ │ └── environment.yml │ │ ├── 16145 │ │ │ └── environment.yml │ │ ├── 16255 │ │ │ └── environment.yml │ │ ├── 16256 │ │ │ └── environment.yml │ │ ├── 16263 │ │ │ └── environment.yml │ │ ├── 16315 │ │ │ └── environment.yml │ │ ├── 16333 │ │ │ └── environment.yml │ │ ├── 16429 │ │ │ └── environment.yml │ │ ├── 16454 │ │ │ └── environment.yml │ │ ├── 16485 │ │ │ └── environment.yml │ │ ├── 16493 │ │ │ └── environment.yml │ │ ├── 16502 │ │ │ └── environment.yml │ │ ├── 16527 │ │ │ └── environment.yml │ │ ├── 16560 │ │ │ └── environment.yml │ │ ├── 16569 │ │ │ └── environment.yml │ │ ├── 16595 │ │ │ └── environment.yml │ │ ├── 16612 │ │ │ └── environment.yml │ │ ├── 16631 │ │ │ └── environment.yml │ │ ├── 16642 │ │ │ └── environment.yml │ │ ├── 16661 │ │ │ └── environment.yml │ │ ├── 16662 │ │ │ └── environment.yml │ │ ├── 16667 │ │ │ └── environment.yml │ │ ├── 16801 │ │ │ └── environment.yml │ │ ├── 16819 │ │ │ └── environment.yml │ │ ├── 16877 │ │ │ └── environment.yml │ │ ├── 16899 │ │ │ └── environment.yml │ │ ├── 16901 │ │ │ └── environment.yml │ │ ├── 16938 │ │ │ └── environment.yml │ │ ├── 16950 │ │ │ └── environment.yml │ │ ├── 17029 │ │ │ └── environment.yml │ │ ├── 17084 │ │ │ └── environment.yml │ │ └── 17087 │ │ │ └── environment.yml │ │ ├── matplotlib__matplotlib │ │ ├── 13989 │ │ │ └── environment.yml │ │ ├── 14623 │ │ │ └── environment.yml │ │ ├── 20488 │ │ │ └── environment.yml │ │ ├── 20676 │ │ │ └── environment.yml │ │ ├── 20826 │ │ │ └── environment.yml │ │ ├── 20859 │ │ │ └── environment.yml │ │ ├── 21568 │ │ │ └── environment.yml │ │ ├── 22719 │ │ │ └── environment.yml │ │ ├── 22865 │ │ │ └── environment.yml │ │ ├── 22871 │ │ │ └── environment.yml │ │ ├── 23299 │ │ │ └── environment.yml │ │ ├── 23314 │ │ │ └── environment.yml │ │ ├── 23412 │ │ │ └── environment.yml │ │ ├── 23476 │ │ │ └── environment.yml │ │ ├── 24026 │ │ │ └── environment.yml │ │ ├── 24149 │ │ │ └── environment.yml │ │ ├── 24177 │ │ │ └── environment.yml │ │ ├── 24570 │ │ │ └── environment.yml │ │ ├── 24627 │ │ │ └── environment.yml │ │ ├── 24637 │ │ │ └── environment.yml │ │ ├── 24870 │ │ │ └── environment.yml │ │ ├── 24970 │ │ │ └── environment.yml │ │ ├── 25122 │ │ │ └── environment.yml │ │ ├── 25287 │ │ │ └── environment.yml │ │ ├── 25311 │ │ │ └── environment.yml │ │ ├── 25332 │ │ │ └── environment.yml │ │ ├── 25479 │ │ │ └── environment.yml │ │ ├── 25775 │ │ │ └── environment.yml │ │ ├── 25960 │ │ │ └── environment.yml │ │ ├── 26113 │ │ │ └── environment.yml │ │ ├── 26208 │ │ │ └── environment.yml │ │ ├── 26291 │ │ │ └── environment.yml │ │ ├── 26342 │ │ │ └── environment.yml │ │ └── 26466 │ │ │ └── environment.yml │ │ ├── mwaskom__seaborn │ │ ├── 3069 │ │ │ └── environment.yml │ │ └── 3187 │ │ │ └── environment.yml │ │ ├── pallets__flask │ │ └── 5014 │ │ │ └── environment.yml │ │ ├── psf__requests │ │ ├── 1142 │ │ │ └── environment.yml │ │ ├── 1724 │ │ │ └── environment.yml │ │ ├── 1766 │ │ │ └── environment.yml │ │ ├── 1921 │ │ │ └── environment.yml │ │ ├── 2317 │ │ │ └── environment.yml │ │ ├── 2931 │ │ │ └── environment.yml │ │ ├── 5414 │ │ │ └── environment.yml │ │ └── 6028 │ │ │ └── environment.yml │ │ ├── pydata__xarray │ │ ├── 2905 │ │ │ └── environment.yml │ │ ├── 3095 │ │ │ └── environment.yml │ │ ├── 3151 │ │ │ └── environment.yml │ │ ├── 3305 │ │ │ └── environment.yml │ │ ├── 3677 │ │ │ └── environment.yml │ │ ├── 3993 │ │ │ └── environment.yml │ │ ├── 4075 │ │ │ └── environment.yml │ │ ├── 4094 │ │ │ └── environment.yml │ │ ├── 4356 │ │ │ └── environment.yml │ │ ├── 4629 │ │ │ └── environment.yml │ │ ├── 4687 │ │ │ └── environment.yml │ │ ├── 4695 │ │ │ └── environment.yml │ │ ├── 4966 │ │ │ └── environment.yml │ │ ├── 6461 │ │ │ └── environment.yml │ │ ├── 6599 │ │ │ └── environment.yml │ │ ├── 6721 │ │ │ └── environment.yml │ │ ├── 6744 │ │ │ └── environment.yml │ │ ├── 6938 │ │ │ └── environment.yml │ │ ├── 6992 │ │ │ └── environment.yml │ │ ├── 7229 │ │ │ └── environment.yml │ │ ├── 7233 │ │ │ └── environment.yml │ │ └── 7393 │ │ │ └── environment.yml │ │ ├── pylint-dev__pylint │ │ ├── 4551 │ │ │ └── environment.yml │ │ ├── 4604 │ │ │ └── environment.yml │ │ ├── 4661 │ │ │ └── environment.yml │ │ ├── 4970 │ │ │ └── environment.yml │ │ ├── 6386 │ │ │ └── environment.yml │ │ ├── 6528 │ │ │ └── environment.yml │ │ ├── 6903 │ │ │ └── environment.yml │ │ ├── 7080 │ │ │ └── environment.yml │ │ ├── 7277 │ │ │ └── environment.yml │ │ └── 8898 │ │ │ └── environment.yml │ │ ├── pytest-dev__pytest │ │ ├── 5262 │ │ │ └── environment.yml │ │ ├── 5631 │ │ │ └── environment.yml │ │ ├── 5787 │ │ │ └── environment.yml │ │ ├── 5809 │ │ │ └── environment.yml │ │ ├── 5840 │ │ │ └── environment.yml │ │ ├── 6197 │ │ │ └── environment.yml │ │ ├── 6202 │ │ │ └── environment.yml │ │ ├── 7205 │ │ │ └── environment.yml │ │ ├── 7236 │ │ │ └── environment.yml │ │ ├── 7324 │ │ │ └── environment.yml │ │ ├── 7432 │ │ │ └── environment.yml │ │ ├── 7490 │ │ │ └── environment.yml │ │ ├── 7521 │ │ │ └── environment.yml │ │ ├── 7571 │ │ │ └── environment.yml │ │ ├── 7982 │ │ │ └── environment.yml │ │ ├── 8399 │ │ │ └── environment.yml │ │ ├── 10051 │ │ │ └── environment.yml │ │ ├── 10081 │ │ │ └── environment.yml │ │ └── 10356 │ │ │ └── environment.yml │ │ ├── scikit-learn__scikit-learn │ │ ├── 9288 │ │ │ └── environment.yml │ │ ├── 10297 │ │ │ └── environment.yml │ │ ├── 10844 │ │ │ └── environment.yml │ │ ├── 10908 │ │ │ └── environment.yml │ │ ├── 11310 │ │ │ └── environment.yml │ │ ├── 11578 │ │ │ └── environment.yml │ │ ├── 12585 │ │ │ └── environment.yml │ │ ├── 12682 │ │ │ └── environment.yml │ │ ├── 12973 │ │ │ └── environment.yml │ │ ├── 13124 │ │ │ └── environment.yml │ │ ├── 13135 │ │ │ └── environment.yml │ │ ├── 13142 │ │ │ └── environment.yml │ │ ├── 13328 │ │ │ └── environment.yml │ │ ├── 13439 │ │ │ └── environment.yml │ │ ├── 13496 │ │ │ └── environment.yml │ │ ├── 13779 │ │ │ └── environment.yml │ │ ├── 14053 │ │ │ └── environment.yml │ │ ├── 14087 │ │ │ └── environment.yml │ │ ├── 14141 │ │ │ └── environment.yml │ │ ├── 14496 │ │ │ └── environment.yml │ │ ├── 14629 │ │ │ └── environment.yml │ │ ├── 14710 │ │ │ └── environment.yml │ │ ├── 14894 │ │ │ └── environment.yml │ │ ├── 14983 │ │ │ └── environment.yml │ │ ├── 15100 │ │ │ └── environment.yml │ │ ├── 25102 │ │ │ └── environment.yml │ │ ├── 25232 │ │ │ └── environment.yml │ │ ├── 25747 │ │ │ └── environment.yml │ │ ├── 25931 │ │ │ └── environment.yml │ │ ├── 25973 │ │ │ └── environment.yml │ │ ├── 26194 │ │ │ └── environment.yml │ │ └── 26323 │ │ │ └── environment.yml │ │ ├── sphinx-doc__sphinx │ │ ├── 7440 │ │ │ └── environment.yml │ │ ├── 7454 │ │ │ └── environment.yml │ │ ├── 7462 │ │ │ └── environment.yml │ │ ├── 7590 │ │ │ └── environment.yml │ │ ├── 7748 │ │ │ └── environment.yml │ │ ├── 7757 │ │ │ └── environment.yml │ │ ├── 7889 │ │ │ └── environment.yml │ │ ├── 7910 │ │ │ └── environment.yml │ │ ├── 7985 │ │ │ └── environment.yml │ │ ├── 8035 │ │ │ └── environment.yml │ │ ├── 8056 │ │ │ └── environment.yml │ │ ├── 8120 │ │ │ └── environment.yml │ │ ├── 8265 │ │ │ └── environment.yml │ │ ├── 8269 │ │ │ └── environment.yml │ │ ├── 8459 │ │ │ └── environment.yml │ │ ├── 8475 │ │ │ └── environment.yml │ │ ├── 8548 │ │ │ └── environment.yml │ │ ├── 8551 │ │ │ └── environment.yml │ │ ├── 8593 │ │ │ └── environment.yml │ │ ├── 8595 │ │ │ └── environment.yml │ │ ├── 8621 │ │ │ └── environment.yml │ │ ├── 8638 │ │ │ └── environment.yml │ │ ├── 8721 │ │ │ └── environment.yml │ │ ├── 9229 │ │ │ └── environment.yml │ │ ├── 9230 │ │ │ └── environment.yml │ │ ├── 9258 │ │ │ └── environment.yml │ │ ├── 9281 │ │ │ └── environment.yml │ │ ├── 9320 │ │ │ └── environment.yml │ │ ├── 9367 │ │ │ └── environment.yml │ │ ├── 9461 │ │ │ └── environment.yml │ │ ├── 9591 │ │ │ └── environment.yml │ │ ├── 9602 │ │ │ └── environment.yml │ │ ├── 9658 │ │ │ └── environment.yml │ │ ├── 9673 │ │ │ └── environment.yml │ │ ├── 9698 │ │ │ └── environment.yml │ │ ├── 9711 │ │ │ └── environment.yml │ │ ├── 10323 │ │ │ └── environment.yml │ │ ├── 10435 │ │ │ └── environment.yml │ │ ├── 10449 │ │ │ └── environment.yml │ │ ├── 10466 │ │ │ └── environment.yml │ │ ├── 10614 │ │ │ └── environment.yml │ │ ├── 10673 │ │ │ └── environment.yml │ │ ├── 11445 │ │ │ └── environment.yml │ │ └── 11510 │ │ │ └── environment.yml │ │ └── sympy__sympy │ │ ├── 11618 │ │ └── environment.yml │ │ ├── 12096 │ │ └── environment.yml │ │ ├── 12419 │ │ └── environment.yml │ │ ├── 12481 │ │ └── environment.yml │ │ ├── 12489 │ │ └── environment.yml │ │ ├── 13031 │ │ └── environment.yml │ │ ├── 13091 │ │ └── environment.yml │ │ ├── 13372 │ │ └── environment.yml │ │ ├── 13480 │ │ └── environment.yml │ │ ├── 13551 │ │ └── environment.yml │ │ ├── 13615 │ │ └── environment.yml │ │ ├── 13647 │ │ └── environment.yml │ │ ├── 13757 │ │ └── environment.yml │ │ ├── 13798 │ │ └── environment.yml │ │ ├── 13852 │ │ └── environment.yml │ │ ├── 13877 │ │ └── environment.yml │ │ ├── 13878 │ │ └── environment.yml │ │ ├── 13974 │ │ └── environment.yml │ │ ├── 14248 │ │ └── environment.yml │ │ ├── 14531 │ │ └── environment.yml │ │ ├── 14711 │ │ └── environment.yml │ │ ├── 14976 │ │ └── environment.yml │ │ ├── 15017 │ │ └── environment.yml │ │ ├── 15345 │ │ └── environment.yml │ │ ├── 15349 │ │ └── environment.yml │ │ ├── 15599 │ │ └── environment.yml │ │ ├── 15809 │ │ └── environment.yml │ │ ├── 15875 │ │ └── environment.yml │ │ ├── 15976 │ │ └── environment.yml │ │ ├── 16450 │ │ └── environment.yml │ │ ├── 16597 │ │ └── environment.yml │ │ ├── 16766 │ │ └── environment.yml │ │ ├── 16792 │ │ └── environment.yml │ │ ├── 16886 │ │ └── environment.yml │ │ ├── 17139 │ │ └── environment.yml │ │ ├── 17318 │ │ └── environment.yml │ │ ├── 17630 │ │ └── environment.yml │ │ ├── 17655 │ │ └── environment.yml │ │ ├── 18189 │ │ └── environment.yml │ │ ├── 18199 │ │ └── environment.yml │ │ ├── 18211 │ │ └── environment.yml │ │ ├── 18698 │ │ └── environment.yml │ │ ├── 18763 │ │ └── environment.yml │ │ ├── 19040 │ │ └── environment.yml │ │ ├── 19346 │ │ └── environment.yml │ │ ├── 19495 │ │ └── environment.yml │ │ ├── 19637 │ │ └── environment.yml │ │ ├── 19783 │ │ └── environment.yml │ │ ├── 19954 │ │ └── environment.yml │ │ ├── 20154 │ │ └── environment.yml │ │ ├── 20428 │ │ └── environment.yml │ │ ├── 20438 │ │ └── environment.yml │ │ ├── 20590 │ │ └── environment.yml │ │ ├── 20801 │ │ └── environment.yml │ │ ├── 20916 │ │ └── environment.yml │ │ ├── 21379 │ │ └── environment.yml │ │ ├── 21596 │ │ └── environment.yml │ │ ├── 21612 │ │ └── environment.yml │ │ ├── 21847 │ │ └── environment.yml │ │ ├── 21930 │ │ └── environment.yml │ │ ├── 22080 │ │ └── environment.yml │ │ ├── 22456 │ │ └── environment.yml │ │ ├── 22714 │ │ └── environment.yml │ │ ├── 22914 │ │ └── environment.yml │ │ ├── 23262 │ │ └── environment.yml │ │ ├── 23413 │ │ └── environment.yml │ │ ├── 23534 │ │ └── environment.yml │ │ ├── 23824 │ │ └── environment.yml │ │ ├── 23950 │ │ └── environment.yml │ │ ├── 24066 │ │ └── environment.yml │ │ ├── 24213 │ │ └── environment.yml │ │ ├── 24443 │ │ └── environment.yml │ │ ├── 24539 │ │ └── environment.yml │ │ ├── 24562 │ │ └── environment.yml │ │ └── 24661 │ │ └── environment.yml └── versioning │ ├── __init__.py │ ├── constants.py │ ├── extract_web │ ├── get_versions_astropy.py │ ├── get_versions_matplotlib.py │ ├── get_versions_pvlib-python.py │ ├── get_versions_pydicom.py │ ├── get_versions_sqlfluff.py │ └── get_versions_xarray.py │ ├── get_versions.py │ ├── run_get_versions.sh │ └── utils.py └── tests ├── test_cli.py ├── test_collect_cli.py ├── test_data └── pvlib.jsonl ├── test_evaluation.py └── test_harness_utils.py /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: Discord server 4 | url: https://discord.gg/AVEFbBn2rH 5 | about: Developers and users can be found on the Discord server 6 | - name: Blank issue 7 | url: https://github.com/swe-bench/SWE-bench/issues/new 8 | about: None of the above? Open a blank issue 9 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature Request 2 | description: Suggest a new feature or enhancement to the project 3 | labels: ['feature'] 4 | 5 | body: 6 | - type: textarea 7 | attributes: 8 | label: Describe the feature 9 | description: > 10 | Please describe the feature as best as you can. 11 | If applicable, it would help to know how you currently manage without it. 12 | What improvements would you expect with its implementation? 13 | validations: 14 | required: true 15 | - type: textarea 16 | attributes: 17 | label: Potential Solutions 18 | description: Links to similar features in other projects, diagrams, or any other references that could help us understand your vision are highly appreciated. 19 | validations: 20 | required: true 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- 1 | name: Question 2 | description: Ask a question about SWE-agent or request documentation that is missing. 3 | labels: ['documentation'] 4 | 5 | body: 6 | - type: textarea 7 | attributes: 8 | label: Describe the issue 9 | description: > 10 | Tell us about the confusion you have about SWE-agent *or* 11 | the information that is missing in the documentation. 12 | validations: 13 | required: true 14 | - type: textarea 15 | attributes: 16 | label: Suggest an improvement to documentation 17 | description: > 18 | Tell us how we could improve the documentation in this regard. -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 4 | 5 | #### Reference Issues/PRs 6 | 12 | 13 | #### What does this implement/fix? Explain your changes. 14 | 19 | 20 | #### Any other comments? 21 | 22 | 23 | -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- 1 | name: build-docs 2 | 3 | # Prevent concurrent runs that could conflict when pushing to gh-pages 4 | concurrency: 5 | group: build-docs-${{ github.ref }} 6 | cancel-in-progress: false 7 | 8 | on: 9 | push: 10 | branches: 11 | - main 12 | - "build-docs-*" 13 | pull_request: 14 | branches: 15 | - main 16 | permissions: 17 | contents: write 18 | jobs: 19 | deploy: 20 | runs-on: ubuntu-latest 21 | steps: 22 | - uses: actions/checkout@v4 23 | with: 24 | fetch-depth: 0 25 | - name: Configure Git Credentials 26 | run: | 27 | git config user.name github-actions[bot] 28 | git config user.email 41898282+github-actions[bot]@users.noreply.github.com 29 | - uses: actions/setup-python@v5 30 | with: 31 | python-version: 3.x 32 | - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV 33 | - uses: actions/cache@v4 34 | with: 35 | key: mkdocs-material-${{ env.cache_id }} 36 | path: .cache 37 | restore-keys: | 38 | mkdocs-material- 39 | - name: Install uv 40 | run: | 41 | curl -LsSf https://astral.sh/uv/install.sh | sh 42 | - run: uv pip install --python ${Python_ROOT_DIR} '.[docs]' 43 | - name: Build Documentation 44 | if: github.event_name == 'pull_request' 45 | run: mkdocs build 46 | - name: Deploy Documentation 47 | if: github.ref == 'refs/heads/main' 48 | run: mkdocs gh-deploy --force -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: https://github.com/astral-sh/ruff-pre-commit 3 | # Ruff version 4 | rev: v0.9.6 5 | hooks: 6 | # Run the linter 7 | - id: ruff 8 | # Only fix newly changed lines 9 | args: [ --fix, --diff ] 10 | # Run the formatter 11 | - id: ruff-format 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Carlos E Jimenez, John Yang, Alexander Wettig, Shunyu Yao, Kexin Pei, Ofir Press, Karthik R Narasimhan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | # Configuration for codecov 2 | coverage: 3 | status: 4 | project: 5 | default: 6 | # If we get < 45% coverage, codecov is gonna mark it a failure 7 | target: 45% 8 | threshold: null 9 | patch: 10 | default: 11 | # Codecov won't mark it as a failure if a patch is not covered well 12 | informational: true 13 | github_checks: 14 | # Don't mark lines that aren't covered 15 | annotations: false 16 | 17 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # SWE-bench Documentation 2 | 3 | This directory contains comprehensive documentation for SWE-bench. 4 | 5 | ## Directory Structure 6 | 7 | - **index.md**: Main documentation landing page with overview and quick links 8 | - **installation.md**: Complete installation instructions 9 | - **faq.md**: Frequently asked questions 10 | - **guides/**: Step-by-step guides for common tasks 11 | - **quickstart.md**: Getting started with SWE-bench 12 | - **evaluation.md**: How to evaluate models 13 | - **docker_setup.md**: Detailed Docker configuration guide 14 | - **datasets.md**: Information about available datasets 15 | - **create_rag_datasets.md**: How to create custom RAG datasets 16 | - **reference/**: Detailed API and technical references 17 | - **harness/**: Documentation for the evaluation harness 18 | - **inference/**: Documentation for model inference 19 | - **versioning.md**: Explanation of the versioning system 20 | - **api/**: API documentation (reserved for future use) 21 | 22 | ## Documentation Maintenance 23 | 24 | When updating the documentation: 25 | 26 | 1. Keep the structure consistent 27 | 2. Ensure cross-references between documents are correct 28 | 3. Update the main index.md when adding new sections 29 | 4. Test code examples to ensure they work properly 30 | 31 | ## Contributing Documentation 32 | 33 | When contributing to the documentation: 34 | 35 | 1. Follow the existing style and formatting 36 | 2. Use Markdown for all documents 37 | 3. Include practical examples when explaining features 38 | 4. Cross-reference related documentation sections 39 | 40 | ## Documentation Roadmap 41 | 42 | Future documentation improvements: 43 | 44 | 1. Add more code examples and tutorials 45 | 2. Create video tutorials for complex tasks 46 | 3. Develop auto-generated API documentation 47 | 4. Expand troubleshooting guides with common issues -------------------------------------------------------------------------------- /docs/api/harness.md: -------------------------------------------------------------------------------- 1 | # Harness API 2 | 3 | ::: swebench.harness 4 | options: 5 | show_root_heading: true 6 | show_root_full_path: true 7 | show_submodules: true 8 | members_order: source 9 | heading_level: 3 10 | -------------------------------------------------------------------------------- /docs/api/inference.md: -------------------------------------------------------------------------------- 1 | # Inference API 2 | 3 | ::: swebench.inference 4 | options: 5 | show_root_heading: true 6 | show_root_full_path: true 7 | show_submodules: true 8 | members_order: source 9 | heading_level: 3 10 | -------------------------------------------------------------------------------- /docs/api/versioning.md: -------------------------------------------------------------------------------- 1 | # Versioning API 2 | 3 | ::: swebench.versioning 4 | options: 5 | show_root_heading: true 6 | show_root_full_path: true 7 | show_submodules: true 8 | members_order: source 9 | heading_level: 3 10 | -------------------------------------------------------------------------------- /docs/assets/build_deploy.sh: -------------------------------------------------------------------------------- 1 | # !bin/bash 2 | 3 | python -m build 4 | 5 | python -m twine upload --skip-existing --repository pypi dist/* 6 | # python -m twine upload --skip-existing --repository testpypi dist/* 7 | -------------------------------------------------------------------------------- /docs/assets/figures/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/docs/assets/figures/collection.png -------------------------------------------------------------------------------- /docs/assets/figures/evaluation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/docs/assets/figures/evaluation.png -------------------------------------------------------------------------------- /docs/assets/figures/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/docs/assets/figures/teaser.png -------------------------------------------------------------------------------- /docs/assets/figures/validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/docs/assets/figures/validation.png -------------------------------------------------------------------------------- /docs/blog/.authors.yml: -------------------------------------------------------------------------------- 1 | authors: 2 | klieret: 3 | name: Kilian Lieret 4 | description: "" 5 | avatar: https://github.com/klieret.png 6 | slug: https://github.com/klieret 7 | url: https://lieret.net 8 | carlosejimenez: 9 | name: Carlos E Jimenez 10 | description: "" 11 | avatar: https://github.com/carlosejimenez.png 12 | slug: https://github.com/carlosejimenez 13 | url: https://www.carlosejimenez.com/ 14 | john-b-yang: 15 | name: John Yang 16 | description: "" 17 | avatar: https://github.com/john-b-yang.png 18 | slug: https://github.com/john-b-yang 19 | url: https://john-b-yang.github.io/ 20 | ofirpress: 21 | name: Ofir Press 22 | description: "" 23 | avatar: https://github.com/ofirpress.png 24 | slug: https://github.com/ofirpress 25 | url: https://ofir.io/about/ -------------------------------------------------------------------------------- /docs/blog/index.md: -------------------------------------------------------------------------------- 1 | # Blog 2 | -------------------------------------------------------------------------------- /docs/css/custom.css: -------------------------------------------------------------------------------- 1 | [data-md-color-scheme="default"] { 2 | --md-default-bg-color: #fff7ec; 3 | --md-primary-fg-color: #1697E2; 4 | --md-typeset-a-color: #006caa; 5 | --md-code-bg-color: #e7e7e7; 6 | } 7 | 8 | [data-md-color-scheme="slate"] { 9 | --md-primary-fg-color: #1697E2; 10 | --md-default-fg-color: #fff7ec; 11 | --md-default-bg-color: #111111; 12 | } 13 | 14 | .clickable-banner { 15 | color: #000000; 16 | } 17 | 18 | .md-main__inner.md-grid, 19 | .md-grid { 20 | max-width: 64rem; 21 | } 22 | 23 | @media screen and (min-width: 1220px) { 24 | .md-main__inner.md-grid, 25 | .md-grid { 26 | max-width: 64rem; 27 | } 28 | } 29 | 30 | .md-typeset h1, 31 | .md-typeset h2, 32 | .md-typeset h3 { 33 | font-weight: 400; 34 | color: var( 35 | --md-primary-fg-color-dark 36 | ); /* this actually works for both light and dark themes */ 37 | } -------------------------------------------------------------------------------- /docs/css/mkdocstrings.css: -------------------------------------------------------------------------------- 1 | /* From https://mkdocstrings.github.io/python/usage/customization/#symbol-types */ 2 | [data-md-color-scheme="default"] { 3 | --doc-symbol-parameter-fg-color: #df50af; 4 | --doc-symbol-attribute-fg-color: #0079ff; 5 | --doc-symbol-function-fg-color: #00dfa2; 6 | --doc-symbol-method-fg-color: #00dfa2; 7 | --doc-symbol-class-fg-color: #d1b619; 8 | --doc-symbol-module-fg-color: #ff0060; 9 | 10 | --doc-symbol-parameter-bg-color: #df50af1a; 11 | --doc-symbol-attribute-bg-color: #0079ff1a; 12 | --doc-symbol-function-bg-color: #00dfa21a; 13 | --doc-symbol-method-bg-color: #00dfa21a; 14 | --doc-symbol-class-bg-color: #d1b6191a; 15 | --doc-symbol-module-bg-color: #ff00601a; 16 | } -------------------------------------------------------------------------------- /swebench/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "4.1.0" 2 | 3 | from swebench.collect.build_dataset import main as build_dataset 4 | from swebench.collect.get_tasks_pipeline import main as get_tasks_pipeline 5 | from swebench.collect.print_pulls import main as print_pulls 6 | 7 | from swebench.harness.constants import ( 8 | KEY_INSTANCE_ID, 9 | KEY_MODEL, 10 | KEY_PREDICTION, 11 | MAP_REPO_VERSION_TO_SPECS, 12 | ) 13 | 14 | from swebench.harness.docker_build import ( 15 | build_image, 16 | build_base_images, 17 | build_env_images, 18 | build_instance_images, 19 | build_instance_image, 20 | close_logger, 21 | setup_logger, 22 | ) 23 | 24 | from swebench.harness.docker_utils import ( 25 | cleanup_container, 26 | remove_image, 27 | copy_to_container, 28 | exec_run_with_timeout, 29 | list_images, 30 | ) 31 | 32 | from swebench.harness.grading import ( 33 | compute_fail_to_pass, 34 | compute_pass_to_pass, 35 | get_logs_eval, 36 | get_eval_report, 37 | get_resolution_status, 38 | ResolvedStatus, 39 | TestStatus, 40 | ) 41 | 42 | from swebench.harness.log_parsers import ( 43 | MAP_REPO_TO_PARSER, 44 | ) 45 | 46 | from swebench.harness.run_evaluation import ( 47 | main as run_evaluation, 48 | ) 49 | 50 | from swebench.harness.utils import ( 51 | run_threadpool, 52 | ) 53 | 54 | from swebench.versioning.constants import ( 55 | MAP_REPO_TO_VERSION_PATHS, 56 | MAP_REPO_TO_VERSION_PATTERNS, 57 | ) 58 | 59 | from swebench.versioning.get_versions import ( 60 | get_version, 61 | get_versions_from_build, 62 | get_versions_from_web, 63 | map_version_to_task_instances, 64 | ) 65 | 66 | from swebench.versioning.utils import ( 67 | split_instances, 68 | ) 69 | -------------------------------------------------------------------------------- /swebench/collect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/swebench/collect/__init__.py -------------------------------------------------------------------------------- /swebench/collect/make_lite/README.md: -------------------------------------------------------------------------------- 1 | ## SWE-bench *Lite* 2 | This directory contains the scripts used to make the *lite* version of SWE-bench. The *lite* version is a subset of the full SWE-bench, that filters out certain types of instances to make evaluation on SWE-bench a bit cheaper and more accessible. 3 | 4 | SWE-bench lite consists of 300 test instances and 23 development instances; both subsets of the full SWE-bench splits. We filter the full SWE-bench according to the following criteria to get *lite*: 5 | - We remove instances with images, external hyperlinks, references to specific commit shas and references to other pull requests or issues. 6 | - We remove instances that have fewer than 40 words in the problem statement. 7 | - We remove instances that edit more than 1 file. 8 | - We remove instances where the gold patch has more than 3 edit hunks (see [patch](https://man7.org/linux/man-pages/man1/patch.1.html)). 9 | - We remove instances that create or remove files. 10 | - We remove instances that contain tests with error message checks. 11 | - Finally, we sample 300 test instances and 23 development instances from the remaining instances. 12 | 13 | See `make_lite.py` for the script that makes the *lite* version of SWE-bench, or download the *lite* version from the Hugging Face datasets [princeton-nlp/SWE-bench_Lite](https://huggingface.co/datasets/SWE-bench/SWE-bench_Lite) 14 | -------------------------------------------------------------------------------- /swebench/collect/make_repo/call_make_repo.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import subprocess 4 | 5 | repos = ["Repos here"] 6 | 7 | for repo in repos: 8 | print(f"Making mirror repo for {repo}") 9 | out_make = subprocess.run( 10 | f"./make_repo.sh {repo}", 11 | shell=True, 12 | stdout=subprocess.DEVNULL, 13 | stderr=subprocess.DEVNULL, 14 | ) 15 | if out_make.returncode != 0: 16 | print(f"Error making mirror repo for {repo}") 17 | else: 18 | print(f"Success making mirror repo for {repo}") 19 | -------------------------------------------------------------------------------- /swebench/collect/run_build_dataset_ft.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | python build_dataset_ft.py \ 4 | --instances_path "" \ 5 | --output_path "" \ 6 | --eval_path "" -------------------------------------------------------------------------------- /swebench/collect/run_get_tasks_pipeline.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # If you'd like to parallelize, do the following: 4 | # * Create a .env file in this folder 5 | # * Declare GITHUB_TOKENS=token1,token2,token3... 6 | 7 | python get_tasks_pipeline.py \ 8 | --repos 'scikit-learn/scikit-learn', 'pallets/flask' \ 9 | --path_prs '' \ 10 | --path_tasks '' -------------------------------------------------------------------------------- /swebench/harness/__init__.py: -------------------------------------------------------------------------------- 1 | from swebench.harness import ( 2 | docker_build, 3 | docker_utils, 4 | grading, 5 | prepare_images, 6 | remove_containers, 7 | reporting, 8 | run_evaluation, 9 | utils, 10 | constants, 11 | dockerfiles, 12 | log_parsers, 13 | modal_eval, 14 | test_spec, 15 | ) 16 | 17 | __all__ = [ 18 | "docker_build", 19 | "docker_utils", 20 | "grading", 21 | "prepare_images", 22 | "remove_containers", 23 | "reporting", 24 | "run_evaluation", 25 | "utils", 26 | "constants", 27 | "dockerfiles", 28 | "log_parsers", 29 | "modal_eval", 30 | "test_spec", 31 | ] 32 | -------------------------------------------------------------------------------- /swebench/harness/dockerfiles/c.py: -------------------------------------------------------------------------------- 1 | _DOCKERFILE_BASE_C = r""" 2 | FROM --platform={platform} ubuntu:22.04 3 | 4 | ARG DEBIAN_FRONTEND=noninteractive 5 | ENV TZ=Etc/UTC 6 | 7 | # Uncomment deb-src lines. Only works on Ubuntu 22.04 and below 8 | RUN sed -i 's/^# deb-src/deb-src/' /etc/apt/sources.list 9 | 10 | # Includes dependencies for all C/C++ projects 11 | RUN apt update && \ 12 | apt install -y wget git build-essential libtool automake autoconf tcl bison flex cmake python3 python3-pip python3-venv python-is-python3 && \ 13 | rm -rf /var/lib/apt/lists/* 14 | 15 | RUN adduser --disabled-password --gecos 'dog' nonroot 16 | """ 17 | 18 | _DOCKERFILE_INSTANCE_C = r"""FROM --platform={platform} {env_image_name} 19 | 20 | COPY ./setup_repo.sh /root/ 21 | RUN /bin/bash /root/setup_repo.sh 22 | 23 | WORKDIR /testbed/ 24 | """ 25 | -------------------------------------------------------------------------------- /swebench/harness/dockerfiles/java.py: -------------------------------------------------------------------------------- 1 | _DOCKERFILE_BASE_JAVA = r""" 2 | FROM --platform={platform} maven:3.9-eclipse-temurin-{java_version} 3 | 4 | ARG DEBIAN_FRONTEND=noninteractive 5 | ENV TZ=Etc/UTC 6 | 7 | RUN apt update && apt install -y \ 8 | wget \ 9 | git \ 10 | build-essential \ 11 | ant \ 12 | unzip \ 13 | && rm -rf /var/lib/apt/lists/* 14 | 15 | RUN curl -fsSL -o mvnd.zip https://downloads.apache.org/maven/mvnd/1.0.2/maven-mvnd-1.0.2-linux-amd64.zip && \ 16 | unzip mvnd.zip -d /tmp && \ 17 | mv /tmp/maven-mvnd-1.0.2-linux-amd64 /usr/local/mvnd && \ 18 | rm mvnd.zip && \ 19 | rm -rf /tmp/maven-mvnd-1.0.2-linux-amd64 20 | 21 | ENV MVND_HOME=/usr/local/mvnd 22 | ENV PATH=$MVND_HOME/bin:$PATH 23 | 24 | RUN adduser --disabled-password --gecos 'dog' nonroot 25 | """ 26 | 27 | _DOCKERFILE_INSTANCE_JAVA = r"""FROM --platform={platform} {env_image_name} 28 | 29 | COPY ./setup_repo.sh /root/ 30 | RUN /bin/bash /root/setup_repo.sh 31 | 32 | WORKDIR /testbed/ 33 | """ 34 | -------------------------------------------------------------------------------- /swebench/harness/dockerfiles/php.py: -------------------------------------------------------------------------------- 1 | _DOCKERFILE_BASE_PHP = r""" 2 | FROM --platform={platform} php:{php_version} 3 | 4 | ARG DEBIAN_FRONTEND=noninteractive 5 | ENV TZ=Etc/UTC 6 | 7 | RUN apt update && apt install -y \ 8 | wget \ 9 | git \ 10 | build-essential \ 11 | libgd-dev \ 12 | libzip-dev \ 13 | libgmp-dev \ 14 | libftp-dev \ 15 | libcurl4-openssl-dev \ 16 | && apt-get -y autoclean \ 17 | && rm -rf /var/lib/apt/lists/* 18 | 19 | RUN docker-php-ext-install gd zip gmp ftp curl pcntl 20 | 21 | RUN curl -sS https://getcomposer.org/installer | php -- --2.2 --install-dir=/usr/local/bin --filename=composer 22 | 23 | RUN adduser --disabled-password --gecos 'dog' nonroot 24 | """ 25 | 26 | # No env image for PHP. The base image is used as the environment image since it configures the PHP environment 27 | 28 | _DOCKERFILE_INSTANCE_PHP = r"""FROM --platform={platform} {env_image_name} 29 | 30 | COPY ./setup_repo.sh /root/ 31 | RUN /bin/bash /root/setup_repo.sh 32 | 33 | WORKDIR /testbed/ 34 | """ 35 | -------------------------------------------------------------------------------- /swebench/harness/dockerfiles/python.py: -------------------------------------------------------------------------------- 1 | _DOCKERFILE_BASE_PY = r""" 2 | FROM --platform={platform} ubuntu:{ubuntu_version} 3 | 4 | ARG DEBIAN_FRONTEND=noninteractive 5 | ENV TZ=Etc/UTC 6 | 7 | RUN apt update && apt install -y \ 8 | wget \ 9 | git \ 10 | build-essential \ 11 | libffi-dev \ 12 | libtiff-dev \ 13 | python3 \ 14 | python3-pip \ 15 | python-is-python3 \ 16 | jq \ 17 | curl \ 18 | locales \ 19 | locales-all \ 20 | tzdata \ 21 | && rm -rf /var/lib/apt/lists/* 22 | 23 | # Download and install conda 24 | RUN wget 'https://repo.anaconda.com/miniconda/Miniconda3-{conda_version}-Linux-{conda_arch}.sh' -O miniconda.sh \ 25 | && bash miniconda.sh -b -p /opt/miniconda3 26 | # Add conda to PATH 27 | ENV PATH=/opt/miniconda3/bin:$PATH 28 | # Add conda to shell startup scripts like .bashrc (DO NOT REMOVE THIS) 29 | RUN conda init --all 30 | RUN conda config --append channels conda-forge 31 | 32 | RUN adduser --disabled-password --gecos 'dog' nonroot 33 | """ 34 | 35 | _DOCKERFILE_ENV_PY = r"""FROM --platform={platform} {base_image_key} 36 | 37 | COPY ./setup_env.sh /root/ 38 | RUN sed -i -e 's/\r$//' /root/setup_env.sh 39 | RUN chmod +x /root/setup_env.sh 40 | RUN /bin/bash -c "source ~/.bashrc && /root/setup_env.sh" 41 | 42 | WORKDIR /testbed/ 43 | 44 | # Automatically activate the testbed environment 45 | RUN echo "source /opt/miniconda3/etc/profile.d/conda.sh && conda activate testbed" > /root/.bashrc 46 | """ 47 | 48 | _DOCKERFILE_INSTANCE_PY = r"""FROM --platform={platform} {env_image_name} 49 | 50 | COPY ./setup_repo.sh /root/ 51 | RUN sed -i -e 's/\r$//' /root/setup_repo.sh 52 | RUN /bin/bash /root/setup_repo.sh 53 | 54 | WORKDIR /testbed/ 55 | """ 56 | -------------------------------------------------------------------------------- /swebench/harness/dockerfiles/ruby.py: -------------------------------------------------------------------------------- 1 | _DOCKERFILE_BASE_RUBY = r""" 2 | FROM --platform={platform} ruby:{ruby_version} 3 | 4 | ARG DEBIAN_FRONTEND=noninteractive 5 | ENV TZ=Etc/UTC 6 | 7 | RUN apt update && apt install -y \ 8 | wget \ 9 | git \ 10 | build-essential \ 11 | jq \ 12 | && rm -rf /var/lib/apt/lists/* 13 | 14 | RUN adduser --disabled-password --gecos 'dog' nonroot 15 | """ 16 | 17 | _DOCKERFILE_INSTANCE_RUBY = r"""FROM --platform={platform} {env_image_name} 18 | 19 | COPY ./setup_repo.sh /root/ 20 | RUN /bin/bash /root/setup_repo.sh 21 | 22 | WORKDIR /testbed/ 23 | """ 24 | -------------------------------------------------------------------------------- /swebench/harness/dockerfiles/rust.py: -------------------------------------------------------------------------------- 1 | # If you change the base image, you need to rebuild all images (run with --force_rebuild) 2 | _DOCKERFILE_BASE_RUST = r""" 3 | FROM --platform={platform} rust:{rust_version} 4 | 5 | ARG DEBIAN_FRONTEND=noninteractive 6 | ENV TZ=Etc/UTC 7 | 8 | RUN apt update && apt install -y \ 9 | wget \ 10 | git \ 11 | build-essential \ 12 | && rm -rf /var/lib/apt/lists/* 13 | 14 | RUN adduser --disabled-password --gecos 'dog' nonroot 15 | """ 16 | 17 | _DOCKERFILE_INSTANCE_RUST = r"""FROM --platform={platform} {env_image_name} 18 | 19 | COPY ./setup_repo.sh /root/ 20 | RUN /bin/bash /root/setup_repo.sh 21 | 22 | WORKDIR /testbed/ 23 | """ 24 | -------------------------------------------------------------------------------- /swebench/harness/log_parsers/__init__.py: -------------------------------------------------------------------------------- 1 | from swebench.harness.log_parsers.c import MAP_REPO_TO_PARSER_C 2 | from swebench.harness.log_parsers.go import MAP_REPO_TO_PARSER_GO 3 | from swebench.harness.log_parsers.java import MAP_REPO_TO_PARSER_JAVA 4 | from swebench.harness.log_parsers.javascript import MAP_REPO_TO_PARSER_JS 5 | from swebench.harness.log_parsers.php import MAP_REPO_TO_PARSER_PHP 6 | from swebench.harness.log_parsers.python import MAP_REPO_TO_PARSER_PY 7 | from swebench.harness.log_parsers.ruby import MAP_REPO_TO_PARSER_RUBY 8 | from swebench.harness.log_parsers.rust import MAP_REPO_TO_PARSER_RUST 9 | 10 | MAP_REPO_TO_PARSER = { 11 | **MAP_REPO_TO_PARSER_C, 12 | **MAP_REPO_TO_PARSER_GO, 13 | **MAP_REPO_TO_PARSER_JAVA, 14 | **MAP_REPO_TO_PARSER_JS, 15 | **MAP_REPO_TO_PARSER_PHP, 16 | **MAP_REPO_TO_PARSER_PY, 17 | **MAP_REPO_TO_PARSER_RUST, 18 | **MAP_REPO_TO_PARSER_RUBY, 19 | } 20 | 21 | 22 | __all__ = [ 23 | "MAP_REPO_TO_PARSER", 24 | ] 25 | -------------------------------------------------------------------------------- /swebench/harness/log_parsers/go.py: -------------------------------------------------------------------------------- 1 | import re 2 | from swebench.harness.constants import TestStatus 3 | from swebench.harness.test_spec.test_spec import TestSpec 4 | 5 | 6 | def parse_log_gotest(log: str, test_spec: TestSpec) -> dict[str, str]: 7 | """ 8 | Parser for test logs generated with 'go test' 9 | 10 | Args: 11 | log (str): log content 12 | test_spec (TestSpec): test spec (unused) 13 | Returns: 14 | dict: test case to test status mapping 15 | """ 16 | test_status_map = {} 17 | 18 | # Pattern to match test result lines 19 | pattern = r"^--- (PASS|FAIL|SKIP): (.+) \((.+)\)$" 20 | 21 | for line in log.split("\n"): 22 | match = re.match(pattern, line.strip()) 23 | if match: 24 | status, test_name, _duration = match.groups() 25 | if status == "PASS": 26 | test_status_map[test_name] = TestStatus.PASSED.value 27 | elif status == "FAIL": 28 | test_status_map[test_name] = TestStatus.FAILED.value 29 | elif status == "SKIP": 30 | test_status_map[test_name] = TestStatus.SKIPPED.value 31 | 32 | return test_status_map 33 | 34 | 35 | MAP_REPO_TO_PARSER_GO = { 36 | "caddyserver/caddy": parse_log_gotest, 37 | "hashicorp/terraform": parse_log_gotest, 38 | "prometheus/prometheus": parse_log_gotest, 39 | "gohugoio/hugo": parse_log_gotest, 40 | "gin-gonic/gin": parse_log_gotest, 41 | } 42 | -------------------------------------------------------------------------------- /swebench/harness/log_parsers/php.py: -------------------------------------------------------------------------------- 1 | import re 2 | from swebench.harness.constants import TestStatus 3 | from swebench.harness.test_spec.test_spec import TestSpec 4 | 5 | 6 | def parse_log_phpunit(log: str, test_spec: TestSpec) -> dict[str, str]: 7 | """ 8 | Parser for phpunit logs with the --testdox option. 9 | Args: 10 | log (str): log content 11 | test_spec (TestSpec): test spec (unused) 12 | Returns: 13 | dict: test case to test status mapping 14 | """ 15 | test_status_map = {} 16 | suite = None 17 | 18 | suite_pattern = r"^(\w.+) \(.+\)$" 19 | test_pattern = r"^\s*([✔✘↩])\s*(.*)$" 20 | 21 | for line in log.split("\n"): 22 | suite_match = re.match(suite_pattern, line) 23 | if suite_match: 24 | suite = suite_match.groups()[0] 25 | continue 26 | 27 | test_match = re.match(test_pattern, line) 28 | if test_match: 29 | status, test_name = test_match.groups() 30 | full_test_name = f"{suite} > {test_name}" 31 | 32 | if status == "✔": 33 | test_status_map[full_test_name] = TestStatus.PASSED.value 34 | elif status == "✘": 35 | test_status_map[full_test_name] = TestStatus.FAILED.value 36 | elif status == "↩": 37 | test_status_map[full_test_name] = TestStatus.SKIPPED.value 38 | 39 | return test_status_map 40 | 41 | 42 | MAP_REPO_TO_PARSER_PHP = { 43 | "phpoffice/phpspreadsheet": parse_log_phpunit, 44 | "laravel/framework": parse_log_phpunit, 45 | "php-cs-fixer/php-cs-fixer": parse_log_phpunit, 46 | "briannesbitt/carbon": parse_log_phpunit, 47 | } 48 | -------------------------------------------------------------------------------- /swebench/harness/log_parsers/rust.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | from swebench.harness.constants import TestStatus 4 | from swebench.harness.test_spec.test_spec import TestSpec 5 | 6 | 7 | def parse_log_cargo(log: str, test_spec: TestSpec) -> dict[str, str]: 8 | """ 9 | Args: 10 | log (str): log content 11 | Returns: 12 | dict: test case to test status mapping 13 | """ 14 | test_status_map = {} 15 | 16 | pattern = r"^test\s+(\S+)\s+\.\.\.\s+(\w+)$" 17 | 18 | for line in log.split("\n"): 19 | match = re.match(pattern, line.strip()) 20 | if match: 21 | test_name, outcome = match.groups() 22 | if outcome == "ok": 23 | test_status_map[test_name] = TestStatus.PASSED.value 24 | elif outcome == "FAILED": 25 | test_status_map[test_name] = TestStatus.FAILED.value 26 | 27 | return test_status_map 28 | 29 | 30 | MAP_REPO_TO_PARSER_RUST = { 31 | "burntsushi/ripgrep": parse_log_cargo, 32 | "sharkdp/bat": parse_log_cargo, 33 | "astral-sh/ruff": parse_log_cargo, 34 | "tokio-rs/tokio": parse_log_cargo, 35 | "uutils/coreutils": parse_log_cargo, 36 | "nushell/nushell": parse_log_cargo, 37 | "tokio-rs/axum": parse_log_cargo, 38 | } 39 | -------------------------------------------------------------------------------- /swebench/harness/modal_eval/__init__.py: -------------------------------------------------------------------------------- 1 | from swebench.harness.modal_eval.run_evaluation_modal import run_instances_modal 2 | from swebench.harness.modal_eval.utils import validate_modal_credentials 3 | 4 | 5 | __all__ = [ 6 | "run_instances_modal", 7 | "validate_modal_credentials", 8 | ] 9 | -------------------------------------------------------------------------------- /swebench/harness/modal_eval/utils.py: -------------------------------------------------------------------------------- 1 | from pathlib import Path 2 | 3 | 4 | def validate_modal_credentials(): 5 | """ 6 | Validate that Modal credentials exist by checking for ~/.modal.toml file. 7 | Raises an exception if credentials are not configured. 8 | """ 9 | modal_config_path = Path.home() / ".modal.toml" 10 | if not modal_config_path.exists(): 11 | raise RuntimeError( 12 | "~/.modal.toml not found - it looks like you haven't configured credentials for Modal.\n" 13 | "Run 'modal token new' in your terminal to configure credentials." 14 | ) 15 | -------------------------------------------------------------------------------- /swebench/harness/remove_containers.py: -------------------------------------------------------------------------------- 1 | import docker 2 | import json 3 | 4 | from argparse import ArgumentParser 5 | 6 | """ 7 | Script for removing containers associated with specified instance IDs. 8 | """ 9 | 10 | 11 | def main(instance_ids, predictions_path): 12 | all_ids = set() 13 | if predictions_path: 14 | with open(predictions_path, "r") as f: 15 | predictions = json.loads(f.read()) 16 | for pred in predictions: 17 | all_ids.add(pred["instance_id"]) 18 | 19 | if instance_ids: 20 | all_ids |= set(instance_ids) 21 | 22 | if not all_ids: 23 | print("No instance IDs provided, exiting.") 24 | return 25 | 26 | for instance_id in all_ids: 27 | try: 28 | client = docker.from_env() 29 | container = client.containers.get(f"sweb.eval.{instance_id}") 30 | container.stop() 31 | container.remove() 32 | print(f"Removed container {instance_id}") 33 | except docker.errors.NotFound: 34 | print(f"Container {instance_id} not found, skipping.") 35 | except Exception as e: 36 | print(f"Error removing container {instance_id}: {e}") 37 | continue 38 | 39 | 40 | if __name__ == "__main__": 41 | parser = ArgumentParser(description=__doc__) 42 | parser.add_argument( 43 | "--instance_ids", 44 | help="Instance IDs to remove containers for", 45 | ) 46 | parser.add_argument( 47 | "--predictions_path", 48 | help="Path to predictions file", 49 | ) 50 | args = parser.parse_args() 51 | instance_ids = ( 52 | [i.strip() for i in args.instance_ids.split(",")] if args.instance_ids else [] 53 | ) 54 | main( 55 | instance_ids=instance_ids, 56 | predictions_path=args.predictions_path, 57 | ) 58 | -------------------------------------------------------------------------------- /swebench/harness/test_spec/__init__.py: -------------------------------------------------------------------------------- 1 | from swebench.harness.test_spec import ( 2 | test_spec, 3 | create_scripts, 4 | javascript, 5 | python, 6 | ) 7 | 8 | 9 | __all__ = [ 10 | "test_spec", 11 | "create_scripts", 12 | "javascript", 13 | "python", 14 | ] 15 | -------------------------------------------------------------------------------- /swebench/inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/swebench/inference/__init__.py -------------------------------------------------------------------------------- /swebench/inference/llamao/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/swebench/inference/llamao/__init__.py -------------------------------------------------------------------------------- /swebench/inference/make_datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/swebench/inference/make_datasets/__init__.py -------------------------------------------------------------------------------- /swebench/resources/__init__.py: -------------------------------------------------------------------------------- 1 | # Resources package for SWE-bench 2 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/12907/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/13033/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/13236/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/13398/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.46.7 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/13453/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.46.7 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/13579/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/13977/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14096/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14182/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14309/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14365/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14369/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14508/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14539/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14598/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/astropy__astropy/14995/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - attrs==23.1.0 27 | - coverage==7.6.2 28 | - exceptiongroup==1.1.3 29 | - execnet==2.0.2 30 | - hypothesis==6.82.6 31 | - iniconfig==2.0.0 32 | - numpy==1.25.2 33 | - packaging==23.1 34 | - pluggy==1.3.0 35 | - psutil==5.9.5 36 | - pyerfa==2.0.0.3 37 | - pytest==7.4.0 38 | - pytest-arraydiff==0.5.0 39 | - pytest-astropy==0.10.0 40 | - pytest-astropy-header==0.2.2 41 | - pytest-cov==4.1.0 42 | - pytest-doctestplus==1.0.0 43 | - pytest-filter-subpackage==0.1.2 44 | - pytest-mock==3.11.1 45 | - pytest-openfiles==0.5.0 46 | - pytest-remotedata==0.4.0 47 | - pytest-xdist==3.3.1 48 | - pyyaml==6.0.1 49 | - setuptools==68.0.0 50 | - sortedcontainers==2.4.0 51 | - tomli==2.0.1 52 | prefix: /opt/miniconda3/envs/testbed 53 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/django__django/10097/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - certifi=2020.6.20=pyhd3eb1b0_3 10 | - libffi=3.3=he6710b0_2 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=1.1.1w=h7f8727e_0 16 | - pip=10.0.1=py35_0 17 | - python=3.5.6=h12debd9_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=40.2.0=py35_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - wheel=0.37.1=pyhd3eb1b0_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - argon2-cffi==21.1.0 27 | - bcrypt==3.1.7 28 | - cffi==1.15.1 29 | - chardet==4.0.0 30 | - docutils==0.18.1 31 | - geoip2==3.0.0 32 | - idna==2.10 33 | - jinja2==2.11.3 34 | - markupsafe==1.1.1 35 | - maxminddb==2.0.0 36 | - numpy==1.18.5 37 | - pillow==7.2.0 38 | - pycparser==2.21 39 | - pylibmc==1.6.1 40 | - python-memcached==1.62 41 | - pytz==2024.2 42 | - pywatchman==1.4.1 43 | - pyyaml==5.3.1 44 | - requests==2.25.1 45 | - selenium==3.141.0 46 | - six==1.16.0 47 | - sqlparse==0.4.4 48 | - tblib==1.7.0 49 | - urllib3==1.26.9 50 | prefix: /opt/miniconda3/envs/testbed 51 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/django__django/7530/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - certifi=2020.6.20=pyhd3eb1b0_3 10 | - libffi=3.3=he6710b0_2 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=1.1.1w=h7f8727e_0 16 | - pip=10.0.1=py35_0 17 | - python=3.5.6=h12debd9_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=40.2.0=py35_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - wheel=0.37.1=pyhd3eb1b0_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - argon2-cffi==21.1.0 27 | - bcrypt==3.1.7 28 | - cffi==1.15.1 29 | - chardet==4.0.0 30 | - docutils==0.18.1 31 | - geoip2==3.0.0 32 | - idna==2.10 33 | - jinja2==2.11.3 34 | - markupsafe==1.1.1 35 | - maxminddb==2.0.0 36 | - numpy==1.18.5 37 | - pillow==7.2.0 38 | - pycparser==2.21 39 | - pylibmc==1.6.1 40 | - python3-memcached==1.51 41 | - pytz==2024.2 42 | - pyyaml==5.3.1 43 | - requests==2.25.1 44 | - selenium==3.141.0 45 | - six==1.16.0 46 | - sqlparse==0.4.4 47 | - tblib==1.7.0 48 | - urllib3==1.26.9 49 | prefix: /opt/miniconda3/envs/testbed 50 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/psf__requests/1142/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - exceptiongroup=1.2.0=py39h06a4308_0 10 | - iniconfig=1.1.1=pyhd3eb1b0_0 11 | - ld_impl_linux-64=2.40=h12ee557_0 12 | - libffi=3.4.4=h6a678d5_1 13 | - libgcc-ng=11.2.0=h1234567_1 14 | - libgomp=11.2.0=h1234567_1 15 | - libstdcxx-ng=11.2.0=h1234567_1 16 | - ncurses=6.4=h6a678d5_0 17 | - openssl=3.0.15=h5eee18b_0 18 | - packaging=24.1=py39h06a4308_0 19 | - pip=24.2=py39h06a4308_0 20 | - pluggy=1.0.0=py39h06a4308_1 21 | - pytest=7.4.4=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tomli=2.0.1=py39h06a4308_0 28 | - tzdata=2024b=h04d1e81_0 29 | - wheel=0.44.0=py39h06a4308_0 30 | - xz=5.4.6=h5eee18b_1 31 | - zlib=1.2.13=h5eee18b_1 32 | - pip: 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/psf__requests/1724/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - exceptiongroup=1.2.0=py39h06a4308_0 10 | - iniconfig=1.1.1=pyhd3eb1b0_0 11 | - ld_impl_linux-64=2.40=h12ee557_0 12 | - libffi=3.4.4=h6a678d5_1 13 | - libgcc-ng=11.2.0=h1234567_1 14 | - libgomp=11.2.0=h1234567_1 15 | - libstdcxx-ng=11.2.0=h1234567_1 16 | - ncurses=6.4=h6a678d5_0 17 | - openssl=3.0.15=h5eee18b_0 18 | - packaging=24.1=py39h06a4308_0 19 | - pip=24.2=py39h06a4308_0 20 | - pluggy=1.0.0=py39h06a4308_1 21 | - pytest=7.4.4=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tomli=2.0.1=py39h06a4308_0 28 | - tzdata=2024b=h04d1e81_0 29 | - wheel=0.44.0=py39h06a4308_0 30 | - xz=5.4.6=h5eee18b_1 31 | - zlib=1.2.13=h5eee18b_1 32 | - pip: 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/psf__requests/1766/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - exceptiongroup=1.2.0=py39h06a4308_0 10 | - iniconfig=1.1.1=pyhd3eb1b0_0 11 | - ld_impl_linux-64=2.40=h12ee557_0 12 | - libffi=3.4.4=h6a678d5_1 13 | - libgcc-ng=11.2.0=h1234567_1 14 | - libgomp=11.2.0=h1234567_1 15 | - libstdcxx-ng=11.2.0=h1234567_1 16 | - ncurses=6.4=h6a678d5_0 17 | - openssl=3.0.15=h5eee18b_0 18 | - packaging=24.1=py39h06a4308_0 19 | - pip=24.2=py39h06a4308_0 20 | - pluggy=1.0.0=py39h06a4308_1 21 | - pytest=7.4.4=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tomli=2.0.1=py39h06a4308_0 28 | - tzdata=2024b=h04d1e81_0 29 | - wheel=0.44.0=py39h06a4308_0 30 | - xz=5.4.6=h5eee18b_1 31 | - zlib=1.2.13=h5eee18b_1 32 | - pip: 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/psf__requests/1921/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - exceptiongroup=1.2.0=py39h06a4308_0 10 | - iniconfig=1.1.1=pyhd3eb1b0_0 11 | - ld_impl_linux-64=2.40=h12ee557_0 12 | - libffi=3.4.4=h6a678d5_1 13 | - libgcc-ng=11.2.0=h1234567_1 14 | - libgomp=11.2.0=h1234567_1 15 | - libstdcxx-ng=11.2.0=h1234567_1 16 | - ncurses=6.4=h6a678d5_0 17 | - openssl=3.0.15=h5eee18b_0 18 | - packaging=24.1=py39h06a4308_0 19 | - pip=24.2=py39h06a4308_0 20 | - pluggy=1.0.0=py39h06a4308_1 21 | - pytest=7.4.4=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tomli=2.0.1=py39h06a4308_0 28 | - tzdata=2024b=h04d1e81_0 29 | - wheel=0.44.0=py39h06a4308_0 30 | - xz=5.4.6=h5eee18b_1 31 | - zlib=1.2.13=h5eee18b_1 32 | - pip: 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/psf__requests/2317/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - exceptiongroup=1.2.0=py39h06a4308_0 10 | - iniconfig=1.1.1=pyhd3eb1b0_0 11 | - ld_impl_linux-64=2.40=h12ee557_0 12 | - libffi=3.4.4=h6a678d5_1 13 | - libgcc-ng=11.2.0=h1234567_1 14 | - libgomp=11.2.0=h1234567_1 15 | - libstdcxx-ng=11.2.0=h1234567_1 16 | - ncurses=6.4=h6a678d5_0 17 | - openssl=3.0.15=h5eee18b_0 18 | - packaging=24.1=py39h06a4308_0 19 | - pip=24.2=py39h06a4308_0 20 | - pluggy=1.0.0=py39h06a4308_1 21 | - pytest=7.4.4=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tomli=2.0.1=py39h06a4308_0 28 | - tzdata=2024b=h04d1e81_0 29 | - wheel=0.44.0=py39h06a4308_0 30 | - xz=5.4.6=h5eee18b_1 31 | - zlib=1.2.13=h5eee18b_1 32 | - pip: 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/psf__requests/2931/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - exceptiongroup=1.2.0=py39h06a4308_0 10 | - iniconfig=1.1.1=pyhd3eb1b0_0 11 | - ld_impl_linux-64=2.40=h12ee557_0 12 | - libffi=3.4.4=h6a678d5_1 13 | - libgcc-ng=11.2.0=h1234567_1 14 | - libgomp=11.2.0=h1234567_1 15 | - libstdcxx-ng=11.2.0=h1234567_1 16 | - ncurses=6.4=h6a678d5_0 17 | - openssl=3.0.15=h5eee18b_0 18 | - packaging=24.1=py39h06a4308_0 19 | - pip=24.2=py39h06a4308_0 20 | - pluggy=1.0.0=py39h06a4308_1 21 | - pytest=7.4.4=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tomli=2.0.1=py39h06a4308_0 28 | - tzdata=2024b=h04d1e81_0 29 | - wheel=0.44.0=py39h06a4308_0 30 | - xz=5.4.6=h5eee18b_1 31 | - zlib=1.2.13=h5eee18b_1 32 | - pip: 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/psf__requests/5414/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - exceptiongroup=1.2.0=py39h06a4308_0 10 | - iniconfig=1.1.1=pyhd3eb1b0_0 11 | - ld_impl_linux-64=2.40=h12ee557_0 12 | - libffi=3.4.4=h6a678d5_1 13 | - libgcc-ng=11.2.0=h1234567_1 14 | - libgomp=11.2.0=h1234567_1 15 | - libstdcxx-ng=11.2.0=h1234567_1 16 | - ncurses=6.4=h6a678d5_0 17 | - openssl=3.0.15=h5eee18b_0 18 | - packaging=24.1=py39h06a4308_0 19 | - pip=24.2=py39h06a4308_0 20 | - pluggy=1.0.0=py39h06a4308_1 21 | - pytest=7.4.4=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tomli=2.0.1=py39h06a4308_0 28 | - tzdata=2024b=h04d1e81_0 29 | - wheel=0.44.0=py39h06a4308_0 30 | - xz=5.4.6=h5eee18b_1 31 | - zlib=1.2.13=h5eee18b_1 32 | - pip: 33 | - certifi==2024.8.30 34 | - charset-normalizer==2.0.12 35 | - idna==3.10 36 | - urllib3==1.26.20 37 | prefix: /opt/miniconda3/envs/testbed 38 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/psf__requests/6028/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - exceptiongroup=1.2.0=py39h06a4308_0 10 | - iniconfig=1.1.1=pyhd3eb1b0_0 11 | - ld_impl_linux-64=2.40=h12ee557_0 12 | - libffi=3.4.4=h6a678d5_1 13 | - libgcc-ng=11.2.0=h1234567_1 14 | - libgomp=11.2.0=h1234567_1 15 | - libstdcxx-ng=11.2.0=h1234567_1 16 | - ncurses=6.4=h6a678d5_0 17 | - openssl=3.0.15=h5eee18b_0 18 | - packaging=24.1=py39h06a4308_0 19 | - pip=24.2=py39h06a4308_0 20 | - pluggy=1.0.0=py39h06a4308_1 21 | - pytest=7.4.4=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tomli=2.0.1=py39h06a4308_0 28 | - tzdata=2024b=h04d1e81_0 29 | - wheel=0.44.0=py39h06a4308_0 30 | - xz=5.4.6=h5eee18b_1 31 | - zlib=1.2.13=h5eee18b_1 32 | - pip: 33 | - certifi==2024.8.30 34 | - charset-normalizer==2.0.12 35 | - idna==3.10 36 | - urllib3==1.26.20 37 | prefix: /opt/miniconda3/envs/testbed 38 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/10051/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - packaging==23.1 30 | - pluggy==0.13.1 31 | - py==1.11.0 32 | - tomli==2.0.1 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/10081/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - packaging==23.1 30 | - pluggy==0.13.1 31 | - py==1.11.0 32 | - tomli==2.0.1 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/10356/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - exceptiongroup==1.2.2 29 | - iniconfig==2.0.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - tomli==2.0.1 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/5262/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - sqlite=3.45.3=h5eee18b_0 20 | - tk=8.6.14=h39e8969_0 21 | - tzdata=2024b=h04d1e81_0 22 | - wheel=0.44.0=py39h06a4308_0 23 | - xz=5.4.6=h5eee18b_1 24 | - zlib=1.2.13=h5eee18b_1 25 | - pip: 26 | - atomicwrites==1.4.1 27 | - attrs==23.1.0 28 | - more-itertools==10.1.0 29 | - pluggy==0.11.0 30 | - py==1.11.0 31 | - setuptools==68.0.0 32 | - six==1.16.0 33 | - wcwidth==0.2.6 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/5631/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - atomicwrites==1.4.1 28 | - attrs==23.1.0 29 | - importlib-metadata==8.5.0 30 | - more-itertools==10.1.0 31 | - packaging==23.1 32 | - pluggy==0.13.1 33 | - py==1.11.0 34 | - wcwidth==0.2.6 35 | - zipp==3.20.2 36 | prefix: /opt/miniconda3/envs/testbed 37 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/5787/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - atomicwrites==1.4.1 28 | - attrs==23.1.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - wcwidth==0.2.6 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/5809/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - atomicwrites==1.4.1 28 | - attrs==23.1.0 29 | - importlib-metadata==8.5.0 30 | - more-itertools==10.1.0 31 | - packaging==23.1 32 | - pluggy==0.13.1 33 | - py==1.11.0 34 | - six==1.16.0 35 | - wcwidth==0.2.6 36 | - zipp==3.20.2 37 | prefix: /opt/miniconda3/envs/testbed 38 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/5840/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - atomicwrites==1.4.1 28 | - attrs==23.1.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - wcwidth==0.2.6 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/6197/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - atomicwrites==1.4.1 28 | - attrs==23.1.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - wcwidth==0.2.6 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/6202/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - atomicwrites==1.4.1 28 | - attrs==23.1.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - wcwidth==0.2.6 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/7205/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - more-itertools==10.1.0 29 | - packaging==23.1 30 | - pluggy==0.13.1 31 | - py==1.11.0 32 | - wcwidth==0.2.13 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/7236/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - more-itertools==10.1.0 29 | - packaging==23.1 30 | - pluggy==0.13.1 31 | - py==1.11.0 32 | - wcwidth==0.2.13 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/7324/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/7432/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - toml==0.10.2 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/7490/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - toml==0.10.2 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/7521/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - toml==0.10.2 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/7571/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - more-itertools==10.1.0 30 | - packaging==23.1 31 | - pluggy==0.13.1 32 | - py==1.11.0 33 | - toml==0.10.2 34 | prefix: /opt/miniconda3/envs/testbed 35 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/7982/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - packaging==23.1 30 | - pluggy==0.13.1 31 | - py==1.11.0 32 | - toml==0.10.2 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/pytest-dev__pytest/8399/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - attrs==23.1.0 28 | - iniconfig==2.0.0 29 | - packaging==23.1 30 | - pluggy==0.13.1 31 | - py==1.11.0 32 | - toml==0.10.2 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/8548/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.21.2 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/8551/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.21.2 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/8593/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.21.2 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/8595/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.21.2 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/8638/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.21.2 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/8721/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.21.2 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9229/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9230/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9258/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9281/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9320/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9367/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9461/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9591/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sphinx-doc__sphinx/9602/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - ld_impl_linux-64=2.40=h12ee557_0 10 | - libffi=3.4.4=h6a678d5_1 11 | - libgcc-ng=11.2.0=h1234567_1 12 | - libgomp=11.2.0=h1234567_1 13 | - libstdcxx-ng=11.2.0=h1234567_1 14 | - ncurses=6.4=h6a678d5_0 15 | - openssl=3.0.15=h5eee18b_0 16 | - pip=24.2=py39h06a4308_0 17 | - python=3.9.20=he870216_1 18 | - readline=8.2=h5eee18b_0 19 | - setuptools=75.1.0=py39h06a4308_0 20 | - sqlite=3.45.3=h5eee18b_0 21 | - tk=8.6.14=h39e8969_0 22 | - tzdata=2024b=h04d1e81_0 23 | - wheel=0.44.0=py39h06a4308_0 24 | - xz=5.4.6=h5eee18b_1 25 | - zlib=1.2.13=h5eee18b_1 26 | - pip: 27 | - alabaster==0.7.11 28 | - babel==2.16.0 29 | - cachetools==5.5.0 30 | - certifi==2024.8.30 31 | - chardet==5.2.0 32 | - charset-normalizer==3.4.0 33 | - colorama==0.4.6 34 | - coverage==7.6.4 35 | - cython==3.0.11 36 | - distlib==0.3.9 37 | - docutils==0.17.1 38 | - exceptiongroup==1.2.2 39 | - filelock==3.16.1 40 | - html5lib==1.1 41 | - idna==3.10 42 | - imagesize==1.4.1 43 | - iniconfig==2.0.0 44 | - jinja2==2.11.3 45 | - markupsafe==2.0.1 46 | - packaging==24.1 47 | - platformdirs==4.3.6 48 | - pluggy==1.5.0 49 | - pygments==2.18.0 50 | - pyproject-api==1.8.0 51 | - pytest==8.3.3 52 | - pytest-cov==5.0.0 53 | - requests==2.32.3 54 | - six==1.16.0 55 | - snowballstemmer==2.2.0 56 | - tomli==2.0.2 57 | - tox==4.16.0 58 | - tox-current-env==0.0.11 59 | - urllib3==2.2.3 60 | - virtualenv==20.26.6 61 | - webencodings==0.5.1 62 | prefix: /opt/miniconda3/envs/testbed 63 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/11618/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/12096/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/12419/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/12481/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/12489/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13031/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13091/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13372/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.11.26=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.21=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.16.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13480/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13551/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13615/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13647/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13757/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13798/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.11.26=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.21=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.16.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13852/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13877/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13878/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/13974/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.11.26=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.21=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.16.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/14248/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/14531/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/14711/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/14976/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/15017/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/15345/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/15349/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/15599/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/15809/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/15875/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/15976/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/16450/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.11.26=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.21=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.16.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/16597/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/16766/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/16792/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/16886/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/17139/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/17318/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/17630/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/17655/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/18189/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/18199/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/18211/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/18698/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/18763/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/19040/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/19346/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/19495/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.11.26=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.21=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.16.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/19637/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/19783/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/19954/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/20154/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/20428/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/20438/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/20590/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/20801/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/20916/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/21379/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/21596/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/21612/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/21847/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/21930/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/22080/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/22456/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/22714/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/22914/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/23262/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/23413/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/23534/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/23824/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/23950/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/24066/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/24213/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/24443/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/24539/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/24562/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/resources/swebench-og/sympy__sympy/24661/environment.yml: -------------------------------------------------------------------------------- 1 | name: testbed 2 | channels: 3 | - defaults 4 | - conda-forge 5 | dependencies: 6 | - _libgcc_mutex=0.1=main 7 | - _openmp_mutex=5.1=1_gnu 8 | - ca-certificates=2024.9.24=h06a4308_0 9 | - flake8=7.1.1=py39h06a4308_0 10 | - ld_impl_linux-64=2.40=h12ee557_0 11 | - libffi=3.4.4=h6a678d5_1 12 | - libgcc-ng=11.2.0=h1234567_1 13 | - libgomp=11.2.0=h1234567_1 14 | - libstdcxx-ng=11.2.0=h1234567_1 15 | - mccabe=0.7.0=pyhd3eb1b0_0 16 | - mpmath=1.3.0=py39h06a4308_0 17 | - ncurses=6.4=h6a678d5_0 18 | - openssl=3.0.15=h5eee18b_0 19 | - pip=24.2=py39h06a4308_0 20 | - pycodestyle=2.12.1=py39h06a4308_0 21 | - pyflakes=3.2.0=py39h06a4308_0 22 | - python=3.9.20=he870216_1 23 | - readline=8.2=h5eee18b_0 24 | - setuptools=75.1.0=py39h06a4308_0 25 | - sqlite=3.45.3=h5eee18b_0 26 | - tk=8.6.14=h39e8969_0 27 | - tzdata=2024b=h04d1e81_0 28 | - wheel=0.44.0=py39h06a4308_0 29 | - xz=5.4.6=h5eee18b_1 30 | - zlib=1.2.13=h5eee18b_1 31 | - pip: 32 | - flake8-comprehensions==3.15.0 33 | prefix: /opt/miniconda3/envs/testbed 34 | -------------------------------------------------------------------------------- /swebench/versioning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swe-bench/SWE-bench/5cd4be9fb23971679cbbafe5a0ecade27cef99be/swebench/versioning/__init__.py -------------------------------------------------------------------------------- /swebench/versioning/extract_web/get_versions_pydicom.py: -------------------------------------------------------------------------------- 1 | import datetime 2 | import json 3 | import requests 4 | import sys 5 | from bs4 import BeautifulSoup 6 | 7 | sys.path.append("../../harness") 8 | from utils import get_instances 9 | 10 | PATH_TASKS_PYDICOM = "" 11 | PATH_TASKS_PYDICOM_V = "" 12 | 13 | data_tasks = get_instances(PATH_TASKS_PYDICOM) 14 | resp = requests.get("https://pydicom.github.io/pydicom/dev/faq/index.html") 15 | soup = BeautifulSoup(resp.text, "html.parser") 16 | release_table = soup.find("table", {"class": "docutils align-default"}) 17 | 18 | times = [] 19 | for row in release_table.find_all("tr"): 20 | cells = row.find_all("td") 21 | if len(cells) == 3: 22 | version = cells[0].text.strip() 23 | date = cells[1].text.strip().strip("~") 24 | if date == "Jan 2024": 25 | date = "2024-01-01" 26 | else: 27 | date = datetime.strptime(date, "%B %Y").strftime("%Y-%m-%d") 28 | python_versions = max(cells[2].text.strip().split(", ")) 29 | times.append((date, version)) 30 | 31 | times = sorted(times, key=lambda x: x[0], reverse=True) 32 | for task in data_tasks: 33 | created_at = task["created_at"].split("T")[0] 34 | found = False 35 | for t in times: 36 | if t[0] < created_at: 37 | task["version"] = t[1] 38 | found = True 39 | break 40 | if not found: 41 | task["version"] = times[-1][1] 42 | 43 | with open(PATH_TASKS_PYDICOM_V, "w") as f: 44 | json.dump(data_tasks, fp=f) 45 | -------------------------------------------------------------------------------- /swebench/versioning/run_get_versions.sh: -------------------------------------------------------------------------------- 1 | # Example call for getting versions by building the repo locally 2 | python get_versions.py \ 3 | --path_tasks "" \ 4 | --retrieval_method build \ 5 | --conda_env "" \ 6 | --num_threads 10 \ 7 | --path_conda "" \ 8 | --testbed "" 9 | 10 | # Example call for getting versions from github web interface 11 | python get_versions.py \ 12 | --path_tasks "" \ 13 | --retrieval_method github \ 14 | --num_workers 25 \ 15 | --output_dir "" -------------------------------------------------------------------------------- /swebench/versioning/utils.py: -------------------------------------------------------------------------------- 1 | import json 2 | 3 | 4 | def get_instances(instance_path: str) -> list: 5 | """ 6 | Get task instances from given path 7 | 8 | Args: 9 | instance_path (str): Path to task instances 10 | Returns: 11 | task_instances (list): List of task instances 12 | """ 13 | if any([instance_path.endswith(x) for x in [".jsonl", ".jsonl.all"]]): 14 | task_instances = list() 15 | with open(instance_path) as f: 16 | for line in f.readlines(): 17 | task_instances.append(json.loads(line)) 18 | return task_instances 19 | 20 | with open(instance_path) as f: 21 | task_instances = json.load(f) 22 | return task_instances 23 | 24 | 25 | def split_instances(input_list: list, n: int) -> list: 26 | """ 27 | Split a list into n approximately equal length sublists 28 | 29 | Args: 30 | input_list (list): List to split 31 | n (int): Number of sublists to split into 32 | Returns: 33 | result (list): List of sublists 34 | """ 35 | avg_length = len(input_list) // n 36 | remainder = len(input_list) % n 37 | result, start = [], 0 38 | 39 | for i in range(n): 40 | length = avg_length + 1 if i < remainder else avg_length 41 | sublist = input_list[start : start + length] 42 | result.append(sublist) 43 | start += length 44 | 45 | return result 46 | -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- 1 | import subprocess 2 | 3 | 4 | def test_smoke_test(): 5 | cmd = ["python", "-m", "swebench.harness.run_evaluation", "--help"] 6 | result = subprocess.run(cmd, capture_output=True) 7 | print(result.stdout) 8 | print(result.stderr) 9 | assert result.returncode == 0 10 | 11 | 12 | def test_one_instance(): 13 | cmd = [ 14 | "python", 15 | "-m", 16 | "swebench.harness.run_evaluation", 17 | "--predictions_path", 18 | "gold", 19 | "--max_workers", 20 | "1", 21 | "--instance_ids", 22 | "sympy__sympy-20590", 23 | "--run_id", 24 | "validate-gold", 25 | ] 26 | result = subprocess.run(cmd, capture_output=True) 27 | print(result.stdout) 28 | print(result.stderr) 29 | assert result.returncode == 0 30 | -------------------------------------------------------------------------------- /tests/test_evaluation.py: -------------------------------------------------------------------------------- 1 | import collections 2 | import json 3 | import docker 4 | 5 | from swebench.harness.constants import ( 6 | FAIL_TO_PASS, 7 | PASS_TO_PASS, 8 | KEY_INSTANCE_ID, 9 | KEY_MODEL, 10 | ) 11 | from swebench.harness.run_evaluation import make_run_report 12 | 13 | TEST_INSTANCE = collections.defaultdict(lambda: "test") 14 | TEST_INSTANCE[PASS_TO_PASS] = "[]" 15 | TEST_INSTANCE["repo"] = "pvlib/pvlib-python" 16 | TEST_INSTANCE["version"] = "0.1" 17 | TEST_INSTANCE[FAIL_TO_PASS] = "[]" 18 | 19 | 20 | def test_make_run_report(tmpdir) -> None: 21 | client = docker.from_env() 22 | with tmpdir.as_cwd(): 23 | output_path = make_run_report( 24 | {"test": {KEY_INSTANCE_ID: "test", KEY_MODEL: "test"}}, 25 | [TEST_INSTANCE], 26 | "test", 27 | client, 28 | ) 29 | assert output_path.is_file() 30 | report = json.loads(output_path.read_text()) 31 | assert report["schema_version"] == 2 32 | --------------------------------------------------------------------------------