pr_id
int64
repo_id
null
repo_name
string
text
string
469
null
tobymao/sqlglot
# Repository Context Name: tobymao/sqlglot Description: # Pull Request ## Add Transact-SQL dialect (WIP) This is an attempt to add support for the transact sql dialect. Feedback is welcome. Plan to add more features soon. # Relevant Files Found ## sqlglot/dialects/__init__.py ``` from sqlglot.dialects.bigquery i...
81
null
bw2/ConfigArgParse
# Repository Context Name: bw2/ConfigArgParse Description: # Pull Request ## Fix config file args incorrectly matching to command line args Config file args were being incorrectly passed as strings in one of the checks and if a character of the string happened to match a single character of the command line the c...
39
null
openmethane/openmethane
# Repository Context Name: openmethane/openmethane Description: # Pull Request ## chore: Add tropomi processing scripts ## Description Adds a shell script for runnning tropomi ## Checklist Please confirm that this pull request has done the following: - [ ] Tests added - [ ] Documentation added (where a...
5
null
RenolY2/mkdd-track-editor
# Repository Context Name: RenolY2/mkdd-track-editor Description: # Pull Request ## Bouquet of fixes and improvements for the UI Most notable changes: - Proper handling of SuperBMD errors. - Geometry and state of the main window is now stored in the config. - Framing functionality (`F` key). - Camera controls v...
1,759
null
spotify/luigi
# Repository Context Name: spotify/luigi Description: # Pull Request ## Normalize ListParameter to be Immutable Prompted by PR #1719 ## Description ListParameter was not immutable. `Parameter`'s `normalize()` was overwritten by casting the list to a tuple. ## Motivation and Context Parameters need to be immutabl...
31
null
LeidelLab/SMITER
# Repository Context Name: LeidelLab/SMITER Description: # Pull Request ## require python >=3.7 # Relevant Files Found ## setup.py ``` #!/usr/bin/env python """The setup script.""" from setuptools import find_packages, setup with open("README.rst") as readme_file: readme = readme_file.read() with open("...
301
null
IBM/ibm-block-csi-driver
# Repository Context Name: IBM/ibm-block-csi-driver Description: # Pull Request ## CSI-1516 align illegal obejct id error gaps https://github.com/container-storage-interface/spec/blob/v1.4.0/spec.md#error-scheme > INVALID_ARGUMENT - Indicates ... an invalid value. # Relevant Files Found ## controller/array_act...
178
null
kz26/PyExcelerate
# Repository Context Name: kz26/PyExcelerate Description: # Pull Request ## fix: add force_zip64=True and some debugging # Relevant Files Found ## pyexcelerate/Writer.py ``` import os import sys import tempfile from zipfile import ZipFile, ZIP_DEFLATED from datetime import datetime import time from jinja2 impor...
6,646
null
indico/indico
# Repository Context Name: indico/indico Description: # Pull Request ## Update Python deps - removed the usage of OrderedMultiDict (deprecated); this should be fine since dicts are ordered anyway nowadays, and even the weird case in the paypal plugin (where the args have to sent back for verification in the same or...
103
null
joblib/threadpoolctl
# Repository Context Name: joblib/threadpoolctl Description: # Pull Request ## TST Add a test for openblas threading layer follow up of this comment https://github.com/joblib/threadpoolctl/pull/93#issuecomment-926588659 We can't test the real threading_layer because it would imply to introspect the conda env, bu...
199
null
open-traffic-generator/openapiart
# Repository Context Name: open-traffic-generator/openapiart Description: # Pull Request ## Fix setter to create a copy ### Issue The object setter function was incorrectly using pointer assignment as opposed to using SetMsg() and Msg(). ### Fix Use SetMsg() and Msg() ### Validation go linter does not comp...
69
null
AlgoETS/BullETS
# Repository Context Name: AlgoETS/BullETS Description: # Pull Request ## On finish bug # Relevant Files Found ## setup.py ``` from setuptools import setup, find_packages requirements = [] with open('requirements.txt') as f: requirements = f.read().splitlines() readme = '' with open('README.md') as f: ...
2,550
null
mozilla/kitsune
# Repository Context Name: mozilla/kitsune Description: # Pull Request ## Move static files into app namespaces. We are starting to add more and more JS. I think it is a good idea to add app-specific JS in the app directories, to keep everything organized and easy to find. These app-specific static directories all ...
276
null
saltstack/salt-ext-modules-vmware
# Repository Context Name: saltstack/salt-ext-modules-vmware Description: # Pull Request ## [DOCS] Fix indentation on vmware_datacenter examples - Fix indentation on vmware_datacenter examples # Relevant Files Found ## src/saltext/vmware/states/datacenter.py ``` # Copyright 2021 VMware, Inc. # SPDX-License-Ident...
2,081
null
langchain-ai/langsmith-sdk
# Repository Context Name: langchain-ai/langsmith-sdk Description: # Pull Request ## fix(python): Fix CI by bumping deps # Relevant Files Found ## python/langsmith/client.py ``` """Client for interacting with the LangSmith API. Use the client to customize API keys / workspace connections, SSL certs, etc. for t...
85
null
MerginMaps/python-api-client
# Repository Context Name: MerginMaps/python-api-client Description: # Pull Request ## Raise URLError with a sensible message This is also for https://github.com/lutraconsulting/qgis-mergin-plugin/issues/229 # Relevant Files Found ## mergin/client.py ``` import os import json import zlib import base64 import url...
1,821
null
nltk/nltk
# Repository Context Name: nltk/nltk Description: # Pull Request ## framenet.py: citation; fix typo in method documentation # Relevant Files Found ## nltk/corpus/reader/framenet.py ``` # Natural Language Toolkit: Framenet Corpus Reader # # Copyright (C) 2001-2017 NLTK Project # Authors: Chuck Wooters <wooters@i...
18
null
scrtlabs/secret-sdk-python
# Repository Context Name: scrtlabs/secret-sdk-python Description: # Pull Request ## Add bank module method calls Added following methods: 1. /cosmos/bank/v1beta1/supply 2. /cosmos/bank/v1beta1/supply/{denom} 3. /cosmos/bank/v1beta1/spendable_balances/{address} Added integration test `staking_apr.py` which ...
844
null
caktus/django-timepiece
# Repository Context Name: caktus/django-timepiece Description: # Pull Request ## [TM-795] Hourly CSV Project Summary Reports Fixes #795 - Export Project Summary Report Broken - Adjusted form buttons to conform to the UX; there is now an **Export [Type] Summary** button for each section # Relevant Files Found #...
260
null
pollen-robotics/reachy2-sdk
# Repository Context Name: pollen-robotics/reachy2-sdk Description: # Pull Request ## enhancement #259: adding ci for building whl and pushing to pip # Relevant Files Found ## src/reachy2_sdk/__init__.py ``` """ # ReachySDK package. This package provides remote access (via socket) to a Reachy robot. It automat...
51
null
labjack/LabJackPython
# Repository Context Name: labjack/LabJackPython Description: # Pull Request ## Fix concatenation of range and list for Python 3 On Python 2, `range()` returns a `list`. On Python 3, `range()` returns a `range`. A `range` can't be concatenated to a `list`. Convert it to a `list` so this code works on Python 2 an...
62
null
NCAR/mom6-tools
# Repository Context Name: NCAR/mom6-tools Description: # Pull Request ## Expand region selection and print volume in plots - Extend the selected region from (-180, -120) to (-180, -70). - Print the computed volume when plotting model data for better diagnostics. # Relevant Files Found ## mom6_tools/aaiw_pv.py ...
63
null
cevoaustralia/aws-google-auth
# Repository Context Name: cevoaustralia/aws-google-auth Description: # Pull Request ## Collect all the smaller tests Collecting all of the smaller pull request branches to ensure that they work together pre merge. # Relevant Files Found ## aws_google_auth/__init__.py ``` #!/usr/bin/env python from . import _ve...
52
null
python-diamond/Diamond
# Repository Context Name: python-diamond/Diamond Description: # Pull Request ## Add num_fds and uptime to ProcessResourcesCollector # Relevant Files Found ## src/collectors/processresources/processresources.py ``` # coding=utf-8 """ A Diamond collector that collects memory usage of each process defined in it'...
275
null
bee-san/Ciphey
# Repository Context Name: bee-san/Ciphey Description: # Pull Request ## fix old green bug title # Relevant Files Found ## ciphey/ciphey.py ``` """ ██████╗██╗██████╗ ██╗ ██╗███████╗██╗ ██╗ ██╔════╝██║██╔══██╗██║ ██║██╔════╝╚██╗ ██╔╝ ██║ ██║██████╔╝███████║█████╗ ╚████╔╝ ██║ ██║██╔═══╝ ██╔══██║█...
1,078
null
spacetx/starfish
# Repository Context Name: spacetx/starfish Description: # Pull Request ## Remove unneeded expression matrix code - `IntensityTable.to_expression_matrix` takes an optional regions parameter that is produced by code that has been deleted from starfish. # Relevant Files Found ## notebooks/py/ISS_Pipeline_-_Breast_...
257
null
CQCL/tierkreis
# Repository Context Name: CQCL/tierkreis Description: # Pull Request ## feat: ndarray and custom serialization # Relevant Files Found ## tierkreis/tierkreis/codegen.py ``` from inspect import isclass from pydantic import BaseModel from tierkreis.controller.data.types import DictConvertible, ListConvertible, _i...
46
null
imayushsaini/Bombsquad-Ballistica-Modded-Server
# Repository Context Name: imayushsaini/Bombsquad-Ballistica-Modded-Server Description: # Pull Request ## Patch 1 # Relevant Files Found ## dist/ba_data/python/ba/_hooks.py ``` # Released under the MIT License. See LICENSE for details. # """Snippets of code for use by the internal C++ layer. History: originall...
6,505
null
yt-dlp/yt-dlp
# Repository Context Name: yt-dlp/yt-dlp Description: # Pull Request ## [bibeltv] new implementation **IMPORTANT**: PRs without the template will be CLOSED ### Description of your *pull request* and other information <!-- Explanation of your *pull request* in arbitrary form goes here. Please **make sure th...
721
null
androguard/androguard
# Repository Context Name: androguard/androguard Description: # Pull Request ## Two issue in get_intent_filters in apk.py #720 I checked it twice and I request PR now. # Relevant Files Found ## androguard/core/bytecodes/apk.py ``` from androguard.core import androconf from androguard.util import read, get_certif...
1,575
null
neptune-ai/neptune-client
# Repository Context Name: neptune-ai/neptune-client Description: # Pull Request ## Do not create monitoring namespace if all relevant flags are set to False ## Before submitting checklist - [x] Did you **update the CHANGELOG**? (not for test updates, internal changes/refactors or CI/CD setup) - [ ] Did you **a...
64
null
awslabs/aws-config-rdk
# Repository Context Name: awslabs/aws-config-rdk Description: # Pull Request ## Sample ci error handling Handles errors in create and modify as well as the sample-ci command. Also throws a _different_ error if the CI requested in sample-ci is valid from an AWS Config perspective but the RDK does not have a sample...
3,993
null
iterative/dvc
# Repository Context Name: iterative/dvc Description: # Pull Request ## stage: don't consider stage as cached if checksum/cmd changed * [x] ❗ I have followed the [Contributing to DVC](https://dvc.org/doc/user-guide/contributing/core) checklist. * [x] 📖 If this PR requires [documentation](https://dvc.org/doc) up...
492
null
TomerFi/aioswitcher
# Repository Context Name: TomerFi/aioswitcher Description: # Pull Request ## Handle special swing # Pull Request > First PR? don't hesitate, push it. ## Description > Describe what you did and why. **Related issue (if any):** fixes #*issue_number_goes_here* ## Checklist - [x] I have followed this...
7,786
null
PennyLaneAI/pennylane
# Repository Context Name: PennyLaneAI/pennylane Description: # Pull Request ## Add `ResourceOperator` support for various Matrix Ops with optimal resources **Context:** Adding and upgrading the resources of key templates with state of the art resource estimates. **Description of the Change:** - Added resource...
4
null
Eittipat/pyrtmp
# Repository Context Name: Eittipat/pyrtmp Description: # Pull Request ## Fix error on Python 3.11 Due to a change in the Enum specification in Python 3.11, the following code will cause an error: ```py from enum import Enum # pyrtmp/amf/types.py class AMF0(int, Enum): NUMBER = 0x00 BOOLEAN = 0x01...
2,907
null
openvinotoolkit/open_model_zoo
# Repository Context Name: openvinotoolkit/open_model_zoo Description: # Pull Request ## add cpp noise_suppression_demo for master cpp demo to run noise suppression for master # Relevant Files Found ## demos/noise_suppression_demo/python/noise_suppression_demo.py ``` #!/usr/bin/env python3 """ Copyright (c) 20...
7
null
ufkapano/graphtheory
# Repository Context Name: ufkapano/graphtheory Description: # Pull Request ## Update dijkstra.py refactored to remove continue statement # Relevant Files Found ## graphtheory/shortestpaths/dijkstra.py ``` #!/usr/bin/python try: from Queue import PriorityQueue except ImportError: # Python 3 from queue...
124
null
BibleNLP/assistant.bible
# Repository Context Name: BibleNLP/assistant.bible Description: # Pull Request ## Develop new # Relevant Files Found ## app/core/llm_framework/openai_vanilla.py ``` """Implemetations for lmm_framework interface using vanilla""" import os from typing import List, Tuple import openai from core.llm_framework im...
263
null
SectorLabs/django-postgres-extra
# Repository Context Name: SectorLabs/django-postgres-extra Description: # Pull Request ## Make multi-day partitions deterministic and aligned fixes #262 # Relevant Files Found ## psqlextra/partitioning/time_partition_size.py ``` import enum from datetime import date, datetime from typing import Optional, Unio...
4
null
crowd4u/crowd4py
# Repository Context Name: crowd4u/crowd4py Description: # Pull Request ## タスク結果取得のメソッドを修正した 以下のことをした - メソッド名の変更 get_relation➡get_relation_data - 返り値が扱いやすいよう,中身を取り出して値を返すようにした - コマンドラインからも扱いやすくなるよう,staticなメソッドも用意した # Relevant Files Found ## crowd4py/api.py ``` # -*- coding: utf-8 -*- import requests from . ...
13
null
NVIDIA/gbm-bench
# Repository Context Name: NVIDIA/gbm-bench Description: # Pull Request ## Added sklearn gbdt class support Adding suport from sklearn. Classes include: - GradientBoostingClassifier - HistGradientBoostingClassifier - RandomForestClassifier - GradientBoostingRegressor - HistGradientBoostingRegressor -Random...
187
null
nismod/infra-risk-vis
# Repository Context Name: nismod/infra-risk-vis Description: # Pull Request ## Add dynamic adaptation properties prototype Just creating this as a WIP pull request so we can discuss here. # Relevant Files Found ## containers/backend/backend/app/internal/attribute_access.py ``` from dataclasses import dataclass ...
53,875
null
home-assistant/core
# Repository Context Name: home-assistant/core Description: # Pull Request ## Fix issue when data is None <!-- You are amazing! Thanks for contributing to our project! Please, DO NOT DELETE ANY TEXT from this template! (unless instructed). --> ## Breaking change <!-- If your PR contains a breaking chang...
937
null
AgentOps-AI/agentops
# Repository Context Name: AgentOps-AI/agentops Description: # Pull Request ## Removed import break ## 📥 Pull Request **📘 Description** Import from Agents SDK that didn't belong was causing breakages. Pushing hot fix. # Relevant Files Found ## agentops/logging/instrument_logging.py ``` import builtins impo...
160
null
mtlynch/resticpy
# Repository Context Name: mtlynch/resticpy Description: # Pull Request ## Support exclude flag for restore command Add the `--exclude` parameter to the restore command. Resolves: #159 # Relevant Files Found ## restic/internal/restore.py ``` from restic.internal import command_executor def run(restic_base_c...
567
null
pokepetter/ursina
# Repository Context Name: pokepetter/ursina Description: # Pull Request ## Fix camera movement with optical mouse on MacOS Tested on MacOS ventura (13.5) and openSUSE Tumbleweed (20230812) Trackpad is still not working after this change. # Relevant Files Found ## ursina/mouse.py ``` import sys import time im...
4,419
null
mozilla/kitsune
# Repository Context Name: mozilla/kitsune Description: # Pull Request ## Show only approved. # Relevant Files Found ## kitsune/wiki/utils.py ``` import random import requests from django.conf import settings from django.contrib.auth.models import User from django.db.models import Q, Prefetch from django.utils...
8,797
null
huggingface/transformers
# Repository Context Name: huggingface/transformers Description: # Pull Request ## Minor docs typo fixes # What does this PR do? Just a few typo fixes in the docs. ## Before submitting - [x] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case). ## Who can review? ...
1,574
null
ai2cm/fv3net
# Repository Context Name: ai2cm/fv3net Description: # Pull Request ## prognostic run: prescribe land sea mask Requires its own if statement to do rounding just in case the reference data has a non integer value, and also uses nearest neighbor instead of linear interpolation. # Relevant Files Found ## workflows/p...
139
null
conan-io/conan-extensions
# Repository Context Name: conan-io/conan-extensions Description: # Pull Request ## add indent and remove typing - Adding indent to help readability of output files - Removing typing, as we intend to move ``from conans`` imports, and I wouldn't like to break this when it happens. cc @hedtke Coming from http...
2,724
null
aws/aws-sdk-pandas
# Repository Context Name: aws/aws-sdk-pandas Description: # Pull Request ## test: Add queuing for Neptune bulk load tests ### Detail - Add queuing for Neptune bulk load tests. This is to prevent the transient test error where a bulk load job tries to start while another one is active. By submitting this pull r...
66
null
guysalt/python-inquirer3
# Repository Context Name: guysalt/python-inquirer3 Description: # Pull Request ## test_list: fix `test_out_of_bounds_down` # Relevant Files Found ## tests/acceptance/test_list.py ``` import sys import unittest from typing import Union import pexpect from readchar import key from tests.acceptance.utils import...
15
null
monkeyman192/NMS.py
# Repository Context Name: monkeyman192/NMS.py Description: # Pull Request ## Updated to pymhf 0.1.15 and added some extra functions and example mod Removed the docs as well for now since they were not really relevant. These were the rubbish old pyMHF docs. Will need to write new docs for this but for now will just...
8
null
Nixtla/mlforecast
# Repository Context Name: Nixtla/mlforecast Description: # Pull Request ## raise error when y column has null values Closes #7 # Relevant Files Found ## mlforecast/core.py ``` # AUTOGENERATED! DO NOT EDIT! File to edit: nbs/core.ipynb (unless otherwise specified). __all__ = ['simple_predict', 'TimeSeries'] #...
175
null
cihai/cihai-cli
# Repository Context Name: cihai/cihai-cli Description: # Pull Request ## Remove releases-specific ReST See also: # Relevant Files Found ## cihai_cli/__about__.py ``` __title__ = 'cihai-cli' __package_name__ = 'cihai_cli' __version__ = '0.5.0a3' __description__ = 'Command line frontend for the cihai CJK language...
721
null
NASA-IMPACT/nasa-apt
# Repository Context Name: NASA-IMPACT/nasa-apt Description: # Pull Request ## Feature/Re-build index ## Issues - https://github.com/NASA-IMPACT/nasa-apt/issues/718 # Relevant Files Found ## app/api/v2/atbds.py ``` """ATBDs endpoint.""" import datetime from copy import deepcopy from typing import List from sql...
7,911
null
scipy/scipy
# Repository Context Name: scipy/scipy Description: # Pull Request ## MAINT: Avoid unnecessary array copies in xdist Striding problems are already dealt with by the call to np.ascontinguousarray in _convert_to_type. This avoids making unnecessary copies if X, etc. are contiguous views. # Relevant Files Found ## s...
426
null
seek-oss/aec
# Repository Context Name: seek-oss/aec Description: # Pull Request ## fix: TypeError: logs() got an unexpected keyword argument 'name' fixes: ``` ❯ aec ec2 logs my-instance Traceback (most recent call last): File "/Users/oliver.mannion/code/aec/.venv/bin/aec", line 8, in <module> sys.exit(main()) Fil...
2,734
null
Open-MSS/MSS
# Repository Context Name: Open-MSS/MSS Description: # Pull Request ## removed retriever.py **Purpose of PR?**: Fixes #2732 The sample is not compatible with the current version. This likly needs an MSS before v9. The recent version to be used is mssautoplot. # Relevant Files Found ## docs/samples/aut...
122
null
ndev-kit/napari-ndev
# Repository Context Name: ndev-kit/napari-ndev Description: # Pull Request ## Add wrapping to image overview for only one image set Updates for #112 - adds wrapping for single dicts of images, with greater than 3 images. aims for a 'square' aspect ratio, biasing towards a longer width than height. will turn off ...
187
null
pixeltable/pixeltable
# Repository Context Name: pixeltable/pixeltable Description: # Pull Request ## WhisperX Support # Relevant Files Found ## pixeltable/env.py ``` from __future__ import annotations import datetime import glob import http.server import importlib import importlib.util import logging import os import sys import th...
25
null
aryn-ai/sycamore
# Repository Context Name: aryn-ai/sycamore Description: # Pull Request ## Refactor entity extraction # Relevant Files Found ## sycamore/docset.py ``` import logging from typing import Callable, Optional, Union from sycamore import Context from sycamore.data import Document, Element from sycamore.execution.tra...
54
null
AVSLab/bsk_rl
# Repository Context Name: AVSLab/bsk_rl Description: # Pull Request ## Issue #53: Fix image retasking and window generation ## Description Closes Issue #53 1. Fixes a bug where a trajectory interpolator dt worth of windows would not be calculated due to floating point error that causes an equality condition t...
2,120
null
PaddlePaddle/models
# Repository Context Name: PaddlePaddle/models Description: # Pull Request ## Add dygraph tranformer # Relevant Files Found # Edits This pull request adds a dynamic graph (dygraph) implementation of the Transformer model to the PaddlePaddle Models repository, enabling easier training and research experimentat...
5,828
null
SciTools/iris
# Repository Context Name: SciTools/iris Description: # Pull Request ## pytest migration for unit.common.lenient.test__Lenient ## 🚀 Pull Request ### Description <!-- Provide a clear description about your awesome pull request --> <!-- Tell us all about your new feature, improvement, or bug fix --> --- [...
2,843
null
urllib3/urllib3
# Repository Context Name: urllib3/urllib3 Description: # Pull Request ## Stop retrying tests with flaky # Relevant Files Found ## noxfile.py ``` from __future__ import annotations import os import shutil import subprocess import sys import nox SOURCE_FILES = [ "docs/", "dummyserver/", "src/", ...
11,811
null
wagtail/wagtail
# Repository Context Name: wagtail/wagtail Description: # Pull Request ## Document use of SECRET_KEY to obscure Wagtail version Whilst ideally we wouldn't use the secret key, it's the best way to ensure the value doesn't expose the wagtail version, whilst still being deployment-specific. _Please describe the pro...
22
null
vacanza/holidays
# Repository Context Name: vacanza/holidays Description: # Pull Request ## adding UK holidays and enforcing UTC timestamp # Relevant Files Found ## holidays.py ``` # -*- coding: utf-8 -*- # holidays.py # ----------- # A fast, efficient Python library for generating country, province and state # specific se...
228
null
usharesoft/hammr
# Repository Context Name: usharesoft/hammr Description: # Pull Request ## datastore is mandatory for Vcenter publish image # Relevant Files Found ## hammr/utils/publish_utils.py ``` # Copyright 2007-2015 UShareSoft SAS, All rights reserved # # # Licensed under the Apache License, Version 2.0 (the "License")...
1,349
null
GoogleCloudPlatform/ramble
# Repository Context Name: GoogleCloudPlatform/ramble Description: # Pull Request ## Capture some binary info around gromacs This is useful for getting information such as: * Whether the internal thread MPI, or an external MPI lib is used * When running with GPU support, which FFT library is used # Relevant Fi...
339
null
EleutherAI/gpt-neox
# Repository Context Name: EleutherAI/gpt-neox Description: # Pull Request ## Add GMLP You'll need to update to the latest version of deepspeed (specified in requirements.txt) # Relevant Files Found ## megatron/model/gpt2_model.py ``` # coding=utf-8 # # Copyright 2021 Biderman et al. This file is based on code b...
1,069
null
interactions-py/interactions.py
# Repository Context Name: interactions-py/interactions.py Description: # Pull Request ## Fix force http for lists ## About This pull request is about fixing get() for list when forcing http ## Checklist - [ ] I've ran `pre-commit` to format and lint the change(s) made. - [x] I've checked to make sure the...
339
null
thegetty/lod-gateway
# Repository Context Name: thegetty/lod-gateway Description: # Pull Request ## Local thesaurus dev 9146 Changed LT URL to env variable Modified the format of the output JSON # Relevant Files Found ## source/web-service/flaskapp/__init__.py ``` import logging import logging.config from os import environ, getenv ...
803
null
bcgov/sbc-pay
# Repository Context Name: bcgov/sbc-pay Description: # Pull Request ## Feature/9550 backend integration changes *Issue #:* https://github.com/bcgov/entity/issues/9550 *Description of changes:* - Mapping submitterName column to a UI submitterDisplayName column using Marshmallow mapper - Check two schemas t...
10,985
null
NVIDIA-NeMo/NeMo
# Repository Context Name: NVIDIA-NeMo/NeMo Description: # Pull Request ## gpt3 175b cli # What does this PR do ? Add a one line overview of what this PR aims to accomplish. **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high level changes in t...
287
null
github/issue-metrics
# Repository Context Name: github/issue-metrics Description: # Pull Request ## fix: Negative time duration for labels applied after issue close; Inflated metric numbers for unlabeled labels on open issues # Pull Request I came across two additional issues in label time durations: 1. Negative time durations me...
2,004
null
cartography-cncf/cartography
# Repository Context Name: cartography-cncf/cartography Description: # Pull Request ## fix(ci): update scaleway User and Server test calls Fixes #2003 by updating the test code with the missing params that are mandatory as of scaleway 2.10.x Also see https://github.com/scaleway/scaleway-sdk-python/issues/1309 #...
50
null
larribas/dagger
# Repository Context Name: larribas/dagger Description: # Pull Request ## fix link to the documentation <!-- Thanks for sending a pull request! Please fill in the following template --> #### What this PR does / why do we need it: fix link to the documentation #### Release Notes <!-- Write a release no...
68
null
NYCPlanning/data-engineering
# Repository Context Name: NYCPlanning/data-engineering Description: # Pull Request ## db-checkbook dataloading functions from DO for Checkbook NYC and CPDB Added two new functions to dataloading for getting data from Digital Ocean (one for CPDB files + one for Checkbook), adding @athursland # Relevant Files Foun...
26
null
betagouv/django-magicauth
# Repository Context Name: betagouv/django-magicauth Description: # Pull Request ## Tests for wait page # Relevant Files Found ## magicauth/views.py ``` from datetime import timedelta import logging import urllib.parse from django.contrib import messages from django.contrib.auth import login from django.http i...
2,459
null
pygments/pygments
# Repository Context Name: pygments/pygments Description: # Pull Request ## update to NestedText v3 This change update pygments support for NestedText from version 1.0 to version 3.0. # Relevant Files Found ## pygments/lexers/configs.py ``` """ pygments.lexers.configs ~~~~~~~~~~~~~~~~~~~~~~~ Lexers ...
21
null
Idein/actcast-app-examples
# Repository Context Name: Idein/actcast-app-examples Description: # Pull Request ## bullseye-i2c-sensor https://raspberry-pi.ksyic.com/main/index/pdp.id/856,847,835,836/pdp.open/856 で動作確認済み # Relevant Files Found ## i2c-sensor/app/sensor/Omron2smpd02e.py ``` #!/usr/bin/python import smbus2 # require pip instal...
1
null
qburst/apache-config-generator
# Repository Context Name: qburst/apache-config-generator Description: # Pull Request ## Apache https support # Relevant Files Found ## server_config_generator/coloured_sys_out.py ``` import sys class ColouredSysOut(object): """ Class for make the sys out colorful """ ANSI_COLOR_START = { ...
3,105
null
aws/serverless-application-model
# Repository Context Name: aws/serverless-application-model Description: # Pull Request ## chore: Enable termination protection for companion stacks ### Issue #, if available ### Description of changes Enable termination protection on companion stacks ### Description of how you validated changes Integ tests...
287
null
FederatedAI/FATE-Flow
# Repository Context Name: FederatedAI/FATE-Flow Description: # Pull Request ## fix component output data meta bug Signed-off-by: zhihuiwan <15779896112@163.com> # Relevant Files Found ## python/fate_flow/component_env_utils/feature_utils.py ``` # # Copyright 2019 The FATE Authors. All Rights Reserved. # # Lic...
1,459
null
chatchat-space/Langchain-Chatchat
# Repository Context Name: chatchat-space/Langchain-Chatchat Description: # Pull Request ## api和webui知识库操作支持chunk_size/overlap_size/zh_title_enhance参数 # Relevant Files Found ## server/knowledge_base/kb_doc_api.py ``` import os import urllib from fastapi import File, Form, Body, Query, UploadFile from configs.mo...
2,979
null
Azure/WALinuxAgent
# Repository Context Name: Azure/WALinuxAgent Description: # Pull Request ## fix(ubuntu): Point to correct dhcp lease files <!-- DO NOT DELETE THIS TEMPLATE --> ## Description From Ubuntu 18.04, the default dhcp client was systemd-networkd. However, WALA has been checking for the dhclient lease files. Thi...
57
null
androguard/androguard
# Repository Context Name: androguard/androguard Description: # Pull Request ## fix a zipmodule wrong in androrisk.py use zipmodule=2 in androrisk.py,fix the error: File "/usr/lib/python2.7/zipfile.py", line 373, in _decodeExtra tp, ln = unpack('<HH', extra[:4]) struct.error: unpack requires a string argumen...
898
null
ShishirPatil/gorilla
# Repository Context Name: ShishirPatil/gorilla Description: # Pull Request ## [BFCL] Add New Model `o3-mini-2025-01-31` and `o3-mini-2025-01-31-FC` Add the following new models to the leaderboard: - `o3-mini-2025-01-31-FC` - `o3-mini-2025-01-31` # Relevant Files Found ## berkeley-function-call-leaderboard/...
186
null
NREL/floris
# Repository Context Name: NREL/floris Description: # Pull Request ## Adds __init__ file to Optimization package **Complete this sentence** THIS PULL REQUEST __IS__ READY TO MERGE **Feature or improvement description** Added init file to floris/tools/optimization/other **Related issue, if one exists** None...
837
null
apple/coremltools
# Repository Context Name: apple/coremltools Description: # Pull Request ## Update ops.py to Fix #823 As discussed in issue #823, this should fix #823 and is based on #759. These 4 lines were seemingly dropped in the beta2 merge. Also added a .any() in L1532. There is a testcase to check in #823 to verify tha...
387
null
pyocd/pyOCD
# Repository Context Name: pyocd/pyOCD Description: # Pull Request ## Changes to CC3220SF to make the reset work properly # Relevant Files Found ## pyOCD/target/target_CC3220SF.py ``` """ mbed CMSIS-DAP debugger Copyright (c) 2006-2013 ARM Limited Licensed under the Apache License, Version 2.0 (the "License...
34
null
akanyaani/gpt-2-tensorflow2.0
# Repository Context Name: akanyaani/gpt-2-tensorflow2.0 Description: # Pull Request ## Update pre_process.py Use the UTF-8 encoding for file manipulation. To avoid "UnicodeDecodeError: 'charmap' codec can't decode ..." on windows machines # Relevant Files Found ## pre_process.py ``` import csv import datetime ...
350
null
Quansight/ragna
# Repository Context Name: Quansight/ragna Description: # Pull Request ## improve error handling for builtin assistants I spend almost an hour today trying to find a bug that wasn't there, because we didn't raise a proper error when our API call failed. # Relevant Files Found ## ragna/assistants/_ai21labs.py ```...
15
null
ansys/pyrocky
# Repository Context Name: ansys/pyrocky Description: # Pull Request ## Fix API objects that are lists not exposing Python sequence interface ROCKY-20847 # Relevant Files Found ## examples/basic_examples/particle_wall_interaction.py ``` """.. _ref_particle_wall_interaction: Particle simulation with wall interac...
338
null
masschallenge/impact-api
# Repository Context Name: masschallenge/impact-api Description: # Pull Request ## [AC-7200] Fix tests failing on impact-api after recent changes to use Locations **Changes Introduced in [AC-7200](https://masschallenge.atlassian.net/browse/AC-7200):** - Fixed breaking tests **Test:** - Passing tests are suff...
123
null
sunscrapers/djoser
# Repository Context Name: sunscrapers/djoser Description: # Pull Request ## Django 1.9 compatibility Improve TOX configuration. Now, dependencies are specified by a version range. Rather than a version specified by a patch revision. We don't need to commit anything when new patch revision becomes available. To our...
13
null
gravitational/aws-quota-checker
# Repository Context Name: gravitational/aws-quota-checker Description: # Pull Request ## Exceptions logging and retries for service quota calls ### Summary Log unexpected exceptions, by adding logging found that calls are being actively throttled by Service Quota. Adding [AWS SDK built-in retries](https://docs...
27
null
moritzgloeckl/overleaf-sync
# Repository Context Name: moritzgloeckl/overleaf-sync Description: # Pull Request ## Fixed login issue There's a new `GCLB` cookie which replaces the `gke-route` cookie. This PR adapts for these changes, version has been bumped to `1.1.4` # Relevant Files Found ## olsync/__init__.py ``` """Overleaf Two-Way Sync...