title stringlengths 2 169 | diff stringlengths 235 19.5k | body stringlengths 0 30.5k | url stringlengths 48 84 | created_at stringlengths 20 20 | closed_at stringlengths 20 20 | merged_at stringlengths 20 20 | updated_at stringlengths 20 20 | diff_len float64 101 3.99k | repo_name stringclasses 83
values | __index_level_0__ int64 15 52.7k |
|---|---|---|---|---|---|---|---|---|---|---|
Add Ustream channel support | diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index 26cf2493547..a7cddef733b 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -96,7 +96,7 @@
from .tumblr import TumblrIE
from .tutv import TutvIE
from .unistra import UnistraIE
-from .ustream im... | https://api.github.com/repos/ytdl-org/youtube-dl/pulls/1413 | 2013-09-12T10:31:57Z | 2013-09-13T20:13:16Z | 2013-09-13T20:13:16Z | 2013-09-15T20:05:54Z | 927 | ytdl-org/youtube-dl | 50,601 | |
Make additional methods of google_assistant.AbstractConfig abstract | diff --git a/homeassistant/components/google_assistant/helpers.py b/homeassistant/components/google_assistant/helpers.py
index 7d431f8c94cb..65782c9ec245 100644
--- a/homeassistant/components/google_assistant/helpers.py
+++ b/homeassistant/components/google_assistant/helpers.py
@@ -129,19 +129,19 @@ def async_deinitial... | <!--
You are amazing! Thanks for contributing to our project!
Please, DO NOT DELETE ANY TEXT from this template! (unless instructed).
-->
## Proposed change
<!--
Describe the big picture of your changes here to communicate to the
maintainers why we should accept this pull request. If it fixes a bug
or... | https://api.github.com/repos/home-assistant/core/pulls/109811 | 2024-02-06T15:46:32Z | 2024-02-06T18:14:13Z | 2024-02-06T18:14:13Z | 2024-02-07T19:01:34Z | 1,521 | home-assistant/core | 39,407 |
Fix extension parameters not being saved to last used parameters | diff --git a/modules/processing.py b/modules/processing.py
index f04a0e1e411..ae04cab7839 100644
--- a/modules/processing.py
+++ b/modules/processing.py
@@ -531,16 +531,16 @@ def process_images_inner(p: StableDiffusionProcessing) -> Processed:
def infotext(iteration=0, position_in_batch=0):
return create... | **Describe what this pull request is trying to achieve.**
Extension parameters are not restored when the paste button is pressed with no prompt, this PR fixes that by writing `params.txt` after scripts have finished processing
**Environment this was tested in**
- OS: Windows
- Browser: Chrome
- Graphics car... | https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/6684 | 2023-01-12T21:47:20Z | 2023-01-13T11:44:40Z | 2023-01-13T11:44:39Z | 2023-01-13T11:44:40Z | 295 | AUTOMATIC1111/stable-diffusion-webui | 40,158 |
hires button, fix seeds | diff --git a/modules/txt2img.py b/modules/txt2img.py
index c4cc12d2f6d..d22a1f319e3 100644
--- a/modules/txt2img.py
+++ b/modules/txt2img.py
@@ -67,13 +67,16 @@ def txt2img_upscale(id_task: str, request: gr.Request, gallery, gallery_index, g
geninfo = json.loads(generation_info)
all_seeds = geninfo["all_s... | ## Description
follow up of https://github.com/AUTOMATIC1111/stable-diffusion-webui/commit/15ec54dd969d6dc3fea7790ca5cce5badcfda426 Have upscale button use the same seed as hires fix.
that doesn't actually work
`seed` is set by the `seed script` in the `setup()`
too late to modify it using `modules.scripts.script... | https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/14598 | 2024-01-09T16:58:09Z | 2024-01-09T17:05:10Z | 2024-01-09T17:05:10Z | 2024-01-09T17:19:33Z | 321 | AUTOMATIC1111/stable-diffusion-webui | 39,851 |
parseBalance debt support | diff --git a/js/base/Exchange.js b/js/base/Exchange.js
index bb40418e647f..d517b11260e9 100644
--- a/js/base/Exchange.js
+++ b/js/base/Exchange.js
@@ -943,7 +943,6 @@ module.exports = class Exchange {
if ((used === undefined) && (total !== undefined) && (free !== undefined)) {
used = Preci... | https://api.github.com/repos/ccxt/ccxt/pulls/15757 | 2022-11-21T03:25:14Z | 2022-11-21T03:27:45Z | 2022-11-21T03:27:45Z | 2022-11-21T03:27:45Z | 297 | ccxt/ccxt | 13,552 | |
Check for VPC existence for hostedzone | diff --git a/localstack/services/route53/provider.py b/localstack/services/route53/provider.py
index bfe2a2d7be0b8..d858fe7914ae8 100644
--- a/localstack/services/route53/provider.py
+++ b/localstack/services/route53/provider.py
@@ -2,6 +2,7 @@
from typing import Optional
import moto.route53.models as route53_model... | <!-- Please refer to the contribution guidelines before raising a PR: https://github.com/localstack/localstack/blob/master/CONTRIBUTING.md -->
<!-- Why am I raising this PR? Add context such as related issues, PRs, or documentation. -->
## Motivation
If a hosted zone is to be created in a VPC, `moto` does not check f... | https://api.github.com/repos/localstack/localstack/pulls/10634 | 2024-04-10T15:55:22Z | 2024-04-12T10:14:10Z | 2024-04-12T10:14:10Z | 2024-04-12T10:14:11Z | 1,910 | localstack/localstack | 28,507 |
Fix generate shortcut bug and add interrupt shortcut | diff --git a/javascript/script.js b/javascript/script.js
index 05a8c5901..593d8c36c 100644
--- a/javascript/script.js
+++ b/javascript/script.js
@@ -125,18 +125,23 @@ document.addEventListener("DOMContentLoaded", function() {
* Add a ctrl+enter as a shortcut to start a generation
*/
document.addEventListener('keyd... | I noticed that the shortcut for a quick start with ctrl+enter would also cause an issue if hit again while the gernation had already started. It would click the (now hidden) generate button again in the background. One the first generation finishes the second would start off but the UI would not recognise it.
This ... | https://api.github.com/repos/lllyasviel/Fooocus/pulls/1408 | 2023-12-14T17:01:12Z | 2023-12-14T17:21:50Z | 2023-12-14T17:21:50Z | 2023-12-14T18:37:27Z | 369 | lllyasviel/Fooocus | 7,139 |
Parameters to Request() in wrong order | diff --git a/docs/topics/request-response.rst b/docs/topics/request-response.rst
index f83ef98b770..0aaf7d5d669 100644
--- a/docs/topics/request-response.rst
+++ b/docs/topics/request-response.rst
@@ -24,7 +24,7 @@ below in :ref:`topics-request-response-ref-request-subclasses` and
Request objects
===============
-.... | Implied that callback wasn't the first optional unnamed parameter.
| https://api.github.com/repos/scrapy/scrapy/pulls/226 | 2013-01-15T10:37:56Z | 2013-10-16T20:15:52Z | 2013-10-16T20:15:52Z | 2014-06-12T16:08:03Z | 552 | scrapy/scrapy | 34,236 |
Add option to set notification sound volume | diff --git a/javascript/notification.js b/javascript/notification.js
index 6d79956125c..3ee972ae166 100644
--- a/javascript/notification.js
+++ b/javascript/notification.js
@@ -26,7 +26,11 @@ onAfterUiUpdate(function() {
lastHeadImg = headImg;
// play notification sound if available
- gradioApp().querySe... | ## Description
* a simple description of what you're trying to accomplish
* This PR adds the option to the settings for changing the volume of the optional notification sound that can be played after image generation. This can be useful if the volume of the used notification sound should be lowered without the ne... | https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/13884 | 2023-11-07T02:24:37Z | 2023-11-07T05:29:07Z | 2023-11-07T05:29:07Z | 2023-11-07T17:10:22Z | 353 | AUTOMATIC1111/stable-diffusion-webui | 39,694 |
Port .travis.yml to GitHub Actions | diff --git a/.github/workflows/tests-ubuntu.yml b/.github/workflows/tests-ubuntu.yml
index b0360554..270e64e2 100644
--- a/.github/workflows/tests-ubuntu.yml
+++ b/.github/workflows/tests-ubuntu.yml
@@ -23,5 +23,16 @@ jobs:
docker:
runs-on: ubuntu-20.04
steps:
- - run: docker-compose build
+ - uses... | https://api.github.com/repos/chubin/cheat.sh/pulls/253 | 2020-11-13T12:37:49Z | 2020-11-13T12:39:38Z | 2020-11-13T12:39:38Z | 2020-11-13T12:45:25Z | 244 | chubin/cheat.sh | 15,236 | |
[ie/radiko]add Metadata info (performer, duration) | diff --git a/yt_dlp/extractor/radiko.py b/yt_dlp/extractor/radiko.py
index c363d9ba5f7..2b640599952 100644
--- a/yt_dlp/extractor/radiko.py
+++ b/yt_dlp/extractor/radiko.py
@@ -1,5 +1,6 @@
import base64
import random
+import re
import urllib.parse
from .common import InfoExtractor
@@ -11,6 +12,7 @@
unified_t... | **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 the description explains the purpose and effect** of your *pull request* and is worded well enough to be un... | https://api.github.com/repos/yt-dlp/yt-dlp/pulls/9115 | 2024-01-31T08:28:12Z | 2024-02-03T18:44:18Z | 2024-02-03T18:44:18Z | 2024-02-03T18:44:18Z | 554 | yt-dlp/yt-dlp | 7,629 |
Mention the usage of Python's builtin readline module in the documentation | diff --git a/docs/source/conf.py b/docs/source/conf.py
index 774871e3e..34258eb49 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -43,6 +43,7 @@
"sphinx.ext.autodoc",
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
+ "sphinx.ext.intersphinx",
"sphinx.ext.autosectionlabel",
"sphin... | ## Type of changes
- [ ] Bug fix
- [ ] New feature
- [x] Documentation / docstrings
- [ ] Tests
- [ ] Other
## Checklist
- [x] I've run the latest [black](https://github.com/psf/black) with default args on new code.
- [ ] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate.
- [x] ~I've added ... | https://api.github.com/repos/Textualize/rich/pulls/1634 | 2021-10-31T16:07:21Z | 2021-11-07T10:24:01Z | 2021-11-07T10:24:01Z | 2021-11-07T10:24:01Z | 716 | Textualize/rich | 48,046 |
[Bug fix] Add rope_theta for llama config | diff --git a/csrc/transformer/inference/csrc/apply_rotary_pos_emb.cu b/csrc/transformer/inference/csrc/apply_rotary_pos_emb.cu
index e743ffc3f64f..e326c762c0f3 100644
--- a/csrc/transformer/inference/csrc/apply_rotary_pos_emb.cu
+++ b/csrc/transformer/inference/csrc/apply_rotary_pos_emb.cu
@@ -32,6 +32,7 @@ __global__ ... | Fixed bug with CodeLlama. Bug description is here https://github.com/microsoft/DeepSpeed/issues/4442. Now DeepSpeed uses rope_theta from transformers. | https://api.github.com/repos/microsoft/DeepSpeed/pulls/4480 | 2023-10-09T15:29:15Z | 2023-10-19T18:12:46Z | 2023-10-19T18:12:46Z | 2023-11-09T13:20:16Z | 3,928 | microsoft/DeepSpeed | 10,625 |
Added US census data api | diff --git a/README.md b/README.md
index 25c2eaba64..0f2621fb91 100644
--- a/README.md
+++ b/README.md
@@ -528,8 +528,10 @@ API | Description | Auth | HTTPS | CORS |
| [Open Government, Thailand](https://data.go.th/) | Thailand Government Open Data | `apiKey` | Yes | Unknown |
| [Open Government, USA](https://www.dat... | <!-- Thank you for taking the time to work on a Pull Request for this project! -->
<!-- To ensure your PR is dealt with swiftly please check the following: -->
- [x] My submission is formatted according to the guidelines in the [contributing guide](CONTRIBUTING.md)
- [x] My addition is ordered alphabetically
- [x] ... | https://api.github.com/repos/public-apis/public-apis/pulls/1610 | 2021-03-31T19:19:55Z | 2021-04-02T02:08:24Z | 2021-04-02T02:08:24Z | 2021-04-02T15:16:48Z | 236 | public-apis/public-apis | 35,663 |
Add Xwin-LM V0.1, V0.2 support | diff --git a/docs/model_support.md b/docs/model_support.md
index 780e11110d..8d801fafcc 100644
--- a/docs/model_support.md
+++ b/docs/model_support.md
@@ -46,6 +46,7 @@
- [WizardLM/WizardCoder-15B-V1.0](https://huggingface.co/WizardLM/WizardCoder-15B-V1.0)
- [HuggingFaceH4/starchat-beta](https://huggingface.co/Huggin... | <!-- Thank you for your contribution! -->
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. -->
## Why are these changes needed?
<!-- Please give a short summary of the change and the problem ... | https://api.github.com/repos/lm-sys/FastChat/pulls/2566 | 2023-10-15T13:51:25Z | 2023-10-15T19:37:17Z | 2023-10-15T19:37:17Z | 2023-10-15T19:37:17Z | 859 | lm-sys/FastChat | 41,499 |
Check dependencies in Ebook gen script | diff --git a/generate-epub.sh b/generate-epub.sh
index d7c21241b8..18690fbb52 100755
--- a/generate-epub.sh
+++ b/generate-epub.sh
@@ -1,4 +1,4 @@
-#! /usr/bin/env sh
+#! /usr/bin/env bash
generate_from_stdin() {
outfile=$1
@@ -34,6 +34,20 @@ generate () {
cat $name.md | generate_from_stdin $name.epub $languag... | Fixes https://github.com/donnemartin/system-design-primer/issues/339
@donnemartin @Skn0tt Please check | https://api.github.com/repos/donnemartin/system-design-primer/pulls/406 | 2020-04-25T07:19:24Z | 2020-07-04T01:24:24Z | 2020-07-04T01:24:24Z | 2020-07-04T01:24:34Z | 231 | donnemartin/system-design-primer | 36,831 |
Add scikit-multiflow - stream learning in Python | diff --git a/README.md b/README.md
index da7fb015..35621d62 100644
--- a/README.md
+++ b/README.md
@@ -1068,6 +1068,7 @@ be
* [fast.ai](https://github.com/fastai/fastaihttps://github.com/fastai/fastai) - A library simplifies training fast and accurate neural nets using modern best practices and already supports visio... | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/655 | 2019-12-05T00:51:05Z | 2020-01-27T14:55:36Z | 2020-01-27T14:55:36Z | 2020-01-27T14:55:36Z | 280 | josephmisiti/awesome-machine-learning | 51,787 | |
CI Adds skipping to azure pipelines with commit message | diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 1a42c533fb2ee..870c5f0e1d313 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -8,17 +8,11 @@ schedules:
always: true
jobs:
-- job: linting
- displayName: Linting
+- job: git_commit
+ displayName: Get Git Commit
pool:
vmImage: ubun... | This PR adds the ability to use `[ci skip]` in a commit message to skip azure pipelines in pull requests. | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/19134 | 2021-01-08T02:37:01Z | 2021-01-13T08:23:27Z | 2021-01-13T08:23:27Z | 2021-01-13T08:23:47Z | 1,679 | scikit-learn/scikit-learn | 46,209 |
Add album art support in the mpd component | diff --git a/homeassistant/components/mpd/media_player.py b/homeassistant/components/mpd/media_player.py
index 1e16675f7b62..1273b720dd8e 100644
--- a/homeassistant/components/mpd/media_player.py
+++ b/homeassistant/components/mpd/media_player.py
@@ -1,5 +1,6 @@
"""Support to interact with a Music Player Daemon."""
f... | <!--
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 change for existing users, it is important
to tell them what breaks, how to make it work again and why we did th... | https://api.github.com/repos/home-assistant/core/pulls/44527 | 2020-12-25T22:00:17Z | 2020-12-26T21:18:28Z | 2020-12-26T21:18:28Z | 2020-12-28T00:22:34Z | 715 | home-assistant/core | 39,232 |
Add pre/post execution hooks | diff --git a/airflow/models/baseoperator.py b/airflow/models/baseoperator.py
index a1316405b4e91..3feeb5b1e2851 100644
--- a/airflow/models/baseoperator.py
+++ b/airflow/models/baseoperator.py
@@ -81,6 +81,8 @@
ScheduleInterval = Union[str, timedelta, relativedelta]
TaskStateChangeCallback = Callable[[Context], Non... | This adds optional operator parameters `pre_execute` and `post_execute`, both of which run synchronously immediately before and after task execution.
For example, this can be used to skip execution for a particular day of the week:
```python
from croniter import match
def execute_unless(cron_expr):
def hoo... | https://api.github.com/repos/apache/airflow/pulls/17576 | 2021-08-12T12:44:39Z | 2021-08-24T08:56:24Z | 2021-08-24T08:56:24Z | 2021-12-06T01:37:59Z | 1,361 | apache/airflow | 14,758 |
Add .pre-commit-config.yaml | diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 3796a397..0f9cfabe 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -6,8 +6,38 @@ on:
pull_request:
branches:
- main
+
jobs:
+ pre-commit:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions... | I've created a pull request to run a pre-commit GitHub action explicitly for repetitive linter tasks.
- Replace black, isort, flake8 with pre-commit ( .pre-commit-config.yaml )
- After checking coverage for all files using the command below, I've reduced the number of flake8's ignore from E203,W503,W504,E501,E731,E... | https://api.github.com/repos/openai/whisper/pulls/1528 | 2023-07-17T06:38:33Z | 2023-09-18T23:15:34Z | 2023-09-18T23:15:34Z | 2024-04-13T15:26:21Z | 1,217 | openai/whisper | 45,871 |
Allow user to select all domains by typing empty string at checklist | diff --git a/certbot/display/util.py b/certbot/display/util.py
index 30d604313bf..0ad8fa200c9 100644
--- a/certbot/display/util.py
+++ b/certbot/display/util.py
@@ -179,9 +179,12 @@ def checklist(self, message, tags, default_status=True, **unused_kwargs):
self._print_menu(message, tags)
code... | Addresses #3629, as a follow-up to #3665.
| https://api.github.com/repos/certbot/certbot/pulls/3693 | 2016-10-26T01:26:51Z | 2016-10-26T22:43:40Z | 2016-10-26T22:43:40Z | 2016-12-08T01:14:37Z | 438 | certbot/certbot | 2,681 |
3 useful scripts added to the repo | diff --git a/cartesian_product.py b/cartesian_product.py
new file mode 100644
index 0000000000..7ed49aae29
--- /dev/null
+++ b/cartesian_product.py
@@ -0,0 +1,25 @@
+"""Cartesian Product of Two Lists."""
+
+# Import
+from itertools import product
+
+
+# Cartesian Product of Two Lists
+def cartesian_product(list1, list2... | 3 useful scripts added to the repo: 1-create rangoli art, time delta between…een 2 events based on UTC, Caretesian seri Calculation | https://api.github.com/repos/geekcomputers/Python/pulls/1603 | 2022-07-11T11:20:24Z | 2022-07-16T09:04:25Z | 2022-07-16T09:04:25Z | 2022-07-19T09:41:23Z | 1,106 | geekcomputers/Python | 31,340 |
[doc] fix requirements typo for issue #3125 | diff --git a/examples/language/gpt/experiments/auto_parallel/requirements.txt b/examples/language/gpt/experiments/auto_parallel/requirements.txt
index ff046ad1cae9..1b2561f098d5 100644
--- a/examples/language/gpt/experiments/auto_parallel/requirements.txt
+++ b/examples/language/gpt/experiments/auto_parallel/requiremen... | ## 📌 Checklist before creating the PR
- [x] I have created an issue for this PR for traceability
- [x] The title follows the standard format: `[doc/gemini/tensor/...]: A concise description`
- [x] I have added relevant tags if possible for us to better distinguish different PRs
## 🚨 Issue number
> Link t... | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/3209 | 2023-03-22T15:51:27Z | 2023-03-23T02:22:08Z | 2023-03-23T02:22:08Z | 2023-03-23T02:22:09Z | 135 | hpcaitech/ColossalAI | 11,582 |
map ui: Fixed ETA text alignment issue in CJK | diff --git a/selfdrive/ui/qt/maps/map_eta.cc b/selfdrive/ui/qt/maps/map_eta.cc
index 4262258cfbd38b..13e11e5597aed0 100644
--- a/selfdrive/ui/qt/maps/map_eta.cc
+++ b/selfdrive/ui/qt/maps/map_eta.cc
@@ -47,7 +47,7 @@ void MapETA::updateETA(float s, float s_typical, float d) {
auto distance = std::array{QString::numb... | ETA section text seems out of alignment when text is translated into CJK.
English:

CHT:

Japanese:
:
"""
Basing on `user_agent`, return whether it needs HTML or ANSI
"""
- plaintext_clients = ['curl', 'wget', 'fetch', 'httpie', 'lwp-request', 'OpenBS... | …instead. | https://api.github.com/repos/chubin/cheat.sh/pulls/103 | 2018-08-17T16:16:20Z | 2018-08-17T20:12:18Z | 2018-08-17T20:12:18Z | 2018-08-17T20:12:18Z | 170 | chubin/cheat.sh | 15,110 |
Explicit `git clone` master | diff --git a/utils/aws/userdata.sh b/utils/aws/userdata.sh
index 890606b76a0..5846fedb16f 100644
--- a/utils/aws/userdata.sh
+++ b/utils/aws/userdata.sh
@@ -7,7 +7,7 @@
cd home/ubuntu
if [ ! -d yolov5 ]; then
echo "Running first-time script." # install dependencies, download COCO, pull Docker
- git clone https://... |
## 🛠️ PR Summary
<sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub>
### 🌟 Summary
Optimization of initial setup process for YOLOv5 on AWS.
### 📊 Key Changes
- Modified the cloning command for the YOLOv5 repository in the AWS user data script.
### 🎯 Purpose & Impact
- Ensu... | https://api.github.com/repos/ultralytics/yolov5/pulls/3311 | 2021-05-24T10:42:07Z | 2021-05-24T10:42:36Z | 2021-05-24T10:42:36Z | 2024-01-19T18:12:16Z | 194 | ultralytics/yolov5 | 24,867 |
Fix OpenWeatherMap dewpoint conversion | diff --git a/homeassistant/components/openweathermap/weather_update_coordinator.py b/homeassistant/components/openweathermap/weather_update_coordinator.py
index 73edc9fae7567b..385e7a9dca42cf 100644
--- a/homeassistant/components/openweathermap/weather_update_coordinator.py
+++ b/homeassistant/components/openweathermap... | <!--
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 change for existing users, it is important
to tell them what breaks, how to make it work again and why we did th... | https://api.github.com/repos/home-assistant/core/pulls/56303 | 2021-09-16T19:35:13Z | 2021-09-23T17:14:16Z | 2021-09-23T17:14:15Z | 2021-09-24T18:01:52Z | 295 | home-assistant/core | 39,150 |
[AIRFLOW-2227] Add delete method to Variable class | diff --git a/airflow/bin/cli.py b/airflow/bin/cli.py
index bca37bfa6f89b..9c264386cda97 100644
--- a/airflow/bin/cli.py
+++ b/airflow/bin/cli.py
@@ -342,8 +342,7 @@ def variables(args):
except ValueError as e:
print(e)
if args.delete:
- with db.create_session() as session:
- ... | Make sure you have checked _all_ steps below.
### Jira
- [x] My PR addresses the following [Airflow Jira](https://issues.apache.org/jira/browse/AIRFLOW/) issues and references them in the PR title.
- https://issues.apache.org/jira/browse/AIRFLOW-2227
### Description
- [x] Here are some details about my... | https://api.github.com/repos/apache/airflow/pulls/4963 | 2019-03-23T20:06:07Z | 2019-03-26T13:21:42Z | 2019-03-26T13:21:42Z | 2019-03-26T13:21:42Z | 572 | apache/airflow | 14,895 |
Fix a couple small shellcheck errors | diff --git a/thefuck/shells/bash.py b/thefuck/shells/bash.py
index d8a53180a..df972380c 100644
--- a/thefuck/shells/bash.py
+++ b/thefuck/shells/bash.py
@@ -20,8 +20,8 @@ def app_alias(self, alias_name):
export TF_HISTORY=$(fc -ln -10);
export PYTHONIOENCODING=utf-8;
T... | These are unlikely to cause practical issues but after bootstrapping with `fuck; fuck` shellcheck gave me an error in my bashrc. | https://api.github.com/repos/nvbn/thefuck/pulls/915 | 2019-05-19T02:37:41Z | 2019-05-22T18:22:10Z | 2019-05-22T18:22:10Z | 2019-05-23T16:37:53Z | 443 | nvbn/thefuck | 30,637 |
fix language detection in `TrackedTextarea` | diff --git a/website/src/components/Survey/TrackedTextarea.tsx b/website/src/components/Survey/TrackedTextarea.tsx
index 2096f66451..9a35725b88 100644
--- a/website/src/components/Survey/TrackedTextarea.tsx
+++ b/website/src/components/Survey/TrackedTextarea.tsx
@@ -3,8 +3,8 @@ import { Progress, Stack, Textarea, Texta... | https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/1796 | 2023-02-22T10:55:14Z | 2023-02-22T11:16:34Z | 2023-02-22T11:16:34Z | 2023-02-22T11:16:35Z | 361 | LAION-AI/Open-Assistant | 37,152 | |
remove rest of pylint | diff --git a/.github/workflows/selfdrive_tests.yaml b/.github/workflows/selfdrive_tests.yaml
index 361329e93f4360..5d4f4c3e8f33bf 100644
--- a/.github/workflows/selfdrive_tests.yaml
+++ b/.github/workflows/selfdrive_tests.yaml
@@ -62,7 +62,6 @@ jobs:
run: |
cd $GITHUB_WORKSPACE
cp .pre-commit-c... | https://api.github.com/repos/commaai/openpilot/pulls/29302 | 2023-08-09T23:35:59Z | 2023-08-10T02:03:36Z | 2023-08-10T02:03:36Z | 2023-08-10T02:03:37Z | 3,879 | commaai/openpilot | 9,851 | |
[AIRFLOW-3742] Respect the `fallback` arg in airflow.configuration.get | diff --git a/airflow/configuration.py b/airflow/configuration.py
index 70203975446b2..1de5c3aeb1354 100644
--- a/airflow/configuration.py
+++ b/airflow/configuration.py
@@ -36,7 +36,7 @@
import sys
import warnings
-from backports.configparser import ConfigParser
+from backports.configparser import ConfigParser, _UN... | Make sure you have checked _all_ steps below.
### Jira
- [x] https://issues.apache.org/jira/browse/AIRFLOW-3742
### Description
- [x] This `fallback` argument is part of the API from our parent class, but we didn't
support it because of the various steps we perform in `get()` - this
makes it behave more... | https://api.github.com/repos/apache/airflow/pulls/4567 | 2019-01-21T16:10:46Z | 2019-01-29T19:56:08Z | 2019-01-29T19:56:08Z | 2019-02-11T09:56:17Z | 1,185 | apache/airflow | 14,358 |
Update Comet integration | diff --git a/segment/tutorial.ipynb b/segment/tutorial.ipynb
index f2aee9e26b3..0ece0f60e4d 100644
--- a/segment/tutorial.ipynb
+++ b/segment/tutorial.ipynb
@@ -63,7 +63,7 @@
"source": [
"!git clone https://github.com/ultralytics/yolov5 # clone\n",
"%cd yolov5\n",
- "%pip install -qr re... | <!--
Thank you for submitting a YOLOv5 🚀 Pull Request! We want to make contributing to YOLOv5 as easy and transparent as possible. A few tips to get you started:
- Search existing YOLOv5 [PRs](https://github.com/ultralytics/yolov5/pull) to see if a similar PR already exists.
- Link this PR to a YOLOv5 [issue](htt... | https://api.github.com/repos/ultralytics/yolov5/pulls/11648 | 2023-06-02T16:03:32Z | 2023-06-15T11:49:19Z | 2023-06-15T11:49:19Z | 2024-01-19T01:47:48Z | 1,222 | ultralytics/yolov5 | 25,511 |
Update plot_ols.py (trivial) | diff --git a/examples/linear_model/plot_ols.py b/examples/linear_model/plot_ols.py
index 39a03d1fa0ad4..541ff629b2b79 100644
--- a/examples/linear_model/plot_ols.py
+++ b/examples/linear_model/plot_ols.py
@@ -32,12 +32,11 @@
# Use only one feature
-diabetes_X = diabetes.data[:, np.newaxis]
-diabetes_X_temp = diabe... | Minor/trivial NumPy slicing refactor
| https://api.github.com/repos/scikit-learn/scikit-learn/pulls/4861 | 2015-06-15T06:18:10Z | 2015-06-15T06:40:40Z | 2015-06-15T06:40:40Z | 2015-06-15T06:41:23Z | 198 | scikit-learn/scikit-learn | 46,860 |
fix(poloniex): Pro timeframes | diff --git a/ts/src/pro/poloniex.ts b/ts/src/pro/poloniex.ts
index f550eb7bacd1..49f630c8ab28 100644
--- a/ts/src/pro/poloniex.ts
+++ b/ts/src/pro/poloniex.ts
@@ -554,7 +554,8 @@ export default class poloniex extends poloniexRest {
const marketId = this.safeString (data, 'symbol');
const symbol = this... | - findTimeFrames was using Rest timeframes | https://api.github.com/repos/ccxt/ccxt/pulls/20689 | 2024-01-05T18:05:48Z | 2024-01-05T18:20:58Z | 2024-01-05T18:20:58Z | 2024-01-05T18:20:58Z | 213 | ccxt/ccxt | 13,677 |
fix colotensor.type() raise NotImplementedError | diff --git a/colossalai/nn/_ops/element_wise.py b/colossalai/nn/_ops/element_wise.py
index c3c1421e7fdc..462670e7278a 100644
--- a/colossalai/nn/_ops/element_wise.py
+++ b/colossalai/nn/_ops/element_wise.py
@@ -18,6 +18,8 @@ def elementwise_op(input_tensor: GeneralTensor, *args, **kwargs):
output = op(input_... | hi, dev from biomap. Encountered this error with calling colotensor.type() | https://api.github.com/repos/hpcaitech/ColossalAI/pulls/1682 | 2022-10-08T10:55:21Z | 2022-10-10T02:13:31Z | 2022-10-10T02:13:31Z | 2022-10-10T02:13:31Z | 170 | hpcaitech/ColossalAI | 11,776 |
Hook validation: skip leading spaces/newlines | diff --git a/certbot/hooks.py b/certbot/hooks.py
index 138e2addce1..890021a5f70 100644
--- a/certbot/hooks.py
+++ b/certbot/hooks.py
@@ -27,7 +27,7 @@ def _validate_hook(shell_cmd, hook_name):
:raises .errors.HookCommandNotFound: if the command is not found
"""
if shell_cmd:
- cmd = shell_cmd.part... | Improves the situation with #3020 a bit.
Does nothing about other valid shell commands that the current validation would reject:
- shell builtins like `--post-hook 'if [ -x /my/script ]; then /my/script; fi'`
- variable assignments like `--post-hook 'ENV_VAR=value command'`
- comments
- redirections like `--post-hook ... | https://api.github.com/repos/certbot/certbot/pulls/3021 | 2016-05-18T09:05:13Z | 2016-05-18T19:07:25Z | 2016-05-18T19:07:25Z | 2016-05-18T19:07:33Z | 164 | certbot/certbot | 2,485 |
improve/simplify gitignore | diff --git a/.gitignore b/.gitignore
index 3cfbbb2257..368529166b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,26 +1,21 @@
-cache/*
-characters/*
-extensions/silero_tts/outputs/*
-extensions/elevenlabs_tts/outputs/*
-extensions/sd_api_pictures/outputs/*
-logs/*
-loras/*
-models/*
-softprompts/*
-torch-dumps/*
+cache
... | This is a minor change but bit of QOL for forking/contributing to this repo
- add repositories
- remove the redundant `/*` on folders
- remove the exclusions for files that already exist
If it's unclear what difference this makes: pretty much it fixes the majority of issues with git thinking you've made changes... | https://api.github.com/repos/oobabooga/text-generation-webui/pulls/565 | 2023-03-25T17:09:43Z | 2023-03-26T16:31:45Z | 2023-03-26T16:31:45Z | 2023-03-26T16:31:45Z | 268 | oobabooga/text-generation-webui | 26,680 |
Fix model_worker error | diff --git a/fastchat/serve/inference.py b/fastchat/serve/inference.py
index c97fd1c017..4e51916101 100644
--- a/fastchat/serve/inference.py
+++ b/fastchat/serve/inference.py
@@ -108,6 +108,7 @@ def generate_stream(
past_key_values = out = None
sent_interrupt = False
+ finish_reason = None
for i in ... | <!-- Thank you for your contribution! -->
<!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. -->
## Why are these changes needed?
Fix the bug that `model_worker` will raise the error `local var... | https://api.github.com/repos/lm-sys/FastChat/pulls/2404 | 2023-09-12T02:13:33Z | 2023-09-12T04:03:00Z | 2023-09-12T04:03:00Z | 2023-09-12T04:03:00Z | 213 | lm-sys/FastChat | 41,529 |
add: one rep max calculator, weightlifting. | diff --git a/nitkarshchourasia/one_rep_max_calculator/README.md b/nitkarshchourasia/one_rep_max_calculator/README.md
new file mode 100644
index 0000000000..78aa7469f7
--- /dev/null
+++ b/nitkarshchourasia/one_rep_max_calculator/README.md
@@ -0,0 +1,25 @@
+# One-Rep Max Calculator
+
+This repository contains two Python ... | # One Rep Max Calculator.
Used Epley formula to determine one rep max in lifting weights.
# Includes.
- Command-Line based calculator.
- GUI based calculator.
- README.md for documenting and explaining the programs.
# Description
We all suffer to calculate the maximum amount we can lift as per to our level o... | https://api.github.com/repos/geekcomputers/Python/pulls/1993 | 2023-10-05T12:40:52Z | 2023-10-08T07:17:28Z | 2023-10-08T07:17:28Z | 2023-10-08T07:17:29Z | 1,682 | geekcomputers/Python | 31,304 |
Update dice_rolling_simulator.py | diff --git a/dice_rolling_simulator.py b/dice_rolling_simulator.py
index 693a1b1ad8..afb91c3740 100644
--- a/dice_rolling_simulator.py
+++ b/dice_rolling_simulator.py
@@ -1,98 +1,77 @@
#Made on May 27th, 2017
#Made by SlimxShadyx
+#Editted by CaptMcTavish, June 17th, 2017
#Dice Rolling Simulator
import random
... | Someone suggested me not to use while too much, so tried to create an alternative.
I am a newbie and this is my first contribution!
A line in the previous code (The equivalent to which in the current code is line #26 said [10], which should have been [12], though its a minor slip, please fix it.) Thanks. | https://api.github.com/repos/geekcomputers/Python/pulls/185 | 2017-06-17T15:24:55Z | 2017-06-17T17:15:55Z | 2017-06-17T17:15:55Z | 2017-06-17T17:17:41Z | 1,488 | geekcomputers/Python | 31,236 |
Fixing a minor grammatical mistake | diff --git a/docs/use_cases/q_and_a/rag_cli.md b/docs/use_cases/q_and_a/rag_cli.md
index 3d17e7676a035..6e69103ded497 100644
--- a/docs/use_cases/q_and_a/rag_cli.md
+++ b/docs/use_cases/q_and_a/rag_cli.md
@@ -2,7 +2,7 @@
One common use case is chatting with an LLM about files you have saved locally on your computer.... | # 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)
## Type of Change
Please delete options that are not relevant.
- [ ] Bug fix (non-breaking change wh... | https://api.github.com/repos/run-llama/llama_index/pulls/10408 | 2024-02-02T08:37:07Z | 2024-02-02T20:34:27Z | 2024-02-02T20:34:27Z | 2024-02-02T20:34:27Z | 274 | run-llama/llama_index | 6,127 |
Make mypy pass on our tests | diff --git a/certbot-apache/certbot_apache/_internal/tests/apache-conf-files/apache-conf-test-pebble.py b/certbot-apache/certbot_apache/_internal/tests/apache-conf-files/apache-conf-test-pebble.py
index 68bd6287d75..383c652f8cf 100755
--- a/certbot-apache/certbot_apache/_internal/tests/apache-conf-files/apache-conf-tes... | Fixes https://github.com/certbot/certbot/issues/7909 after opening https://github.com/certbot/certbot/issues/9647.
This approach to getting a very small subset of mypy's tests passing on existing code is suggested in the mypy docs at https://mypy.readthedocs.io/en/stable/existing_code.html#start-small. | https://api.github.com/repos/certbot/certbot/pulls/9648 | 2023-03-30T17:45:29Z | 2023-03-30T22:20:44Z | 2023-03-30T22:20:44Z | 2023-03-30T22:20:45Z | 2,251 | certbot/certbot | 826 |
[3.7] bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403) | diff --git a/Lib/asyncio/base_events.py b/Lib/asyncio/base_events.py
index 34cc6252e77cb6..68a1ebe623b871 100644
--- a/Lib/asyncio/base_events.py
+++ b/Lib/asyncio/base_events.py
@@ -1097,7 +1097,7 @@ async def start_tls(self, transport, protocol, sslcontext, *,
if not getattr(transport, '_start_tls_compatib... | In addition to that, mark SSLTransport as "closed" in its "abort()" method to prevent bogus warnings.
(cherry picked from commit 415bc46a78e785f357c8960ae70f18a6b6cccbb6)
Co-authored-by: Yury Selivanov <yury@magic.io>
<!-- issue-number: bpo-33769 -->
https://bugs.python.org/issue33769
<!-- /issue-number -->
| https://api.github.com/repos/python/cpython/pulls/7428 | 2018-06-05T13:03:51Z | 2018-06-05T14:18:21Z | 2018-06-05T14:18:21Z | 2018-06-05T14:18:26Z | 604 | python/cpython | 4,195 |
typo fix "func" to "function" in testing.py | diff --git a/sklearn/utils/testing.py b/sklearn/utils/testing.py
index 47b37576348c0..63f2d8094b84d 100644
--- a/sklearn/utils/testing.py
+++ b/sklearn/utils/testing.py
@@ -406,12 +406,12 @@ def assert_raise_message(exceptions, message, function, *args, **kwargs):
exceptions : exception or tuple of exception
... | Hi,
I adjusted the docstring of the `assert_raise_message` function from "func" to "function" to match the function parameter (`def assert_raise_message(exceptions, message, function, *args, **kwargs)`).
However, I am wondering if we shouldn't change it to `func` instead:
`def assert_raise_message(exceptions, message... | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/6700 | 2016-04-22T21:02:24Z | 2016-07-01T19:50:40Z | 2016-07-01T19:50:40Z | 2016-07-01T19:50:44Z | 184 | scikit-learn/scikit-learn | 46,048 |
Manual: market structure: lot | diff --git a/wiki/Manual.md b/wiki/Manual.md
index bec86bc93cee..ad93fd72447a 100644
--- a/wiki/Manual.md
+++ b/wiki/Manual.md
@@ -430,6 +430,7 @@ In terms of the ccxt library, every exchange offers multiple markets within itse
'amount': 8, // integer
'cost': 8, // integer
},
+ 'lo... | https://api.github.com/repos/ccxt/ccxt/pulls/1676 | 2018-01-31T20:12:21Z | 2018-02-01T08:06:35Z | 2018-02-01T08:06:35Z | 2018-02-01T08:08:46Z | 402 | ccxt/ccxt | 13,516 | |
No pylint in py2.6 tox | diff --git a/docs/project.rst b/docs/project.rst
index fa59c1af3eb..5da350cfb71 100644
--- a/docs/project.rst
+++ b/docs/project.rst
@@ -69,7 +69,6 @@ In order to generate the Sphinx documentation, run the following commands.
::
- ./venv/bin/python setup.py docs
cd docs
make clean html SPHINXBUILD=../... | This might help with some Travis builds failing...
| https://api.github.com/repos/certbot/certbot/pulls/234 | 2015-02-06T23:42:59Z | 2015-02-07T22:09:38Z | 2015-02-07T22:09:38Z | 2016-05-06T19:21:27Z | 620 | certbot/certbot | 2,057 |
Make the onnx submodule init lazy | diff --git a/src/transformers/onnx/__init__.py b/src/transformers/onnx/__init__.py
index a80567e202b0e..7419e8c21b516 100644
--- a/src/transformers/onnx/__init__.py
+++ b/src/transformers/onnx/__init__.py
@@ -13,6 +13,24 @@
# See the License for the specific language governing permissions and
# limitations under the ... | # What does this PR do?
The `onnx` submodule does not use a lazy init like the other ones. This results in importing a given model/tokenzier/config, which imports OnnxConfig, initializing the onnx submodule completely, and in turn importing `PreTrainedModel` and `TFPreTrainedModel` (so PyTorch and TensorFlow).
Th... | https://api.github.com/repos/huggingface/transformers/pulls/14855 | 2021-12-20T20:48:48Z | 2021-12-21T08:11:26Z | 2021-12-21T08:11:26Z | 2021-12-21T08:11:26Z | 335 | huggingface/transformers | 12,197 |
llama.cpp: fix ban_eos_token | diff --git a/modules/llamacpp_model.py b/modules/llamacpp_model.py
index 44bb61f72a..951267ef51 100644
--- a/modules/llamacpp_model.py
+++ b/modules/llamacpp_model.py
@@ -120,7 +120,7 @@ def generate(self, prompt, state, callback=None):
logit_processors = LogitsProcessorList()
if state['ban_eos_toke... | - [x] I have read the [Contributing guidelines](https://github.com/oobabooga/text-generation-webui/wiki/Contributing-guidelines).
***
Fixes this exception when attempting to ban the EOS token with llama.cpp:
```
Traceback (most recent call last):
File "/home/cebtenzzre/src/forks/text-generation-webui/modules/t... | https://api.github.com/repos/oobabooga/text-generation-webui/pulls/3987 | 2023-09-18T05:01:14Z | 2023-09-18T15:15:02Z | 2023-09-18T15:15:02Z | 2023-09-18T15:15:02Z | 176 | oobabooga/text-generation-webui | 26,464 |
Remove urllib3-specific kwargs from non-urllib3 branch. | diff --git a/requests/models.py b/requests/models.py
index 6600a91a0f..3672b3774d 100644
--- a/requests/models.py
+++ b/requests/models.py
@@ -544,7 +544,7 @@ def generate():
except AttributeError:
# Standard file-like object.
while 1:
- chunk = self.raw... | As pointed out by @lukesneeringer in #1395, the kwargs in the non-urllib3 branch of the `iter_content` code are urllib3 specific. This PR will finish the split I originally made in #1425.
/cc @sigmavirus24 and @lukesneeringer who have both done work that has been rendered unnecessary (though not useless) by this chang... | https://api.github.com/repos/psf/requests/pulls/1441 | 2013-07-04T09:41:43Z | 2013-07-15T13:22:41Z | 2013-07-15T13:22:41Z | 2021-09-08T23:05:14Z | 114 | psf/requests | 32,602 |
Fixed #31046 -- Allowed RelatedManager.add()/create()/set() to accept callable values in through_defaults. | diff --git a/django/db/models/fields/related_descriptors.py b/django/db/models/fields/related_descriptors.py
index ec603bc8afde0..a9445d5d10768 100644
--- a/django/db/models/fields/related_descriptors.py
+++ b/django/db/models/fields/related_descriptors.py
@@ -68,6 +68,7 @@ class Child(Model):
from django.db.models im... | ticket-31046 | https://api.github.com/repos/django/django/pulls/12161 | 2019-11-29T17:06:08Z | 2019-12-03T19:07:46Z | 2019-12-03T19:07:46Z | 2019-12-03T20:24:06Z | 2,888 | django/django | 51,195 |
ImportError: No module named 'requests.packages.urllib3.util' | diff --git a/setup.py b/setup.py
index 879d94a636..c25b36805d 100755
--- a/setup.py
+++ b/setup.py
@@ -21,7 +21,8 @@
'requests.packages.urllib3',
'requests.packages.urllib3.packages',
'requests.packages.urllib3.contrib',
- 'requests.packages.urllib3.packages.ssl_match_hostname'
+ 'requests.packages... | I'm using Python 3.4. I get this error from `import requests`:
```
Traceback (most recent call last):
File "devwiki.py", line 4, in <module>
import requests
File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/site-packages/requests-2.3.0-py3.4.egg/requests/__init__.py", line 58, in <module>
... | https://api.github.com/repos/psf/requests/pulls/2026 | 2014-04-29T17:52:26Z | 2014-05-02T19:09:39Z | 2014-05-02T19:09:39Z | 2021-09-09T00:01:26Z | 125 | psf/requests | 32,712 |
bump CI steps and dependencies | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 5436e363e8..701632e74d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v2
with:
persist-credentials: false
- - uses: TrueBrain/actions-flak... | The codecov bash uploader is deprecated and will experience deliberate brown-outs: https://about.codecov.io/blog/introducing-codecovs-new-uploader/
This PR bump all external/3rd party CI actions to the most recent releases.
I've already allowed the new commit hashes (in addition to the old/existing ones.
After mer... | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/4875 | 2021-10-20T17:54:30Z | 2021-10-21T20:10:23Z | 2021-10-21T20:10:23Z | 2021-10-21T20:10:26Z | 683 | mitmproxy/mitmproxy | 28,241 |
Test on Python 3.10 | diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml
index daae6668b0..75231110ae 100644
--- a/.github/workflows/python-package.yml
+++ b/.github/workflows/python-package.yml
@@ -14,8 +14,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
+ fail-fast: false
matrix:
-... | “3.10” must be quoted or yaml will treat it as 3.1. | https://api.github.com/repos/soimort/you-get/pulls/2932 | 2021-10-24T05:58:40Z | 2021-11-02T20:41:54Z | 2021-11-02T20:41:54Z | 2022-09-17T16:51:57Z | 322 | soimort/you-get | 21,405 |
[TikTok] Properly pass cookies to formats | diff --git a/yt_dlp/extractor/tiktok.py b/yt_dlp/extractor/tiktok.py
index ac537643abd..c44fd49b0b9 100644
--- a/yt_dlp/extractor/tiktok.py
+++ b/yt_dlp/extractor/tiktok.py
@@ -161,6 +161,10 @@ def extract_addr(addr, add_meta={}):
}))
self._remove_duplicate_formats(formats)
+ auth_coo... | ## Please follow the guide below
- You will be asked some questions, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *pull request* (like that [x])
- Use *Preview* tab to see how your *pull request* will actually look like
---
### Before submitting a *p... | https://api.github.com/repos/yt-dlp/yt-dlp/pulls/2171 | 2021-12-30T06:17:45Z | 2021-12-31T20:10:46Z | 2021-12-31T20:10:46Z | 2021-12-31T20:10:46Z | 182 | yt-dlp/yt-dlp | 8,112 |
Ensure --fullchain-path gets put under paths in --help all | diff --git a/certbot/cli.py b/certbot/cli.py
index 5b8711da6c4..0faf4a7c6ba 100644
--- a/certbot/cli.py
+++ b/certbot/cli.py
@@ -1155,7 +1155,7 @@ def _paths_parser(helpful):
default_cp = None
if verb == "certonly":
default_cp = flag_default("auth_chain_path")
- add(["install", "paths"], "--fullch... | Addresses #4331 | https://api.github.com/repos/certbot/certbot/pulls/4420 | 2017-03-27T19:21:24Z | 2017-03-28T21:08:57Z | 2017-03-28T21:08:57Z | 2022-07-19T18:06:21Z | 196 | certbot/certbot | 3,676 |
Add WordPress.org | diff --git a/data.json b/data.json
index 816996fa5..d4b5852fa 100644
--- a/data.json
+++ b/data.json
@@ -1270,6 +1270,14 @@
"username_claimed": "blue",
"username_unclaimed": "noonewouldeverusethis7"
},
+ "WordPressOrg": {
+ "errorType": "response_url",
+ "errorUrl": "https://wordpress.org",
+ ... | This is different from dot com version which is for blogs. | https://api.github.com/repos/sherlock-project/sherlock/pulls/275 | 2019-07-22T22:01:24Z | 2019-07-23T07:00:29Z | 2019-07-23T07:00:29Z | 2019-07-23T08:43:00Z | 239 | sherlock-project/sherlock | 36,530 |
Revert "This is just for my practice :))))🕺" | diff --git a/VoiceRepeater/readme.md b/VoiceRepeater/readme.md
index 201884f8b0..725aa607cc 100644
--- a/VoiceRepeater/readme.md
+++ b/VoiceRepeater/readme.md
@@ -9,7 +9,3 @@
### And plays it!
### Requirements: Python, SpeechRecognition and playsound
-
-
-
-I am just trying to contribute please let me do this.....t... | https://api.github.com/repos/geekcomputers/Python/pulls/1958 | 2023-08-08T11:18:35Z | 2023-08-08T11:19:57Z | 2023-08-08T11:19:57Z | 2023-08-08T12:26:13Z | 103 | geekcomputers/Python | 31,747 | |
DOC make documentation consistent regarding types in _encoders.py | diff --git a/sklearn/preprocessing/_encoders.py b/sklearn/preprocessing/_encoders.py
index d3f557d2993cb..65e86e512e381 100644
--- a/sklearn/preprocessing/_encoders.py
+++ b/sklearn/preprocessing/_encoders.py
@@ -406,7 +406,7 @@ def fit(self, X, y=None):
Parameters
----------
- X : array-like... | Some nitpicks regarding the documentation style | https://api.github.com/repos/scikit-learn/scikit-learn/pulls/19876 | 2021-04-13T10:01:15Z | 2021-04-13T10:27:14Z | 2021-04-13T10:27:14Z | 2021-04-13T10:27:14Z | 912 | scikit-learn/scikit-learn | 46,522 |
[chore] fix rawsec url | diff --git a/Insecure Deserialization/PHP.md b/Insecure Deserialization/PHP.md
index 57c513b187..6e6aabe7b5 100644
--- a/Insecure Deserialization/PHP.md
+++ b/Insecure Deserialization/PHP.md
@@ -215,7 +215,6 @@ A valid PHAR includes four elements:
$phar->stopBuffering();
```
-
## Real world examples
*... | fixing domain since the old one got compromised | https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/615 | 2023-01-11T22:20:08Z | 2023-01-12T08:57:27Z | 2023-01-12T08:57:27Z | 2023-01-12T13:26:03Z | 633 | swisskyrepo/PayloadsAllTheThings | 8,535 |
Fix EyeEm/CreativeMarket/EVE Online False Positives | diff --git a/data.json b/data.json
index 84412975e..94e7707f6 100644
--- a/data.json
+++ b/data.json
@@ -153,7 +153,8 @@
"urlMain": "https://coroflot.com/"
},
"CreativeMarket": {
- "errorType": "status_code",
+ "errorType": "response_url",
+ "errorUrl": "https://www.creativemarket.com/",
"url":... | This is the fix for #140.
Change EyeEm/CreativeMarket/EVE Online detection method to use the newly refurbished "response_url" detection method. | https://api.github.com/repos/sherlock-project/sherlock/pulls/144 | 2019-01-24T01:19:09Z | 2019-01-24T01:22:54Z | 2019-01-24T01:22:54Z | 2019-02-10T16:40:55Z | 620 | sherlock-project/sherlock | 36,310 |
Python general purpose ML library added | diff --git a/README.md b/README.md
index 7566d68f..f3f41c47 100644
--- a/README.md
+++ b/README.md
@@ -767,6 +767,7 @@ on MNIST digits[DEEP LEARNING]
<a name="python-general-purpose"></a>
#### General-Purpose Machine Learning
+* [CNTK](https://github.com/Microsoft/CNTK) - Microsoft Cognitive Toolkit (CNTK), an open... | Added **Microsoft's CNTK** library (a Deep Learning toolkit) under Python. | https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/438 | 2017-10-16T03:28:16Z | 2017-10-22T10:09:39Z | 2017-10-22T10:09:39Z | 2017-10-22T10:09:39Z | 349 | josephmisiti/awesome-machine-learning | 51,983 |
Add tab and carriage return to invalid filename chars | diff --git a/modules/images.py b/modules/images.py
index 38aa933d6e5..ba3c43a4509 100644
--- a/modules/images.py
+++ b/modules/images.py
@@ -318,7 +318,7 @@ def resize(im, w, h):
return res
-invalid_filename_chars = '<>:"/\\|?*\n'
+invalid_filename_chars = '<>:"/\\|?*\n\r\t'
invalid_filename_prefix = ' '... | Closes #4685
## Checklist:
- [x] I have read [contributing wiki page](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contributing)
- [x] I have performed a self-review of my own code
- [x] My code follows the [style guidelines](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contribut... | https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/12327 | 2023-08-05T03:00:30Z | 2023-08-05T04:47:07Z | 2023-08-05T04:47:07Z | 2024-03-04T23:28:10Z | 133 | AUTOMATIC1111/stable-diffusion-webui | 40,054 |
Fix broken anchors | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 2eeb06c42..fd4c4cbad 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -42,7 +42,7 @@ You can [read an explanation of the scope and structure of this Guide](#S-abstra
* [T: Templates and generic programming](#S-templates)
* [CPL: C-style pro... | * Standard library and GSL anchors do not work anymore. | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/2038 | 2023-02-15T18:40:34Z | 2023-02-17T16:31:07Z | 2023-02-17T16:31:07Z | 2023-02-17T16:31:22Z | 2,247 | isocpp/CppCoreGuidelines | 15,613 |
lazy import PyMuPDF | diff --git a/ppocr/utils/utility.py b/ppocr/utils/utility.py
index 47461d7d5e..91b74f022d 100755
--- a/ppocr/utils/utility.py
+++ b/ppocr/utils/utility.py
@@ -107,7 +107,8 @@ def check_and_read(img_path):
imgvalue = frame[:, :, ::-1]
return imgvalue, True, False
elif os.path.basename(img_path)[-3... | To address the compatibility issues caused by PyMuPDF dependency.
- license compatibility: #11634, ##8873
- env compatibility: #11119,#7934, #11662
- and you can see more discussions by searing PyMuPDF in issues.
This pull request proposes a lazy import for PyMuPDF. This means:
- No PyMuPDF dependency: PyMu... | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/11685 | 2024-03-06T07:59:09Z | 2024-03-07T03:23:05Z | 2024-03-07T03:23:05Z | 2024-03-27T12:26:58Z | 372 | PaddlePaddle/PaddleOCR | 41,849 |
Fix typos found by codespell | diff --git a/bootstrap/_suse_common.sh b/bootstrap/_suse_common.sh
index 4b41bac36a2..46f9d693bf4 100755
--- a/bootstrap/_suse_common.sh
+++ b/bootstrap/_suse_common.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-# SLE12 dont have python-virtualenv
+# SLE12 don't have python-virtualenv
zypper -nq in -l git-core \
python \
diff... | Signed-off-by: Stefan Weil sw@weilnetz.de
| https://api.github.com/repos/certbot/certbot/pulls/1562 | 2015-11-18T21:43:47Z | 2015-11-19T00:20:24Z | 2015-11-19T00:20:24Z | 2016-05-06T19:22:35Z | 440 | certbot/certbot | 552 |
Extend "when necessary" explanation | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 1ae151b02..427b09911 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -9214,7 +9214,7 @@ The default is the easiest to read and write.
##### Note
-Specifying the underlying type is necessary in forward declarations of enumerations:
+Spec... | Extend Enum.7 `Note` section for #1977 | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/2000 | 2022-11-28T17:13:35Z | 2022-12-01T22:25:22Z | 2022-12-01T22:25:22Z | 2022-12-01T22:25:25Z | 192 | isocpp/CppCoreGuidelines | 15,981 |
Bump pypa/cibuildwheel from 2.16.1 to 2.16.2 | diff --git a/.github/workflows/pypi_upload.yml b/.github/workflows/pypi_upload.yml
index 41ab646079..a57013d67c 100644
--- a/.github/workflows/pypi_upload.yml
+++ b/.github/workflows/pypi_upload.yml
@@ -88,7 +88,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- - uses: pypa/cibuildwheel@v2.16.1
+ ... | Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.16.1 to 2.16.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/pypa/cibuildwheel/releases">pypa/cibuildwheel's releases</a>.</em></p>
<blockquote>
<h2>v2.16.2</h2>
<ul>
<li>🛠 Updates CPython 3.12 version ... | https://api.github.com/repos/psf/black/pulls/3934 | 2023-10-09T06:29:42Z | 2023-10-09T14:00:49Z | 2023-10-09T14:00:49Z | 2023-10-09T14:00:51Z | 141 | psf/black | 24,131 |
Add object segmentation papers | diff --git a/README.md b/README.md
index b8995b8..a6080b9 100644
--- a/README.md
+++ b/README.md
@@ -323,14 +323,16 @@ I would continue adding papers to this roadmap.
## 3.14 Other Frontiers
+## 3.15 Object Segmentation
+**[1]** J. Long, E. Shelhamer, and T. Darrell, “**Fully convolutional networks for semantic ... | https://api.github.com/repos/floodsung/Deep-Learning-Papers-Reading-Roadmap/pulls/37 | 2016-12-29T02:28:45Z | 2017-01-03T03:15:25Z | 2017-01-03T03:15:25Z | 2017-01-03T03:15:25Z | 454 | floodsung/Deep-Learning-Papers-Reading-Roadmap | 51,713 | |
Bagatur/runnable with fallbacks | diff --git a/libs/langchain/langchain/callbacks/manager.py b/libs/langchain/langchain/callbacks/manager.py
index 1a0f6ac0a09c62..7016a13ed952bc 100644
--- a/libs/langchain/langchain/callbacks/manager.py
+++ b/libs/langchain/langchain/callbacks/manager.py
@@ -730,7 +730,7 @@ def on_chain_end(self, outputs: Dict[str, Any... | https://api.github.com/repos/langchain-ai/langchain/pulls/8543 | 2023-07-31T21:02:44Z | 2023-08-04T21:06:05Z | 2023-08-04T21:06:05Z | 2023-08-04T21:06:06Z | 2,969 | langchain-ai/langchain | 43,235 | |
🌐 Add Japanese translation for Tutorial - Static files | diff --git a/docs/ja/docs/tutorial/static-files.md b/docs/ja/docs/tutorial/static-files.md
new file mode 100644
index 0000000000000..fcc3ba924c643
--- /dev/null
+++ b/docs/ja/docs/tutorial/static-files.md
@@ -0,0 +1,53 @@
+# 静的ファイル
+
+`StaticFiles` を使用して、ディレクトリから静的ファイルを自動的に提供できます。
+
+## `aiofiles` をインストール
+
+まず、`aiofil... | This PR translates tutorial/static-files.md in Japanese. | https://api.github.com/repos/tiangolo/fastapi/pulls/2260 | 2020-10-28T14:13:47Z | 2021-02-07T17:38:11Z | 2021-02-07T17:38:11Z | 2021-05-05T08:11:31Z | 822 | tiangolo/fastapi | 23,183 |
Add libjpeg-dev required for Pillow install | diff --git a/Dockerfile.dev b/Dockerfile.dev
index 582fecdde6a20..fb2cc63d48186 100644
--- a/Dockerfile.dev
+++ b/Dockerfile.dev
@@ -32,6 +32,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
git \
libffi-dev \
+ libjpeg-dev \
libpq-dev \
l... | Fixes Pillow installation in the docker container
| https://api.github.com/repos/getsentry/sentry/pulls/3438 | 2016-06-07T16:27:54Z | 2016-06-07T16:28:38Z | 2016-06-07T16:28:38Z | 2020-12-23T15:03:14Z | 111 | getsentry/sentry | 44,083 |
cex ohlcv timeframes | diff --git a/js/cex.js b/js/cex.js
index 70e3ae1e8a47..8bfbb0a249f0 100644
--- a/js/cex.js
+++ b/js/cex.js
@@ -36,6 +36,8 @@ module.exports = class cex extends Exchange {
},
'timeframes': {
'1m': '1m',
+ '1h': '1h',
+ '1d': '1d',
},
... | https://cex.io/rest-api#historical-1m-ohlcv-chart | https://api.github.com/repos/ccxt/ccxt/pulls/10762 | 2021-12-02T13:38:48Z | 2021-12-02T14:49:51Z | 2021-12-02T14:49:51Z | 2021-12-02T14:49:51Z | 165 | ccxt/ccxt | 13,618 |
update vendored urllib3 | diff --git a/requests/packages/urllib3/connectionpool.py b/requests/packages/urllib3/connectionpool.py
index 51c87f58ad..f93e2dfba1 100644
--- a/requests/packages/urllib3/connectionpool.py
+++ b/requests/packages/urllib3/connectionpool.py
@@ -9,7 +9,7 @@
import errno
from socket import error as SocketError, timeout... | Contains a workaround (fingerprint, random hostname verification) and a solution (pyOpenSSL) for SNI on python 2.
Intended to be included in 1.2 (#1267)
| https://api.github.com/repos/psf/requests/pulls/1268 | 2013-03-28T12:53:24Z | 2013-03-31T05:27:59Z | 2013-03-31T05:27:59Z | 2021-09-08T23:08:31Z | 3,533 | psf/requests | 32,510 |
fix #2738 | diff --git a/mitmproxy/tools/console/window.py b/mitmproxy/tools/console/window.py
index 87680f6eef..6d49e8b1ef 100644
--- a/mitmproxy/tools/console/window.py
+++ b/mitmproxy/tools/console/window.py
@@ -234,28 +234,34 @@ def pop(self, *args, **kwargs):
self.view_changed()
self.focus_changed()
... | This fixes #2738 by changing the semantics of `Window.current` and `Window.current_window`: If the focused pane shows a different widget, we now check if maybe the unfocused pane contains a matching widget and if so, return that. This is particularly nice because we can now use the command reference on the right pane t... | https://api.github.com/repos/mitmproxy/mitmproxy/pulls/2755 | 2018-01-04T14:59:46Z | 2018-01-04T15:36:24Z | 2018-01-04T15:36:24Z | 2018-01-04T15:36:27Z | 467 | mitmproxy/mitmproxy | 28,317 |
Update docs to reflect changes for Sentry 8.4 | diff --git a/docs/cli/init/index.rst b/docs/cli/init/index.rst
index ac54108f01087..ac0a0852d3a28 100644
--- a/docs/cli/init/index.rst
+++ b/docs/cli/init/index.rst
@@ -6,4 +6,5 @@ Initialize new configuration directory.
Options
```````
+- ``--dev``: Use settings more conducive to local development.
- ``--help``: ... | @getsentry/infrastructure
| https://api.github.com/repos/getsentry/sentry/pulls/3149 | 2016-04-29T23:16:55Z | 2016-05-02T17:22:26Z | 2016-05-02T17:22:26Z | 2020-12-23T16:53:24Z | 960 | getsentry/sentry | 44,320 |
Add Subaru gearShifter to carstate | diff --git a/selfdrive/car/subaru/carstate.py b/selfdrive/car/subaru/carstate.py
index a6cd6e9f319966..669624519e303f 100644
--- a/selfdrive/car/subaru/carstate.py
+++ b/selfdrive/car/subaru/carstate.py
@@ -1,5 +1,6 @@
import copy
from cereal import car
+from opendbc.can.can_define import CANDefine
from selfdrive.co... | This PR adds gearShifter to Subaru carstate. Prerequiste to merging is opendbc PR https://github.com/commaai/opendbc/pull/221 which adds Transmission message and Gears values to subaru_global_2017.dbc. Tested and working on Crosstrek 2018 | https://api.github.com/repos/commaai/openpilot/pulls/1318 | 2020-04-05T18:42:32Z | 2020-04-07T18:55:18Z | 2020-04-07T18:55:18Z | 2020-05-11T23:11:07Z | 779 | commaai/openpilot | 9,774 |
kodi fanart fix (basic auth) | diff --git a/homeassistant/components/media_player/kodi.py b/homeassistant/components/media_player/kodi.py
index 68161deea2f95c..9676fe451c75d0 100644
--- a/homeassistant/components/media_player/kodi.py
+++ b/homeassistant/components/media_player/kodi.py
@@ -76,11 +76,17 @@ def __init__(self, name, url, auth=None, turn... | **Description:**
Was unable to retrieve the fanart when username and password was used.
Another url had to be used which included the username/password.
**Related issue (if applicable):** fixes #3383
**Pull request in [home-assistant.github.io](https://github.com/home-assistant/home-assistant.github.io) with d... | https://api.github.com/repos/home-assistant/core/pulls/4930 | 2016-12-15T20:24:36Z | 2016-12-16T05:35:01Z | 2016-12-16T05:35:01Z | 2017-03-17T16:18:13Z | 351 | home-assistant/core | 39,381 |
Update run_code.py | diff --git a/metagpt/actions/run_code.py b/metagpt/actions/run_code.py
index 1bc5cc13a..f14a6a8e7 100644
--- a/metagpt/actions/run_code.py
+++ b/metagpt/actions/run_code.py
@@ -27,7 +27,7 @@
Determine the ONE file to rewrite in order to fix the error, for example, xyz.py, or test_xyz.py
## Status:
Determine if all o... | Typo | https://api.github.com/repos/geekan/MetaGPT/pulls/144 | 2023-08-07T15:46:36Z | 2023-08-10T12:18:51Z | 2023-08-10T12:18:51Z | 2023-08-10T12:18:52Z | 200 | geekan/MetaGPT | 16,942 |
I: Enforcement fixes/completion | diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md
index 8df991e15..53afef356 100644
--- a/CppCoreGuidelines.md
+++ b/CppCoreGuidelines.md
@@ -1664,7 +1664,7 @@ so the default is "no ownership transfer."
* (Simple) Warn on `delete` of a raw pointer that is not an `owner`.
* (Simple) Warn on failure to either ... | https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/825 | 2017-01-01T01:02:32Z | 2017-01-30T19:19:56Z | 2017-01-30T19:19:56Z | 2017-01-31T01:39:57Z | 353 | isocpp/CppCoreGuidelines | 15,738 | |
Watch all page scripts when installing local_source_watchers | diff --git a/lib/streamlit/watcher/local_sources_watcher.py b/lib/streamlit/watcher/local_sources_watcher.py
index 97373230d4e4..0cf7a304cc03 100644
--- a/lib/streamlit/watcher/local_sources_watcher.py
+++ b/lib/streamlit/watcher/local_sources_watcher.py
@@ -24,6 +24,7 @@
from streamlit.logger import get_logger
fro... | ## 📚 Context
In the multipage apps world, we will often have >1 "root" script to keep track of.
This PR simply changes `local_sources_watcher` to watch the script file for each
page returned by `get_pages`.
- What kind of change does this PR introduce?
- [x] Feature
## 🧠 Description of Changes
- ... | https://api.github.com/repos/streamlit/streamlit/pulls/4481 | 2022-03-07T22:52:20Z | 2022-03-09T00:05:13Z | 2022-03-09T00:05:13Z | 2022-03-09T00:05:16Z | 635 | streamlit/streamlit | 21,915 |
Spaces have a compatible method which determines if 2 Spaces are of t… | diff --git a/gym/core.py b/gym/core.py
index f0204e9dedb..5bbb1250f48 100644
--- a/gym/core.py
+++ b/gym/core.py
@@ -184,6 +184,24 @@ def from_jsonable(self, sample_n):
# By default, assume identity is JSONable
return sample_n
+ def compatible(self, space):
+ """
+ Return boolean sp... | …he same shape, ignoring bounds. | https://api.github.com/repos/openai/gym/pulls/871 | 2018-02-08T18:49:47Z | 2018-02-08T20:53:48Z | 2018-02-08T20:53:48Z | 2018-02-08T20:56:56Z | 1,441 | openai/gym | 5,529 |
fix in "Layer.compute_output_shape" description | diff --git a/keras/engine/base_layer.py b/keras/engine/base_layer.py
index 0482fe7bb52..3dac15be7e4 100644
--- a/keras/engine/base_layer.py
+++ b/keras/engine/base_layer.py
@@ -580,7 +580,7 @@ def compute_output_shape(self, input_shape):
instead of an integer.
# Returns
- An input... | <!--
Please make sure you've read and understood our contributing guidelines;
https://github.com/keras-team/keras/blob/master/CONTRIBUTING.md
-->
### Summary
### Related Issues
Fixed a logical error in the description of "Layer.compute_output_shape" method
### PR Overview
- [n] This PR requires new unit t... | https://api.github.com/repos/keras-team/keras/pulls/13210 | 2019-08-11T20:07:00Z | 2019-09-11T20:39:40Z | 2019-09-11T20:39:40Z | 2019-09-11T20:39:40Z | 112 | keras-team/keras | 47,778 |
[3.8] bpo-37819: Add Fraction.as_integer_ratio() (GH-15212) | diff --git a/Doc/library/fractions.rst b/Doc/library/fractions.rst
index b5a818e1cafa61..58e7126b0bf212 100644
--- a/Doc/library/fractions.rst
+++ b/Doc/library/fractions.rst
@@ -94,6 +94,13 @@ another rational number, or from a string.
Denominator of the Fraction in lowest term.
+ .. method:: as_integer_r... | (cherry picked from commit f03b4c8a48f62134799d368b78da35301af466a3)
Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
<!-- issue-number: [bpo-37819](https://bugs.python.org/issue37819) -->
https://bugs.python.org/issue37819
<!-- /issue-number -->
| https://api.github.com/repos/python/cpython/pulls/15215 | 2019-08-11T21:41:09Z | 2019-08-11T22:02:24Z | 2019-08-11T22:02:24Z | 2019-08-11T22:20:33Z | 772 | python/cpython | 4,031 |
fixed download badge link | diff --git a/README.md b/README.md
index 9d0b29af21..b257c333f0 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
<a href="https://coveralls.io/github/psf/black?branch=main"><img alt="Coverage Status" src="https://coveralls.io/repos/github/psf/black/badge.svg?branch=main"></a>
<a href="https://github.com/psf/bla... | <!-- Hello! Thanks for submitting a PR. To help make things go a bit more
smoothly we would appreciate that you go through this template. -->
### Description
Fixed the broken badge link in main readme, picture of how it was can be seen in the [issue](https://github.com/psf/black/issues/3852)
### Checklis... | https://api.github.com/repos/psf/black/pulls/3853 | 2023-08-22T19:24:55Z | 2023-08-22T19:40:10Z | 2023-08-22T19:40:10Z | 2023-08-22T19:54:32Z | 338 | psf/black | 23,940 |
Add ops.is_tensor to the public API | diff --git a/keras/ops/core.py b/keras/ops/core.py
index 84bf88dcefe..217fd2b5c2c 100644
--- a/keras/ops/core.py
+++ b/keras/ops/core.py
@@ -10,6 +10,7 @@
convert_to_tensor
convert_to_numpy
cond
+is_tensor
"""
import numpy as np
@@ -402,7 +403,7 @@ def unstack(x, num=None, axis=0):
def shape(x):
"""Gets th... | https://api.github.com/repos/keras-team/keras/pulls/18756 | 2023-11-09T22:59:27Z | 2023-11-11T00:48:29Z | 2023-11-11T00:48:29Z | 2023-11-11T00:48:33Z | 557 | keras-team/keras | 47,179 | |
remove defaults to None if optional | diff --git a/examples/research_projects/wav2vec2/run_asr.py b/examples/research_projects/wav2vec2/run_asr.py
index 5e62cb504eb12..410d5c2d3a622 100755
--- a/examples/research_projects/wav2vec2/run_asr.py
+++ b/examples/research_projects/wav2vec2/run_asr.py
@@ -144,7 +144,7 @@ class Orthography:
Args:
do_l... | PR to fix #11687
| https://api.github.com/repos/huggingface/transformers/pulls/11703 | 2021-05-12T12:30:51Z | 2021-05-12T13:11:11Z | 2021-05-12T13:11:11Z | 2021-05-12T13:11:11Z | 2,929 | huggingface/transformers | 12,417 |
fixed regexp to add support of unicode for strings | diff --git a/metagpt/actions/rebuild_sequence_view.py b/metagpt/actions/rebuild_sequence_view.py
index 0e67de908..2aac9bf20 100644
--- a/metagpt/actions/rebuild_sequence_view.py
+++ b/metagpt/actions/rebuild_sequence_view.py
@@ -486,7 +486,7 @@ def parse_participant(mermaid_sequence_diagram: str) -> List[str]:
... | **Features**
<!-- Clear and direct description of the submit features. -->
<!-- If it's a bug fix, please also paste the issue link. -->
- fixed regexp to add support of unicode for strings
**Feature Docs**
<!-- The RFC, tutorial, or use cases about the feature if it's a pretty big update. If not, there is n... | https://api.github.com/repos/geekan/MetaGPT/pulls/1079 | 2024-03-22T13:02:23Z | 2024-04-05T14:08:40Z | 2024-04-05T14:08:40Z | 2024-04-05T14:08:40Z | 180 | geekan/MetaGPT | 16,974 |
Add NFS path check for default deepspeed triton cache directory | diff --git a/deepspeed/ops/transformer/inference/triton/matmul_ext.py b/deepspeed/ops/transformer/inference/triton/matmul_ext.py
index d6f72b4efb0b..ad6b297ff20d 100644
--- a/deepspeed/ops/transformer/inference/triton/matmul_ext.py
+++ b/deepspeed/ops/transformer/inference/triton/matmul_ext.py
@@ -13,12 +13,36 @@
impo... | This PR adds explanation and guidance for users whose default caching dir is on a NFS.
Ref: https://github.com/microsoft/DeepSpeed/issues/5205 | https://api.github.com/repos/microsoft/DeepSpeed/pulls/5323 | 2024-03-28T00:27:22Z | 2024-03-28T20:54:44Z | 2024-03-28T20:54:44Z | 2024-04-01T02:55:18Z | 478 | microsoft/DeepSpeed | 10,475 |
#697: Encode expanded script on Python 2 | diff --git a/tests/output_readers/test_rerun.py b/tests/output_readers/test_rerun.py
index 632606c6f..1d3a2c82c 100644
--- a/tests/output_readers/test_rerun.py
+++ b/tests/output_readers/test_rerun.py
@@ -30,6 +30,11 @@ def test_get_output_invalid_continuation_byte(self, popen_mock):
actual = rerun.get_output(... | Fix #697 | https://api.github.com/repos/nvbn/thefuck/pulls/1224 | 2021-08-02T18:24:04Z | 2021-08-17T13:40:57Z | 2021-08-17T13:40:56Z | 2021-08-17T13:41:00Z | 561 | nvbn/thefuck | 30,907 |
fix for cpp | diff --git a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt b/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_linux_gpu_normal_normal_serving_python_linux_gpu_cpu.txt
index a19c8ee335..6e5cecf632 100644
--- a/test_tipc/configs/ch_ppocr_mobile_v2.0_det/model_li... | att | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/4733 | 2021-11-23T11:03:12Z | 2021-12-02T06:29:32Z | 2021-12-02T06:29:32Z | 2021-12-02T06:29:36Z | 1,267 | PaddlePaddle/PaddleOCR | 41,822 |
Change links to SQLAlchemy 1.4 | diff --git a/airflow/settings.py b/airflow/settings.py
index 43dd84eee8bef..a278316d5aadf 100644
--- a/airflow/settings.py
+++ b/airflow/settings.py
@@ -311,7 +311,7 @@ def prepare_engine_args(disable_connection_pool=False, pool_class=None):
# Typically, this is a simple statement like "SELECT 1", but may also... | <!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may ... | https://api.github.com/repos/apache/airflow/pulls/34288 | 2023-09-11T22:49:35Z | 2023-09-12T05:59:45Z | 2023-09-12T05:59:45Z | 2023-09-12T20:49:21Z | 663 | apache/airflow | 14,472 |
[1.1.x] Update release notes for 1.1.4 | diff --git a/docs/news.rst b/docs/news.rst
index 0e9efe6f6a8..723a33a823c 100644
--- a/docs/news.rst
+++ b/docs/news.rst
@@ -3,6 +3,12 @@
Release notes
=============
+1.1.4 (2017-03-03)
+------------------
+
+- Packaging fix: disallow unsupported Twisted versions in setup.py
+
+
1.1.3 (2016-09-22)
---------------... | https://api.github.com/repos/scrapy/scrapy/pulls/2619 | 2017-03-03T18:24:31Z | 2017-03-03T18:33:50Z | 2017-03-03T18:33:50Z | 2017-03-03T18:34:09Z | 196 | scrapy/scrapy | 34,209 | |
[openload] rewrite extractor | diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index eb465c425a3..033b50702c7 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -86,6 +86,7 @@
write_string,
YoutubeDLCookieProcessor,
YoutubeDLHandler,
+ PhantomJSwrapper,
)
from .cache import Cache
from .extractor... | ## Please follow the guide below
- You will be asked some questions, please read them **carefully** and answer honestly
- Put an `x` into all the boxes [ ] relevant to your *pull request* (like that [x])
- Use *Preview* tab to see how your *pull request* will actually look like
---
### Before submitting a *p... | https://api.github.com/repos/ytdl-org/youtube-dl/pulls/12754 | 2017-04-15T22:38:28Z | 2017-08-26T08:17:31Z | 2017-08-26T08:17:31Z | 2018-08-15T11:35:24Z | 3,596 | ytdl-org/youtube-dl | 50,591 |
Corrected typo. ceparated -> separated | diff --git a/doc/README-ja.md b/doc/README-ja.md
index 6ce0cd9e..e1a0cd72 100644
--- a/doc/README-ja.md
+++ b/doc/README-ja.md
@@ -225,7 +225,7 @@ cheat.shサービスには独自のコマンドラインクライアント( ch
update - self update (only if the scriptfile is writeable)
version - show current cht.sh version
/:help - service help
- QUERY -... | My first pull request :) | https://api.github.com/repos/chubin/cheat.sh/pulls/152 | 2019-08-18T21:26:11Z | 2019-08-19T05:16:47Z | 2019-08-19T05:16:47Z | 2019-08-19T05:17:00Z | 491 | chubin/cheat.sh | 15,129 |
Fix a bug of kie as null | diff --git a/PPOCRLabel/PPOCRLabel.py b/PPOCRLabel/PPOCRLabel.py
index 1b902484e2..5c89e6f894 100644
--- a/PPOCRLabel/PPOCRLabel.py
+++ b/PPOCRLabel/PPOCRLabel.py
@@ -1471,7 +1471,7 @@ def showBoundingBoxFromPPlabel(self, filePath):
# box['ratio'] of the shapes saved in lockedShapes contains the ratio of the
... | Fix a bug of kie as null | https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/6186 | 2022-05-09T01:38:23Z | 2022-05-09T01:38:31Z | 2022-05-09T01:38:31Z | 2022-05-09T01:38:31Z | 498 | PaddlePaddle/PaddleOCR | 42,690 |
fix: adjust parameters for upscale fast 2x | diff --git a/modules/async_worker.py b/modules/async_worker.py
index 2c029cfbe..908cc8c26 100644
--- a/modules/async_worker.py
+++ b/modules/async_worker.py
@@ -553,8 +553,8 @@ def handler(async_task):
direct_return = False
if direct_return:
- d = [('Upscale (Fast)', '2x')... | add missing key for upscale fast 2x for private log.html, use correct parameter for output_format | https://api.github.com/repos/lllyasviel/Fooocus/pulls/2411 | 2024-03-02T18:04:11Z | 2024-03-02T18:05:11Z | 2024-03-02T18:05:11Z | 2024-03-03T20:16:37Z | 171 | lllyasviel/Fooocus | 7,261 |
Skip on pyOpenSSL | diff --git a/tests/conftest.py b/tests/conftest.py
index 11e0d3486e..7ca172a867 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -1,4 +1,3 @@
-import os
import socket
import pytest
@@ -8,6 +7,7 @@
HTTPBIN_WITH_CHUNKED_SUPPORT_DOMAIN,
HTTPBIN_WITH_CHUNKED_SUPPORT,
REMOTE_HTTPBIN_DOMAIN,
+ ... | It might be one of the underlying dependencies, but when tested on both my environment and the latest CI this test constantly fails (from the time it was introduced to now). So either this test was never properly ran before or something changed in the SSL dependencies. (The failure is an error message mismatch, no beha... | https://api.github.com/repos/httpie/cli/pulls/1376 | 2022-04-28T09:29:53Z | 2022-04-28T12:18:21Z | 2022-04-28T12:18:21Z | 2022-04-28T12:18:21Z | 726 | httpie/cli | 33,743 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.