pr_id int64 | repo_id null | repo_name string | text string |
|---|---|---|---|
1,817 | null | PrefectHQ/prefect | # Repository Context
Name: PrefectHQ/prefect
Description:
# Pull Request
## Add auto-labeling of flow environments based on storage type
I went with using a property to do it so I didn't have to have a long `if / else` flow inside the flow code.
# Relevant Files Found
## setup.py
```
import sys
from setuptools ... |
6 | null | mindflayer/togo | # Repository Context
Name: mindflayer/togo
Description:
# Pull Request
## Add GitHub Action for packaging
# Relevant Files Found
## setup.py
```
import os
import urllib.request
from urllib.parse import urlparse
from setuptools import setup, Extension
from Cython.Build import cythonize
TG_SOURCE_URL = "https:/... |
54 | null | AtMoDat/atmodat_data_checker | # Repository Context
Name: AtMoDat/atmodat_data_checker
Description:
# Pull Request
## Avoid checking for the Conventions attribute twice and fixing some typos
Avoid checking for the Conventions attribute twice and fixing some typos
# Relevant Files Found
## atmodat_checklib/register/nc_file_checks_atmodat_regist... |
837 | null | nilearn/nilearn | # Repository Context
Name: nilearn/nilearn
Description:
# Pull Request
## Update _fetch_file* docstring.
`_fetch_file` and `_fetch_files` claim that `data_dir` is optional (it is not) and that it can be `None` (it cannot be). Fix here is to change the docstrings.
It's worth noting that parameter order in the two f... |
38 | null | agno-agi/agno | # Repository Context
Name: agno-agi/agno
Description:
# Pull Request
## Add Qdrant Vector Db
# Relevant Files Found
## phi/docker/app/qdrant/qdrant.py
```
from phi.docker.app.base import DockerApp, WorkspaceVolumeType, ContainerContext # noqa: F401
class Qdrant(DockerApp):
# -*- App Name
name: str = ... |
1,137 | null | run-house/kubetorch | # Repository Context
Name: run-house/kubetorch
Description:
# Pull Request
## Move `StreamTee` into `utils`.
# Relevant Files Found
## runhouse/resources/provenance.py
```
import copy
import json
import logging
import sys
from enum import Enum
from io import StringIO
from pathlib import Path
from typing import ... |
82 | null | Metaculus/forecasting-tools | # Repository Context
Name: Metaculus/forecasting-tools
Description:
# Pull Request
## disabled google flash preview
# Relevant Files Found
## run_bots.py
```
"""
This is the main file used to run the bots in the Metaulus AI Competition.
It is run by workflows in the .github/workflows directory.
"""
import arg... |
471 | null | astronomer/airflow | # Repository Context
Name: astronomer/airflow
Description:
# Pull Request
## add prestop hook to prevent logging issue
There is an issue in EKS where pods are deleted too quickly.
This preStopHook gives fluentd time to flush all logs before the
pod dies
---
Issue link: WILL BE INSERTED BY [boring-cyborg](http... |
1,220 | null | coleifer/peewee | # Repository Context
Name: coleifer/peewee
Description:
# Pull Request
## Use `get_primary_key_fields()` instead of `primary_key`, because the former knows how to handle composite keys
There is already a method `get_primary_key_fields()` which does just what is expected: return the list of all primary key fields, a... |
3,930 | null | open-mmlab/mmdetection | # Repository Context
Name: open-mmlab/mmdetection
Description:
# Pull Request
## [enhance]: Use RoIAlign implemented in MMCV for inference in CPU mode
Since RoIAlign in mmcv.ops is supported with aligned=False in CPU mode, there's no need to use the op from torchvision in CPU mode.
# Relevant Files Found
## mmd... |
312 | null | huggingface/trl | # Repository Context
Name: huggingface/trl
Description:
# Pull Request
## fixed typo in error message
trl/trainer/ppo_trainer.py has a small typo in line 511
# Relevant Files Found
## trl/trainer/ppo_trainer.py
```
# Copyright 2022 The HuggingFace Team. All rights reserved.
#
# Licensed under the Apache License,... |
3,611 | null | dask/distributed | # Repository Context
Name: dask/distributed
Description:
# Pull Request
## Make Listeners awaitable
# Relevant Files Found
## distributed/comm/core.py
```
from abc import ABC, abstractmethod, abstractproperty
import asyncio
import logging
import weakref
import dask
from ..metrics import time
from ..utils impo... |
269 | null | geopython/pywps | # Repository Context
Name: geopython/pywps
Description:
# Pull Request
## New feature: use os.symlink for file:// urls
# Overview
In our use-case we are working with climate data netcdf files which can be easily a few GBs large. In a chained process we use file urls as input to a process (data is already availab... |
262 | null | ol-iver/denonavr | # Repository Context
Name: ol-iver/denonavr
Description:
# Pull Request
## Add sound modes `DOLBY AUDIO - DD + NEURAL:X` and `NEURAL:X`
This PR adds two `NEURAL:X` sound modes mentioned in issue https://github.com/ol-iver/denonavr/issues/261.
# Relevant Files Found
## denonavr/const.py
```
#!/usr/bin/env python3... |
7 | null | zinic/pynsive | # Repository Context
Name: zinic/pynsive
Description:
# Pull Request
## Making sure the pycache folder is excluded
For Python 3 compatibility we have to make sure we don't attempt to
import the **pycache** folder.
I noticed this issue as a result of doing some testing of Specter between Python 2.7 and Python 3.3. ... |
30 | null | ftrackhq/ftrack-python | # Repository Context
Name: ftrackhq/ftrack-python
Description:
# Pull Request
## feat: drop py2 support / add black and poetry
Resolves FT-1f648001-844c-4667-8252-8d8ed9e23d87
- [ ] I have added automatic tests where applicable.
- [x] The PR contains a description of what has been changed.
- [ ] The descriptio... |
15 | null | IDR/deployment | # Repository Context
Name: IDR/deployment
Description:
# Pull Request
## Rewrite playbooks and vars to work with new omero-* roles (IDR-0.3.5)
This mostly involves renaming variables or changing their type (e.g. list/dict). In addition I've removed `IDR-OMERO-52-omero.j2` and put those variables into `group_vars/om... |
16,820 | null | apache/airflow | # Repository Context
Name: apache/airflow
Description:
# Pull Request
## Fix wrong template_fields_renderers for AWS operators
Related to #16808
Fixing wrong `template_fields_renderers` for Sagemaker and ECS operators. There might be other affected operators, but i'm fixing the ones i can test.
# Relevant Files... |
2 | null | jneen/python-cache | # Repository Context
Name: jneen/python-cache
Description:
# Pull Request
## Hash arguments list more robustly.
Apparently, python's hash() function does not return consistent results across python sessions. It's useful to be able to cache calls in one process and read them in another, so that's a problem. To get c... |
121 | null | ansys/optical-automation | # Repository Context
Name: ansys/optical-automation
Description:
# Pull Request
## fix files
# Relevant Files Found
## ansys_optical_automation/post_process/dpf_rayfile.py
```
import math
import os
import struct
from ansys_optical_automation.post_process.dpf_base import DataProcessingFramework
Photopic_Conver... |
195 | null | macbre/mediawiki-dump | # Repository Context
Name: macbre/mediawiki-dump
Description:
# Pull Request
## Bump black from 23.9.1 to 23.10.0
Bumps [black](https://github.com/psf/black) from 23.9.1 to 23.10.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/psf/black/releases">black's releases</a>.</... |
2 | null | msalhab96/SpeeQ | # Repository Context
Name: msalhab96/SpeeQ
Description:
# Pull Request
## global counter added for logging consistancy
# Relevant Files Found
## trainers/trainers.py
```
from functools import partial
import os
import time
import torch
from torch import Tensor
from typing import Tuple, Union
from trainers.decora... |
596 | null | totvs/tir | # Repository Context
Name: totvs/tir
Description:
# Pull Request
## correção na comparação do termo
# Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Fixes # (issue)
##... |
717 | null | neuroinformatics-unit/movement | # Repository Context
Name: neuroinformatics-unit/movement
Description:
# Pull Request
## Update the Community landing page
## Description
**What is this PR**
- [ ] Bug fix
- [x] Addition of a new feature
- [ ] Other
**Why is this PR needed?**
This is the first of many PRs related to #704.
It addres... |
39 | null | timescale/tiger-slack | # Repository Context
Name: timescale/tiger-slack
Description:
# Pull Request
## refactor: utilize multiple workers for slack import
PR builds upon #37 and further improves the import efficiency by implementing parallel asyncio workers to process files. Instead of going file by file, we now construct a list of all f... |
326 | null | cloudforet-io/cost-analysis | # Repository Context
Name: cloudforet-io/cost-analysis
Description:
# Pull Request
## Modify delete unified cost logic about not exist workspace
### Category
- [ ] New feature
- [x] Bug fix
- [ ] Improvement
- [ ] Refactor
- [ ] etc
### Description
- modify delete unified cost logic about not exist workspa... |
7,616 | null | geldata/gel | # Repository Context
Name: geldata/gel
Description:
# Pull Request
## func cache: drop dependant cache function of tuple type
Thanks @msullivan for the finding:
> ```
> _localdev:x> create function lol() -> SET OF tuple<str, str> using (('x', 'y'));
> OK: CREATE None
> _localdev:x> select lol();
> {('x', 'y'... |
25,067 | null | spyder-ide/spyder | # Repository Context
Name: spyder-ide/spyder
Description:
# Pull Request
## PR: Some improvements to the Update manager statusbar widget
## Description of Changes
- Change its icon to use a more standard one (the same or a very similar one is also used in Zed and Discord).
- Set `INTERACT_ON_CLICK` to True on i... |
17 | null | sankhaMukherjee/financeMacroFactors | # Repository Context
Name: sankhaMukherjee/financeMacroFactors
Description:
# Pull Request
## MarketWatchData(bug): Combersion error bug request
The conversion error for the dates and the times did
not properly result in error handling. A lot more error
correction has been implemented to make sure that the
true ... |
55 | null | stac-utils/stac-fastapi | # Repository Context
Name: stac-utils/stac-fastapi
Description:
# Pull Request
## add db connection, tiles endpoint
Some functionality was left out of the refactor done in #54, adding that back in.
# Relevant Files Found
## stac_api/api/app.py
```
"""fastapi app creation"""
from dataclasses import dataclass, fie... |
323 | null | DigitalSlideArchive/DSA-WSI-DeID | # Repository Context
Name: DigitalSlideArchive/DSA-WSI-DeID
Description:
# Pull Request
## Add tests for unfiled images using default schema
addresses (partially) #295
When using the default schema, images can be ingested into the `Unfiled` directory. Work in #310 and #260 allowed for manually refiling these im... |
62 | null | CarlFK/veyepar | # Repository Context
Name: CarlFK/veyepar
Description:
# Pull Request
## internetarchive wants a path name, not a file object
# Relevant Files Found
## dj/scripts/ia_uploader.py
```
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# archive_uploader.py
# archive.org specific code
import optparse
import os
impor... |
651 | null | stencila/hub | # Repository Context
Name: stencila/hub
Description:
# Pull Request
## Update dependencies
Updates Thema to include https://github.com/stencila/thema/pull/236 as well as bumping other development dependencies.
# Relevant Files Found
## manager/manager/themes.py
```
# Generated by generate.js. Commit this file, b... |
476 | null | jobovy/galpy | # Repository Context
Name: jobovy/galpy
Description:
# Pull Request
## Add a progress bar when integrating multiple orbits at once
As requested by @jmackereth _years ago_...
Example:
<img width="402" alt="Screen Shot 2022-04-13 at 12 08 15 AM" src="https://user-images.githubusercontent.com/1044876/163098336-4... |
412 | null | int-brain-lab/ibllib | # Repository Context
Name: int-brain-lab/ibllib
Description:
# Pull Request
## get figure object from axis
# Relevant Files Found
## brainbox/ephys_plots.py
```
import numpy as np
from matplotlib import cm
import matplotlib.pyplot as plt
from brainbox.plot_base import (ImagePlot, ScatterPlot, ProbePlot, Line... |
58 | null | wal-e/wal-e | # Repository Context
Name: wal-e/wal-e
Description:
# Pull Request
## Fixing WABS uploads for large files. Fixes #56
# Relevant Files Found
## wal_e/blobstore/wabs/wabs_util.py
```
import gevent
import socket
from urlparse import urlparse
import traceback
from collections import namedtuple as _namedtuple
from h... |
14,864 | null | astropy/astropy | # Repository Context
Name: astropy/astropy
Description:
# Pull Request
## Ensure np.linalg overrides continue to work with numpy >= 1.25
In numpy >=1.25, some functions return namedtuple, which is nice but sadly needs special treatment.
Fixes #14846 (together with #14859)
(Not sure about backporting - did 5.3... |
118 | null | open-v2x/cerebrum | # Repository Context
Name: open-v2x/cerebrum
Description:
# Pull Request
## feat: according to RSUID get intersectionid
# Relevant Files Found
## common/app.py
```
# Copyright 99Cloud, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file... |
474 | null | robotframework/SeleniumLibrary | # Repository Context
Name: robotframework/SeleniumLibrary
Description:
# Pull Request
## Add named keys to Press Key.
Adds named keys escaped with double backslash, for example \\ARROW_LEFT.
Also normalized test file.
Fixes #275 .
# Relevant Files Found
## src/Selenium2Library/keywords/_element.py
```
from sele... |
25 | null | CNugteren/pypopquiz | # Repository Context
Name: CNugteren/pypopquiz
Description:
# Pull Request
## Round theme video slides
Added functionality to prepend a short text to both question and answer rounds describing the theme of the round. These slides are currently always added and have a fixed duration, but perhaps later it could be ma... |
239 | null | singnet/snet-marketplace-service | # Repository Context
Name: singnet/snet-marketplace-service
Description:
# Pull Request
## prefix signature with "0x"
prefix signature with "0x"
# Relevant Files Found
## signer/signer.py
```
import json
import boto3
import web3
from common.constant import PREFIX_FREE_CALL, GET_FREE_CALLS_METERING_ARN, NETWORK... |
1,022 | null | geopython/OWSLib | # Repository Context
Name: geopython/OWSLib
Description:
# Pull Request
## Increase timeout for demo.pycsw.org tests
The test suite has failed a couple of times with timeouts from demo.pycsw.org as the reason.
# Relevant Files Found
## tests/test_ogcapi_records_pycsw.py
```
from tests.utils import service_ok
i... |
320 | null | zimagi/core | # Repository Context
Name: zimagi/core
Description:
# Pull Request
## Adding Django TEMPLATES configuration
# Relevant Files Found
## app/settings/full.py
```
"""
Application settings definition
For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.1/ref/settings/
"""
from cel... |
1,275 | null | Python-Markdown/markdown | # Repository Context
Name: Python-Markdown/markdown
Description:
# Pull Request
## Fix import issue with importlib.util
Fixes #1274.
# Relevant Files Found
## markdown/htmlparser.py
```
"""
Python Markdown
A Python implementation of John Gruber's Markdown.
Documentation: https://python-markdown.github.io/
GitH... |
115 | null | sustainable-computing-io/kepler-model-server | # Repository Context
Name: sustainable-computing-io/kepler-model-server
Description:
# Pull Request
## fix model training script and add quick sample
This PR fixes
- wrong image in the script use `kepler_model_server` instead of `kepler-model-server`
- handle the case that the training approach is not applicable... |
6 | null | jsenecal/pyregrws | # Repository Context
Name: jsenecal/pyregrws
Description:
# Pull Request
## Version 1.5
# Relevant Files Found
## regrws/models/nested.py
```
from enum import IntEnum
from typing import Literal
from pydantic_xml.model import attr, element
from regrws.models.base import NSMAP, BaseModel
from regrws.models.type... |
151 | null | ambient-code/agentready | # Repository Context
Name: ambient-code/agentready
Description:
# Pull Request
## perf: implement lazy loading for heavy CLI commands (50% faster startup)
## Summary
Improves CLI startup time by **50%** (2.7s → 1.4s) by implementing lazy loading for commands that import heavy dependencies.
## Performance Improvem... |
182 | null | evalstate/fast-agent | # Repository Context
Name: evalstate/fast-agent
Description:
# Pull Request
## Support Deepseek json_format
# Relevant Files Found
## src/mcp_agent/llm/providers/augmented_llm_deepseek.py
```
from mcp_agent.core.request_params import RequestParams
from mcp_agent.llm.provider_types import Provider
from mcp_agent... |
22,258 | null | home-assistant/core | # Repository Context
Name: home-assistant/core
Description:
# Pull Request
## Update Hass-NabuCasa 0.9
## Breaking Change:
<!-- What is breaking and why we have to break it. Remove this section only if it was NOT a breaking change. -->
## Description:
Changelog: https://github.com/NabuCasa/hass-nabucasa/re... |
6 | null | ynput/ayon-sitesync | # Repository Context
Name: ynput/ayon-sitesync
Description:
# Pull Request
## Create package does create server ready zip package
## Description
Script `create_package.py` does create prepared zip file for server upload.
## Additional information
Script have options to create only folder structure or to create... |
12,088 | null | spack/spack | # Repository Context
Name: spack/spack
Description:
# Pull Request
## ioapi: add version 3.2
New package for IOAPI.
So far only works on GNU/Linux.
I've posted on the [mailing list](https://groups.google.com/forum/#!topic/spack/R6orWxLCtfg) about adding logic for other architectures supported by upstream, b... |
4,914 | null | mlrun/mlrun | # Repository Context
Name: mlrun/mlrun
Description:
# Pull Request
## [API] Support list project background tasks
Add list project background tasks endpoint.
Support for filters (default filter is created in the last 7 days)
And check timeouts of background tasks
https://jira.iguazeng.com/browse/ML-5515
# Rel... |
288 | null | waku-py/waku | # Repository Context
Name: waku-py/waku
Description:
# Pull Request
## feat(cqrs): make event publishing noop when no handlers registered
## Summary by Sourcery
Make event publishing a no-op when no handlers are registered instead of raising an error.
Bug Fixes:
- Prevent event publishing from failing when no eve... |
26 | null | bmaltais/kohya_ss | # Repository Context
Name: bmaltais/kohya_ss
Description:
# Pull Request
## - Add support for `--clip_skip` option
- Add missing `detect_face_rotate.py` to tools folder
- Add `gui.cmd` for easy start of GUI
# Relevant Files Found
## dreambooth_gui.py
```
# v1: initial release
# v2: add open and save folder icon... |
5,620 | null | open-mmlab/mmdetection | # Repository Context
Name: open-mmlab/mmdetection
Description:
# Pull Request
## [Feature] add unittest for mmtracking
This PR implements unit test for MMTracking to avoid potential bc-breakings from mmdetection.
# Relevant Files Found
# Edits
This PR adds unit tests for MMTracking integration in MMDetectio... |
52,260 | null | pandas-dev/pandas | # Repository Context
Name: pandas-dev/pandas
Description:
# Pull Request
## CI/DEPS: Correct xfail condition for new pymysql
- [ ] closes #xxxx (Replace xxxx with the GitHub issue number)
- [ ] [Tests added and passed](https://pandas.pydata.org/pandas-docs/dev/development/contributing_codebase.html#writing-tests) ... |
63,527 | null | home-assistant/core | # Repository Context
Name: home-assistant/core
Description:
# Pull Request
## Fix fixture location and improve sensor entities in tomorrowio integration
## Proposed change
Related to https://github.com/home-assistant/core/pull/63526 and https://github.com/home-assistant/core/issues/63494 . Adding icons and transla... |
46 | null | geoscixyz/geosci-labs | # Repository Context
Name: geoscixyz/geosci-labs
Description:
# Pull Request
## fix analytic solution for the inductive sphere TEM
The previous scale shifted the true response by a factor of 100 because mu_0 = 4 *pi * 1e-7 but remaining factor after smplication by 4 * pi was 1e-9 (instead of 1e-7). I chose a more v... |
2,516 | null | scikit-learn/scikit-learn | # Repository Context
Name: scikit-learn/scikit-learn
Description:
# Pull Request
## DOC add copybutton to code examples
This adds a non-intrusive button to codeblocks in the docs
It hides the `.>>>' ect and makes it easy to copy into ipython
See [scipy-lecture-notes](http://scipy-lectures.github.io/intro/language... |
227 | null | lucidrains/denoising-diffusion-pytorch | # Repository Context
Name: lucidrains/denoising-diffusion-pytorch
Description:
# Pull Request
## Robust batched FID calculation
Implements #224 and fixes #226.
- Includes a separate `fid_evaluation.py` that houses the `FIDEvaluation` class which can be used out-of-the-box if needed to evaluate any sampler with a... |
25 | null | morisawausa/ProofingTool | # Repository Context
Name: morisawausa/ProofingTool
Description:
# Pull Request
## some code cleanup
# Relevant Files Found
## ProofingTool.glyphsPlugin/Contents/Resources/layout.py
```
# -*- coding: utf-8 -*-
from math import ceil
from multiprocessing import Pool
import cProfile
from pstats import Stats
from ... |
494 | null | django/django | # Repository Context
Name: django/django
Description:
# Pull Request
## model_split: Fixed #19236 - fixed error for abstract models with a split method
Link to ticket:
https://code.djangoproject.com/ticket/19236
# Relevant Files Found
## django/db/models/fields/related.py
```
from operator import attrgetter
f... |
205 | null | Emory-HITI/Niffler | # Repository Context
Name: Emory-HITI/Niffler
Description:
# Pull Request
## Changing exist_ok parameter to True from False.
# Relevant Files Found
## modules/workflows/workflow.py
```
import os, os.path
import json
import subprocess
def workflow(depth, master_path, processes, csv_file, total_attributes, first... |
42 | null | nodejs/tap2junit | # Repository Context
Name: nodejs/tap2junit
Description:
# Pull Request
## Replace bandit, flake8, isort, and pyupgrade with ruff
[Ruff](https://beta.ruff.rs/) supports [over 500 lint rules](https://beta.ruff.rs/docs/rules) including bandit, isort, pylint, pyupgrade, and flake8 plus its plugins, and is written in R... |
2 | null | nytera/meshworks-malla | # Repository Context
Name: nytera/meshworks-malla
Description:
# Pull Request
## Feature/protocol diversity
# Relevant Files Found
## src/malla/database/repositories.py
```
"""
Repository classes for database operations.
This module provides data access layer with business logic for different entities.
"""
im... |
104 | null | spyder-ide/spyder-kernels | # Repository Context
Name: spyder-ide/spyder-kernels
Description:
# Pull Request
## PR: Handle option to show/hide cmd windows generated by the subprocess module
Part of spyder-ide/spyder#9113
# Relevant Files Found
## spyder_kernels/customize/spydercustomize.py
```
#
# Copyright (c) 2009- Spyder Kernels Contrib... |
11,588 | null | streamlit/streamlit | # Repository Context
Name: streamlit/streamlit
Description:
# Pull Request
## [feat] Add Japanese yen as a `NumberColumn` & `ProgressColumn` `format` option
## Describe your changes
Adds `format="yen"` option for [NumberColumn](https://docs.streamlit.io/develop/api-reference/data/st.column_config/st.column_con... |
163 | null | lightly-ai/lightly-studio | # Repository Context
Name: lightly-ai/lightly-studio
Description:
# Pull Request
## Use separate environment variables for test scripts
## What has changed and why?
Previously, running examples (and therefore manual testing) was clumsy:
* We have different dataset formats, but used one env variable to pass data... |
399 | null | mcbeet/beet | # Repository Context
Name: mcbeet/beet
Description:
# Pull Request
## fix: add trim_material and trim_pattern to data_pack
# Relevant Files Found
## beet/library/data_pack.py
```
__all__ = [
"DataPack",
"DataPackNamespace",
"Advancement",
"DamageType",
"ChatType",
"Function",
"ItemMo... |
2 | null | bl0x/learn-fpga-amaranth | # Repository Context
Name: bl0x/learn-fpga-amaranth
Description:
# Pull Request
## add minimal bugfixes
I needed this little patches to make it work
# Relevant Files Found
## boards/digilent_arty_a7.py
```
from amaranth_boards.arty_a7 import *
from top import Top
if __name__ == "__main__":
platform = ArtyA... |
368 | null | mwouts/jupytext | # Repository Context
Name: mwouts/jupytext
Description:
# Pull Request
## Fix round trip to md with %%python3 cell magic
Code cells can start with ` ```python3` in Markdown files. In that case we insert a `%%python3` cell magic at the top of the cell.
Closes #365.
# Relevant Files Found
## jupytext/cell_reader... |
5 | null | Intuity/Gator | # Repository Context
Name: Intuity/Gator
Description:
# Pull Request
## Use a summary object
# Relevant Files Found
## gator/common/child.py
```
# Copyright 2023, Peter Birch, mailto:peter@lightlogic.co.uk
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in ... |
213 | null | google/garf | # Repository Context
Name: google/garf
Description:
# Pull Request
## [executors] fix: SQL executor works with any type of query (path, console)
* Switch to uuid4 for temp table name generation in SQL executor
* Execute queries in parallel only if there's more than one query
# Relevant Files Found
## libs/execut... |
7,481 | null | DataBiosphere/azul | # Repository Context
Name: DataBiosphere/azul
Description:
# Pull Request
## Backports: 1a47ed9 (#7466, PR #7475), 64b7908 (PR #7480)
<!--
This is the PR template for backport PRs against `develop`.
-->
## Checklist
### Author
- [x] PR is assigned to the author
- [x] Status of PR is *In progress*
-... |
150 | null | FreeTAKTeam/Reticulum_OpenAPI | # Repository Context
Name: FreeTAKTeam/Reticulum_OpenAPI
Description:
# Pull Request
## Handle LXMF link requests
## Summary
- add a default link request handler so LXMF services can answer /commands/ link requests
- share payload decoding and response serialization helpers between link and LXMF transport paths
- n... |
370 | null | RoseauTechnologies/Roseau_Load_Flow | # Repository Context
Name: RoseauTechnologies/Roseau_Load_Flow
Description:
# Pull Request
## Add debugging methods to the solver
No user facing changes, this PR add some solver methods for debugging purpose.
# Relevant Files Found
## roseau/load_flow/_solvers.py
```
import logging
import time
import warnings
f... |
164 | null | czbiohub-sf/shrimPy | # Repository Context
Name: czbiohub-sf/shrimPy
Description:
# Pull Request
## Stitch circle grid
# Relevant Files Found
## mantis/analysis/stitch.py
```
from pathlib import Path
from typing import Literal
import click
import dask.array as da
import numpy as np
import pandas as pd
import scipy.ndimage as ndi
f... |
1,040 | null | sotetsuk/pgx | # Repository Context
Name: sotetsuk/pgx
Description:
# Pull Request
## [Mahjong] Imprement `ron`
# Relevant Files Found
## pgx/_mahjong/_mahjong2.py
```
# Copyright 2023 The Pgx Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except i... |
9,626 | null | intel/ipex-llm | # Repository Context
Name: intel/ipex-llm
Description:
# Pull Request
## [LLM] Add more performance tests for win iGPU (more in-out pairs, RWKV model)
## Description
- support rwkv models in `from_pretrained` API. (verified RWKV/rwkv-4-world-7b, may have more verification later)
- add support for more in-out pa... |
208 | null | phospho-app/phosphobot | # Repository Context
Name: phospho-app/phosphobot
Description:
# Pull Request
## fix: Rework AI inference logic, update dark theme for better legibility
- We add more data to newly created servers
- we add a "requested" state for servers
- we add a /stop endpoint to kill the process
# Relevant Files Found
## mo... |
6,191 | null | hpcaitech/ColossalAI | # Repository Context
Name: hpcaitech/ColossalAI
Description:
# Pull Request
## [hotfix] fix zero optim save
## 📌 Checklist before creating the PR
- [ ] I have created an issue for this PR for traceability
- [ ] The title follows the standard format: `[doc/gemini/tensor/...]: A concise description`
- [ ] I hav... |
395 | null | redis/redis-vl-python | # Repository Context
Name: redis/redis-vl-python
Description:
# Pull Request
## perf: optimize CLIENT SETINFO calls in SearchIndex.from_existing() (#358)
Reduces duplicate CLIENT SETINFO calls when creating an index from an existing Redis index by tracking client validation state.
When a client is validated in f... |
98 | null | AmbitionEng/django-pgtrigger | # Repository Context
Name: AmbitionEng/django-pgtrigger
Description:
# Pull Request
## Pruning/installations fixed for Postgres versions 12 and under.
Paritioned table support introduced a bug in using trigger management
commands for Postgres 12 and under. This has been fixed.
Type: bug
Addresses #96
# Rel... |
331 | null | eccentriccoder01/TalkHeal | # Repository Context
Name: eccentriccoder01/TalkHeal
Description:
# Pull Request
## Added 5-4-3-2-1 Grounding Exercise to Self-Help Tools
This PR introduces the **5-4-3-2-1 Grounding Exercise** to the `pages/selfHelpTools.py` file, providing users with an interactive anxiety-relief tool.
**Key Features:**
* *... |
28 | null | idaholab/LOGOS | # Repository Context
Name: idaholab/LOGOS
Description:
# Pull Request
## split ModelBase
--------
Pull Request Description
--------
##### What issue does this change request address? (Use "#" before the issue to link it, i.e., #42.)
close #29
##### What are the significant changes in functionality due to th... |
30 | null | readthedocs-fr/bin-server | # Repository Context
Name: readthedocs-fr/bin-server
Description:
# Pull Request
## ref: cleanup environment variable names
Juste un commit pour harmoniser le code
# Relevant Files Found
## bin/config.py
```
import os
from argparse import ArgumentParser
from dotenv import load_dotenv
def strtobool(s):
try:
... |
36 | null | molpro/pymolpro | # Repository Context
Name: molpro/pymolpro
Description:
# Pull Request
## First draft of Minnesota_2019
# Relevant Files Found
# Edits
This pull request adds support for creating and storing the Minnesota 2019 quantum chemistry database in the pymolpro package. It introduces a script that automatically downlo... |
38 | null | AmauryCarrade/MastodonToTwitter | # Repository Context
Name: AmauryCarrade/MastodonToTwitter
Description:
# Pull Request
## Mark origin of a mention when posting from Twitter to Mastodon
Added the capability to check for any mentions to other users on Twitter and append "@twitter.com" to avoid any mixups on Mastodon.
# Relevant Files Found
## Mas... |
31,711 | null | saltstack/salt | # Repository Context
Name: saltstack/salt
Description:
# Pull Request
## [dockerng] Port and Volume comparison should consider Dockerfile
### What does this PR do?
Take into consideration PORT and VOLUMES already exposed on Image level.
### What issues does this PR fix or reference?
fixes #31595
### Previous Beha... |
31,142 | null | ray-project/ray | # Repository Context
Name: ray-project/ray
Description:
# Pull Request
## [Datasets] Add more debugging info when failing to read TFRecord file
Signed-off-by: Cheng Su <scnju13@gmail.com>
<!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before op... |
70 | null | PennyLaneAI/pennylane-aqt | # Repository Context
Name: PennyLaneAI/pennylane-aqt
Description:
# Pull Request
## Drop support for Python 3.9 and add support for Python 3.12
As the name says! 😄
1. Removed any reference to 3.9 and added 3.10 as the base version.
2. Tests are done on 3.10->3.12.
3. Added to the documentation that install... |
758 | null | ansys/pydpf-core | # Repository Context
Name: ansys/pydpf-core
Description:
# Pull Request
## Improve plotter.DpfPlotter behavior
Solves #767
DpfPlotter.add_node_labels now draws the bare meshed_region given in input, with labels, in the case where no Field was added to the plotter first.
Improved typehinting and docstrings
Dpf... |
966 | null | datajoint/datajoint-python | # Repository Context
Name: datajoint/datajoint-python
Description:
# Pull Request
## Fix __len__() for left join QueryExpressions
Left joins in SQL have the possibility of producing entire columns of `NULL` values which leads to some difficulty when we want to know the length of a query expression that has used a l... |
218 | null | bn222/cluster-deployment-automation | # Repository Context
Name: bn222/cluster-deployment-automation
Description:
# Pull Request
## Add ability to checkout specific pull number for dpu operator
Add pull number to cluster config schema allowing CDA to checkout a branch associated with a specific pull number for testing
# Relevant Files Found
## cluste... |
29 | null | phenobarbital/qworker | # Repository Context
Name: phenobarbital/qworker
Description:
# Pull Request
## Bump pytest-asyncio from 0.20.2 to 0.20.3
Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 0.20.2 to 0.20.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/pytest-dev/... |
252 | null | stephenmcd/mezzanine | # Repository Context
Name: stephenmcd/mezzanine
Description:
# Pull Request
## update ru translation
# Relevant Files Found
## mezzanine/conf/defaults.py
```
"""
Default settings for all of Mezzanine's apps. Each of these can be
overridden in your project's settings module, just like regular
Django settings. Th... |
9,872 | null | NVIDIA-NeMo/NeMo | # Repository Context
Name: NVIDIA-NeMo/NeMo
Description:
# Pull Request
## [NeMo-UX] Rename sdk references to NeMo Run
# 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 i... |
23,449 | null | vllm-project/vllm | # Repository Context
Name: vllm-project/vllm
Description:
# Pull Request
## [Frontend] User-provided uuids for medias in chat. (RFC #22044)
Summary:
This PR adds user-supplied uuids to the chat interface (#22044). Should only land after https://github.com/vllm-project/vllm/pull/23394 due to the changes needed in mu... |
25 | null | bioconda/bioconda-utils | # Repository Context
Name: bioconda/bioconda-utils
Description:
# Pull Request
## Add --no-build-id to allow long path names in recipes
This can be removed once all packages are rebuild with conda-build 2.x
# Relevant Files Found
## bioconda_utils/build.py
```
import subprocess as sp
from collections import defa... |
3,306 | null | holoviz/panel | # Repository Context
Name: holoviz/panel
Description:
# Pull Request
## Enable max row limits for Tabulator
This PR automatically toggles `pagination` to either 'local' or `'remote'` if it was not explicitly set and the number of rows in the table exceed certain limits. The default limit for `local'` pagination is ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.