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
Adding PHP library
diff --git a/README.md b/README.md index d4b3c84..38cf5bf 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ Various implementations of the Big List of Naughty Strings have made it to vario | Node | https://www.npmjs.com/package/blns | | Node | https://www.npmjs.com/package/big-list-of-naughty-strings | | .NET...
https://api.github.com/repos/minimaxir/big-list-of-naughty-strings/pulls/206
2020-03-14T17:22:39Z
2020-04-19T16:13:25Z
2020-04-19T16:13:25Z
2020-04-19T16:13:25Z
160
minimaxir/big-list-of-naughty-strings
4,879
Added Arcade
diff --git a/README.md b/README.md index 608e44350..0ccb3354a 100644 --- a/README.md +++ b/README.md @@ -679,6 +679,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [Harfang3D](http://www.harfang3d.com) - Python framework for 3D, VR and game development. * [Panda3D](https://www.panda3d.org/) -...
## What is Arcade? The arcade library is a modern Python framework for crafting games with compelling graphics and sound. Object-oriented and built for Python 3.6 and up, arcade provides the programmer with a modern set of tools for crafting great Python game experiences. ## What's the difference between Arcade a...
https://api.github.com/repos/vinta/awesome-python/pulls/1575
2020-07-12T09:47:58Z
2020-07-12T16:51:01Z
2020-07-12T16:51:01Z
2020-07-12T16:51:01Z
285
vinta/awesome-python
27,259
use list instead of string, prevent injection attack.
diff --git a/utils/autoban.py b/utils/autoban.py index c7af0a5f6..52aa16351 100755 --- a/utils/autoban.py +++ b/utils/autoban.py @@ -24,9 +24,17 @@ from __future__ import absolute_import, division, print_function, \ with_statement -import os import sys +import socket import argparse +import subprocess + + +de...
fix issue: https://github.com/shadowsocks/shadowsocks/issues/995 Command Execution
https://api.github.com/repos/shadowsocks/shadowsocks/pulls/1009
2017-10-20T05:18:51Z
2018-02-19T02:42:32Z
2018-02-19T02:42:32Z
2018-02-19T02:42:44Z
509
shadowsocks/shadowsocks
24,716
bibox REVO -> Revo Network
diff --git a/js/bibox.js b/js/bibox.js index db6ccadfb801..aaf21910d9ea 100644 --- a/js/bibox.js +++ b/js/bibox.js @@ -138,6 +138,7 @@ module.exports = class bibox extends Exchange { 'MTC': 'MTC Mesh Network', // conflict with MTC Docademic doc.com Token https://github.com/ccxt/ccxt/issues/6081 https:/...
https://coinmarketcap.com/currencies/revo-network/markets/ conflict with https://coinmarketcap.com/currencies/revomon/markets/
https://api.github.com/repos/ccxt/ccxt/pulls/9936
2021-09-05T20:44:05Z
2021-09-05T21:07:20Z
2021-09-05T21:07:20Z
2021-09-05T21:07:20Z
162
ccxt/ccxt
13,041
Added automated gui creation library for command line apps
diff --git a/README.md b/README.md index b3f54a906..f7f05bfc8 100644 --- a/README.md +++ b/README.md @@ -259,6 +259,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [docopt](http://docopt.org/) - Pythonic command line arguments parser. * [colorama](https://pypi.python.or...
https://api.github.com/repos/vinta/awesome-python/pulls/207
2014-08-24T17:02:28Z
2014-08-26T15:08:46Z
2014-08-26T15:08:46Z
2014-08-26T15:08:46Z
266
vinta/awesome-python
27,124
replace utils.randombytes with os.urandom
diff --git a/requests/auth.py b/requests/auth.py index e636b72402..cb851d2cde 100644 --- a/requests/auth.py +++ b/requests/auth.py @@ -7,13 +7,14 @@ This module contains the authentication handlers for Requests. """ +import os import time import hashlib from base64 import b64encode from .compat import urlpa...
My understanding is that Python's `random` module is not recommended for cryptographic use. `os.urandom` should provide random bytes on all major platforms: Linux, OS X, *nix, and Windows: http://docs.python.org/library/os.html#os.urandom http://docs.python.org/release/3.0.1/library/os.html#os.urandom Since the funct...
https://api.github.com/repos/psf/requests/pulls/562
2012-04-24T09:06:04Z
2012-05-16T05:49:27Z
2012-05-16T05:49:27Z
2021-09-08T15:00:59Z
709
psf/requests
32,197
chore: Update setup
diff --git a/scripts/setup b/scripts/setup index 3e02e6413..edba10498 100755 --- a/scripts/setup +++ b/scripts/setup @@ -10,7 +10,7 @@ from private_gpt.settings.settings import settings resume_download = True if __name__ == '__main__': - parser = argparse.ArgumentParser(prog='Setup: Download models from huggingf...
huggingface -> Hugging Face
https://api.github.com/repos/zylon-ai/private-gpt/pulls/1770
2024-03-20T14:01:10Z
2024-03-20T19:23:08Z
2024-03-20T19:23:08Z
2024-03-20T19:23:08Z
151
zylon-ai/private-gpt
38,539
[`HFQuantizer`] Remove `check_packages_compatibility` logic
diff --git a/src/transformers/quantizers/base.py b/src/transformers/quantizers/base.py index c8eb8bacaa781..68adc3954df45 100644 --- a/src/transformers/quantizers/base.py +++ b/src/transformers/quantizers/base.py @@ -15,7 +15,6 @@ from typing import TYPE_CHECKING, Any, Dict, Optional, Union from ..utils import is_t...
# What does this PR do? Fixes the currently failing tests for AWQ: https://github.com/huggingface/transformers/actions/runs/7705429360/job/21003940543 I propose to remove the `check_package_compatiblity` logic in the `HfQuantizer` as:1 1- it is a duplicate of `validate_environment` 2- For some packages such as ...
https://api.github.com/repos/huggingface/transformers/pulls/28789
2024-01-31T02:05:21Z
2024-01-31T02:21:28Z
2024-01-31T02:21:28Z
2024-01-31T02:28:37Z
475
huggingface/transformers
12,153
Specify encoding when reading the user's script. Fixes #399
diff --git a/lib/streamlit/ScriptRunner.py b/lib/streamlit/ScriptRunner.py index b16d3b689257..f1cb545558b7 100644 --- a/lib/streamlit/ScriptRunner.py +++ b/lib/streamlit/ScriptRunner.py @@ -22,6 +22,7 @@ from streamlit import config from streamlit import magic +from streamlit import source_util from streamlit.Rep...
To solve #399 we need to specify the encoding as UTF8 when reading the user's script. So you'd think this is all we need to do: ``` open(the_file, encoding='utf-8') ``` But this doesn't always work because: 1) The `encoding` kwarg doesn't exist in Python 2 2) If we pass the `encoding` arg and it doesn't match...
https://api.github.com/repos/streamlit/streamlit/pulls/441
2019-10-17T06:45:05Z
2019-10-17T19:29:35Z
2019-10-17T19:29:34Z
2019-11-12T04:33:34Z
3,139
streamlit/streamlit
22,227
[test] fixed typo in test_format_note (test_YoutubeDL)
diff --git a/test/test_YoutubeDL.py b/test/test_YoutubeDL.py index 8735013f727..e794cc97f0e 100644 --- a/test/test_YoutubeDL.py +++ b/test/test_YoutubeDL.py @@ -67,7 +67,7 @@ def test_prefer_free_formats(self): downloaded = ydl.downloaded_info_dicts[0] self.assertEqual(downloaded['ext'], 'mp4') - ...
This test was introduced in c57f7757101690681af2eb8c40c8bf81bbe6e64f. For some reason, it tests if the format note begins with an `x` which is never the case?
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/2960
2014-05-21T08:06:18Z
2014-05-24T22:36:03Z
2014-05-24T22:36:03Z
2014-05-25T01:20:38Z
243
ytdl-org/youtube-dl
50,336
Cache proxy bypass
diff --git a/AUTHORS.rst b/AUTHORS.rst index 48cd155b49..e4a325bfe3 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -178,4 +178,5 @@ Patches and Suggestions - Moinuddin Quadri <moin18@gmail.com> (`@moin18 <https://github.com/moin18>`_) - Matt Kohl (`@mattkohl <https://github.com/mattkohl>`_) - Jonathan Vanasco (`@jvan...
Added simple cache over `urllib.proxy_bypass` to remedy #2988. Holds on to entries for a minute. Once it reaches its max size, will evict the first entry that is the oldest. Added tests over the structure, did not add a test that `should_bypass_proxies` invokes the cache. This is my first pull request; please let...
https://api.github.com/repos/psf/requests/pulls/3885
2017-02-22T04:21:30Z
2017-02-27T08:56:44Z
2017-02-27T08:56:44Z
2021-09-07T00:06:29Z
2,186
psf/requests
32,534
More detailed error logging for nginx plugin
diff --git a/certbot-nginx/certbot_nginx/configurator.py b/certbot-nginx/certbot_nginx/configurator.py index b80d95613cd..8d26fbe7b94 100644 --- a/certbot-nginx/certbot_nginx/configurator.py +++ b/certbot-nginx/certbot_nginx/configurator.py @@ -136,7 +136,9 @@ def prepare(self): """ # Verify Nginx is ...
This makes errors more useful when Nginx can't be found or when Nginx's configuration can't be found. Previously, a generic `NoInstallationError` isn't descriptive enough to explain _what_ wasn't installed or what failed without going digging into the source code. An error like: ``` The nginx plugin is not work...
https://api.github.com/repos/certbot/certbot/pulls/6175
2018-07-03T02:20:54Z
2018-09-12T23:48:51Z
2018-09-12T23:48:51Z
2018-09-12T23:48:51Z
349
certbot/certbot
1,059
Subaru: log EPS torque
diff --git a/opendbc b/opendbc index 3fcbe9db7211b2..e3704962060058 160000 --- a/opendbc +++ b/opendbc @@ -1 +1 @@ -Subproject commit 3fcbe9db7211b2f7524b80c351c7cf1f233c1e52 +Subproject commit e3704962060058c1ec1fb48a5aef767153d28fe7 diff --git a/selfdrive/car/subaru/carstate.py b/selfdrive/car/subaru/carstate.py inde...
https://api.github.com/repos/commaai/openpilot/pulls/25304
2022-07-28T23:28:41Z
2022-07-28T23:42:42Z
2022-07-28T23:42:42Z
2022-07-28T23:42:43Z
549
commaai/openpilot
9,252
Send the original response url to `urlparse` rather than the `Response` object
diff --git a/requests/cookies.py b/requests/cookies.py index 85726b0657..0415856160 100644 --- a/requests/cookies.py +++ b/requests/cookies.py @@ -39,7 +39,7 @@ def get_host(self): def get_origin_req_host(self): if self._r.response.history: r = self._r.response.history[0] - return ...
`urlparse` cannot handle `Response` objects, so the way this is written this code always results in an exception.
https://api.github.com/repos/psf/requests/pulls/668
2012-06-08T13:01:54Z
2012-06-09T11:30:19Z
2012-06-09T11:30:19Z
2021-09-08T15:01:16Z
120
psf/requests
32,908
Backport PR #38715 on branch 1.2.x (CI: pin jedi version<0.18.0)
diff --git a/ci/deps/azure-38-locale.yaml b/ci/deps/azure-38-locale.yaml index 90cd11037e472..15d503e8fd0a5 100644 --- a/ci/deps/azure-38-locale.yaml +++ b/ci/deps/azure-38-locale.yaml @@ -18,6 +18,7 @@ dependencies: - html5lib - ipython - jinja2 + - jedi<0.18.0 - lxml - matplotlib <3.3.0 - moto
Backport PR #38715: CI: pin jedi version<0.18.0
https://api.github.com/repos/pandas-dev/pandas/pulls/38716
2020-12-27T10:53:32Z
2020-12-27T12:55:05Z
2020-12-27T12:55:05Z
2020-12-27T12:55:06Z
138
pandas-dev/pandas
45,353
Add support for passthrough arguments to NumpyArrayIterator
diff --git a/keras/preprocessing/image.py b/keras/preprocessing/image.py index 35f14db1e7a..3e1de82d45a 100644 --- a/keras/preprocessing/image.py +++ b/keras/preprocessing/image.py @@ -672,9 +672,14 @@ def flow(self, x, y=None, batch_size=32, shuffle=True, seed=None, augmented/normalized data. #...
There have been some requests for more flexible behaviour for the ImageGenerator (see for example issue #9877). This pull request takes a step towards that direction (although it doesn't yet solve the problem in the issue I linked). I add a support for multiple input arguments in NumpyArrayIterator (and thus, the fl...
https://api.github.com/repos/keras-team/keras/pulls/10035
2018-04-25T09:25:24Z
2018-04-26T16:13:59Z
2018-04-26T16:13:59Z
2018-04-26T16:13:59Z
2,158
keras-team/keras
47,456
Update folder produced by download-model
diff --git a/docs/Using-LoRAs.md b/docs/Using-LoRAs.md index 0a679c0f24..fafd6cde2d 100644 --- a/docs/Using-LoRAs.md +++ b/docs/Using-LoRAs.md @@ -11,9 +11,9 @@ python download-model.py tloen/alpaca-lora-7b 2. Load the LoRA. 16-bit, 8-bit, and CPU modes work: ``` -python server.py --model llama-7b-hf --lora alpaca-...
See: https://github.com/oobabooga/text-generation-webui/blob/main/download-model.py#L160
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/1601
2023-04-27T14:57:32Z
2023-04-27T15:03:02Z
2023-04-27T15:03:02Z
2023-04-27T15:44:51Z
322
oobabooga/text-generation-webui
26,003
Install `deepspeed-kernels` only on Linux
diff --git a/requirements/requirements-dev.txt b/requirements/requirements-dev.txt index 105dd094f995..078386c457bd 100644 --- a/requirements/requirements-dev.txt +++ b/requirements/requirements-dev.txt @@ -1,7 +1,7 @@ accelerate clang-format==16.0.2 coverage -deepspeed-kernels +deepspeed-kernels ; sys_platform == '...
The package[^1] does not have sdists, and the only wheels it has are for Linux. The package therefore fails to install on any other platform. The solution to install the dev requirements on macOS is to skip the installation on incompatible OS's. [^1]: https://pypi.org/project/deepspeed-kernels/0.0.1.dev1698255861/#f...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/4739
2023-11-28T03:44:28Z
2023-11-28T21:45:30Z
2023-11-28T21:45:30Z
2023-11-28T21:45:31Z
111
microsoft/DeepSpeed
10,138
GitHub Workflows security hardening
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ffe5ea193c9..8825bdf389f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,6 +1,9 @@ name: build on: [pull_request, push] +permissions: + contents: read # to fetch code (actions/checkout) + jobs: build: ...
This PR adds explicit [permissions section](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions) to workflows. This is a security best practice because by default workflows run with [extended set of permissions](https://docs.github.com/en/actions/security-guides/automatic-t...
https://api.github.com/repos/openai/gym/pulls/3094
2022-09-24T19:54:54Z
2022-09-27T13:43:38Z
2022-09-27T13:43:38Z
2023-05-20T14:49:36Z
224
openai/gym
5,043
Data Coordinator to return unsub func
diff --git a/homeassistant/components/hue/hue_event.py b/homeassistant/components/hue/hue_event.py index ed1bc1c8f7d9be..a588f68ea4e672 100644 --- a/homeassistant/components/hue/hue_event.py +++ b/homeassistant/components/hue/hue_event.py @@ -35,19 +35,13 @@ def __init__(self, sensor, name, bridge, primary_sensor=None)...
<!-- You are amazing! Thanks for contributing to our project! Please, DO NOT DELETE ANY TEXT from this template! (unless instructed). --> ## Breaking change <!-- If your PR contains a breaking 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/33588
2020-04-03T16:41:38Z
2020-04-03T18:15:43Z
2020-04-03T18:15:43Z
2020-04-04T19:38:26Z
1,593
home-assistant/core
39,459
[NRK] Improve extractor
diff --git a/yt_dlp/extractor/nrk.py b/yt_dlp/extractor/nrk.py index 4d723e88688..0cf26d5981f 100644 --- a/yt_dlp/extractor/nrk.py +++ b/yt_dlp/extractor/nrk.py @@ -13,6 +13,7 @@ ExtractorError, int_or_none, parse_duration, + parse_iso8601, str_or_none, try_get, urljoin, @@ -247,6 +248,...
## 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/3231
2022-03-28T13:15:03Z
2022-04-07T15:52:28Z
2022-04-07T15:52:28Z
2022-04-07T15:52:28Z
273
yt-dlp/yt-dlp
7,625
🔧 Add new Translation tracking issues for German and Indonesian
diff --git a/.github/actions/notify-translations/app/translations.yml b/.github/actions/notify-translations/app/translations.yml index 2ac9556738d64..3f53adb6580b3 100644 --- a/.github/actions/notify-translations/app/translations.yml +++ b/.github/actions/notify-translations/app/translations.yml @@ -10,3 +10,5 @@ fr: 1...
🔧 Add new Translation tracking issues for German and Indonesian
https://api.github.com/repos/tiangolo/fastapi/pulls/3718
2021-08-18T13:42:15Z
2021-08-18T13:44:11Z
2021-08-18T13:44:11Z
2021-09-09T06:01:11Z
127
tiangolo/fastapi
23,147
Bump asgiref from 3.3.4 to 3.4.0
diff --git a/requirements/dev.txt b/requirements/dev.txt index 4603468a49..a8908c6db1 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -8,7 +8,7 @@ alabaster==0.7.12 # via sphinx appdirs==1.4.4 # via virtualenv -asgiref==3.3.4 +asgiref==3.4.0 # via -r requirements/tests.in attrs==21.2.0 ...
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [asgiref](https://github.com/django/a...
https://api.github.com/repos/pallets/flask/pulls/4183
2021-07-01T08:03:15Z
2021-07-01T10:05:48Z
2021-07-01T10:05:48Z
2021-07-16T00:02:24Z
245
pallets/flask
20,764
[keras/layers/pooling] Standardise docstring usage of "Default to"
diff --git a/keras/layers/pooling/average_pooling2d.py b/keras/layers/pooling/average_pooling2d.py index b818ed7e3a8..662ec99016e 100644 --- a/keras/layers/pooling/average_pooling2d.py +++ b/keras/layers/pooling/average_pooling2d.py @@ -108,9 +108,10 @@ class AveragePooling2D(Pooling2D): `(batch, height, width...
This is one of many PRs. Discussion + request to split into multiple PRs @ #17748
https://api.github.com/repos/keras-team/keras/pulls/17966
2023-04-13T01:03:19Z
2023-05-31T00:34:14Z
2023-05-31T00:34:14Z
2023-05-31T00:34:14Z
2,269
keras-team/keras
47,444
Add smugmug
diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 703b7ffda..917b82218 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -1640,6 +1640,12 @@ "urlMain": "https://slides.com/", "username_claimed": "blue" }, + "SmugMug": { + "errorType": "status_c...
https://api.github.com/repos/sherlock-project/sherlock/pulls/1692
2023-02-16T20:08:13Z
2023-02-16T20:14:49Z
2023-02-16T20:14:49Z
2023-02-16T20:15:29Z
614
sherlock-project/sherlock
36,233
Add `gnupg` to Dockerfile-cpu
diff --git a/utils/docker/Dockerfile-cpu b/utils/docker/Dockerfile-cpu index d6fac645dba..f3f81ec02c2 100644 --- a/utils/docker/Dockerfile-cpu +++ b/utils/docker/Dockerfile-cpu @@ -11,7 +11,7 @@ ADD https://ultralytics.com/assets/Arial.ttf https://ultralytics.com/assets/Aria # Install linux packages RUN apt update R...
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> <!-- 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 simi...
https://api.github.com/repos/ultralytics/yolov5/pulls/9932
2022-10-26T11:42:41Z
2022-10-26T11:42:52Z
2022-10-26T11:42:52Z
2024-01-19T04:48:06Z
219
ultralytics/yolov5
25,691
[MRG] Make modules private in feature_selection
diff --git a/.gitignore b/.gitignore index e1c663693a43a..9b158da07a2ec 100644 --- a/.gitignore +++ b/.gitignore @@ -223,3 +223,10 @@ sklearn/semi_supervised/label_propagation.py sklearn/preprocessing/data.py sklearn/preprocessing/label.py + +sklearn/feature_selection/base.py +sklearn/feature_selection/from_model.p...
<!-- Thanks for contributing a pull request! Please ensure you have taken a look at the contribution guidelines: https://github.com/scikit-learn/scikit-learn/blob/master/CONTRIBUTING.md#pull-request-checklist --> #### Reference Issues/PRs <!-- Example: Fixes #1234. See also #3456. Please use keywords (e.g., Fi...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/15376
2019-10-28T14:38:52Z
2019-10-29T03:00:33Z
2019-10-29T03:00:33Z
2019-10-29T03:00:33Z
2,264
scikit-learn/scikit-learn
46,564
Several Training Enhancements
diff --git a/modules/training.py b/modules/training.py index e629d86eb7..c98cfc3bbe 100644 --- a/modules/training.py +++ b/modules/training.py @@ -38,20 +38,21 @@ MODEL_CLASSES = {v: k for k, v in MODEL_FOR_CAUSAL_LM_MAPPING_NAMES} except: standard_modules = ["q_proj", "v_proj"] - model_to_lora_modules = ...
- more relevant data in training_log.json - saves training_prompt.json to the LoRA folder with the prompt template used for LoRA training (in case of dataset) - adds stop at loss slider to ui - some minor cosmetics all has been tested over several days
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/2868
2023-06-25T18:21:40Z
2023-06-25T18:34:46Z
2023-06-25T18:34:46Z
2023-06-25T18:35:21Z
2,867
oobabooga/text-generation-webui
26,133
Removed Calendar Index (acquired by Calendarific)
diff --git a/README.md b/README.md index e77ff0700b..1052e3d71c 100644 --- a/README.md +++ b/README.md @@ -294,7 +294,6 @@ API | Description | Auth | HTTPS | CORS | API | Description | Auth | HTTPS | CORS | |---|---|---|---|---| | [Abstract Public Holidays](https://www.abstractapi.com/holidays-api) | Data on nationa...
Removed Calendar Index to reflect acquisition by Calendarific (already listed). <!-- 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 [contri...
https://api.github.com/repos/public-apis/public-apis/pulls/2967
2021-12-21T22:22:21Z
2021-12-22T08:43:08Z
2021-12-22T08:43:08Z
2021-12-22T16:05:58Z
233
public-apis/public-apis
35,638
Double max_rounds in auth_handler
diff --git a/certbot/auth_handler.py b/certbot/auth_handler.py index 9d7c75f5707..caf112c6196 100644 --- a/certbot/auth_handler.py +++ b/certbot/auth_handler.py @@ -189,7 +189,7 @@ def _send_responses(self, aauthzrs, resps, chall_update): return active_achalls def _poll_challenges(self, aauthzrs, chall_...
Increase the maximum number of times we'll poll the authorization in Certbot. I increased `max_rounds` instead of `min_sleep` to keep sleep time low when the server is able to respond quickly.
https://api.github.com/repos/certbot/certbot/pulls/5842
2018-04-09T23:22:47Z
2018-04-09T23:58:59Z
2018-04-09T23:58:59Z
2018-04-09T23:59:02Z
169
certbot/certbot
3,506
add related project
diff --git a/README.md b/README.md index ffc13bffe0..2db1f0231b 100644 --- a/README.md +++ b/README.md @@ -241,6 +241,13 @@ for token in chat_completion: <td><a href="https://github.com/mishalhossin/Discord-Chatbot-Gpt4Free/issues"><img alt="Issues" src="https://img.shields.io/github/issues/mishalhossin/Discord-...
I created a project that uses gpt4free from langchain. The link has been added. https://github.com/MIDORIBIN/langchain-gpt4free
https://api.github.com/repos/xtekky/gpt4free/pulls/736
2023-07-10T00:18:43Z
2023-07-11T18:24:36Z
2023-07-11T18:24:36Z
2023-08-13T17:13:51Z
559
xtekky/gpt4free
37,901
ref(sampling): Remove error rules code - backend - [TET-103]
diff --git a/src/sentry/api/endpoints/project_details.py b/src/sentry/api/endpoints/project_details.py index daf5da497c282..ed9164dda5539 100644 --- a/src/sentry/api/endpoints/project_details.py +++ b/src/sentry/api/endpoints/project_details.py @@ -441,12 +441,6 @@ def put(self, request: Request, project) -> Response: ...
continuation of PR https://github.com/getsentry/sentry/pull/35003
https://api.github.com/repos/getsentry/sentry/pulls/35105
2022-05-30T11:01:26Z
2022-05-30T12:15:55Z
2022-05-30T12:15:55Z
2022-06-14T12:20:31Z
678
getsentry/sentry
43,970
add evostra for python
diff --git a/README.md b/README.md index 14980838..8540498c 100644 --- a/README.md +++ b/README.md @@ -1102,6 +1102,7 @@ be * [Lightwood](https://github.com/mindsdb/lightwood) - A Pytorch based framework that breaks down machine learning problems into smaller blocks that can be glued together seamlessly with objective...
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/714
2020-09-02T16:22:47Z
2020-09-11T14:52:33Z
2020-09-11T14:52:33Z
2020-09-11T14:52:33Z
233
josephmisiti/awesome-machine-learning
52,448
Revert "Remove minimum-scale on viewport"
diff --git a/index.html b/index.html index 62ded9f8b..c6db98650 100644 --- a/index.html +++ b/index.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1" /> + <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" /...
Reverts gto76/python-cheatsheet#36
https://api.github.com/repos/gto76/python-cheatsheet/pulls/37
2019-07-11T23:13:45Z
2019-07-11T23:14:24Z
2019-07-11T23:14:24Z
2021-05-13T13:43:15Z
332
gto76/python-cheatsheet
38,394
Fix IndexError when using bitbucket
diff --git a/tests/rules/test_git_push.py b/tests/rules/test_git_push.py index cf45f4e70..b6aa7c604 100644 --- a/tests/rules/test_git_push.py +++ b/tests/rules/test_git_push.py @@ -15,6 +15,19 @@ def output(branch_name): '''.format(branch_name, branch_name) +@pytest.fixture +def output_bitbucket(): + return '''...
This should fix #723.
https://api.github.com/repos/nvbn/thefuck/pulls/759
2018-01-02T22:35:18Z
2018-01-06T22:44:04Z
2018-01-06T22:44:03Z
2018-01-06T22:44:04Z
429
nvbn/thefuck
30,693
Deprecate Auto ML Library
diff --git a/README.md b/README.md index f913fd40..7c35a477 100644 --- a/README.md +++ b/README.md @@ -604,7 +604,7 @@ Read the paper [here](https://arxiv.org/abs/1902.06714). <a name="javascript-general-purpose-machine-learning"></a> #### General-Purpose Machine Learning -* [Auto ML](https://github.com/ClimbsRocks...
Add a deprecation note for Auto ML. Auto ML library (https://github.com/ClimbsRocks/auto_ml) is unmaintained.
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/836
2021-12-21T18:18:15Z
2022-01-10T15:06:49Z
2022-01-10T15:06:49Z
2022-01-12T17:19:11Z
306
josephmisiti/awesome-machine-learning
52,007
Using slicing technique checking for palindrome
diff --git a/Palindrome_Checker.py b/Palindrome_Checker.py index bdf13fe7a7..c5827b21e6 100644 --- a/Palindrome_Checker.py +++ b/Palindrome_Checker.py @@ -1,50 +1,12 @@ -# AUTHOR: ekbalba -# DESCRIPTION: A simple script which checks if a given phrase is a Palindrome -# PALINDROME: A word, phrase, or sequence that reads...
https://api.github.com/repos/geekcomputers/Python/pulls/1258
2020-12-26T09:31:35Z
2020-12-26T12:31:43Z
2020-12-26T12:31:43Z
2020-12-26T12:31:43Z
601
geekcomputers/Python
31,214
Add serverconnection scripthook
diff --git a/.travis.yml b/.travis.yml index 5f4a36020a..c108431995 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,8 +3,13 @@ python: - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: + - "pip install coveralls --use-mirrors" + - "pip install nose-cov --use...
Add server connect script hook as requested here: https://groups.google.com/forum/#!topic/mitmproxy/6FDkWfrh3HE _Aldo_: We have ClientConnect and ClientDisconnect vs ServerConnection classes in mitmproxy. To provide an unified API, I opted for a serverconnect scripthook. Are there any planned internal refactorings? If...
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/180
2013-11-18T16:31:41Z
2013-12-08T08:55:55Z
2013-12-08T08:55:55Z
2014-06-13T19:33:05Z
953
mitmproxy/mitmproxy
27,834
Added `PDFReader` to `readers.__init__` for convenience
diff --git a/llama_index/readers/__init__.py b/llama_index/readers/__init__.py index 97ef5c9b3da69..97cf401ffa66c 100644 --- a/llama_index/readers/__init__.py +++ b/llama_index/readers/__init__.py @@ -20,6 +20,7 @@ # readers from llama_index.readers.file.base import SimpleDirectoryReader +from llama_index.readers.f...
# Description See PR title ## Type of Change - [x] New feature (non-breaking change which adds functionality) # How Has This Been Tested? - [ ] Added new unit/integration tests - [ ] Added new notebook (that tests end-to-end) - [x] I stared at the code and made sure it makes sense
https://api.github.com/repos/run-llama/llama_index/pulls/7990
2023-10-05T21:06:40Z
2023-10-06T15:45:51Z
2023-10-06T15:45:50Z
2023-10-06T16:07:27Z
185
run-llama/llama_index
6,380
register_tmp_file also for mtime
diff --git a/modules/ui_tempdir.py b/modules/ui_tempdir.py index 621ed1ecab5..ecd6bdec355 100644 --- a/modules/ui_tempdir.py +++ b/modules/ui_tempdir.py @@ -35,7 +35,9 @@ def save_pil_to_file(self, pil_image, dir=None, format="png"): already_saved_as = getattr(pil_image, 'already_saved_as', None) if already_...
## Description I've found in my extension `OutputPanel`'s save button doesn't work, because of timestamp in filename. I doubled `register_tmp_file` function inside `save_pil_to_file` also for filename with timestamp ## Checklist: - [x] I have read [contributing wiki page](https://github.com/AUTOMATIC1111/stabl...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/15012
2024-02-23T16:32:09Z
2024-02-26T09:53:21Z
2024-02-26T09:53:21Z
2024-02-26T09:53:52Z
201
AUTOMATIC1111/stable-diffusion-webui
40,344
Add more tests to nginx plugin
diff --git a/letsencrypt-nginx/letsencrypt_nginx/tests/configurator_test.py b/letsencrypt-nginx/letsencrypt_nginx/tests/configurator_test.py index 56ad5110c22..3ad0b834f2b 100644 --- a/letsencrypt-nginx/letsencrypt_nginx/tests/configurator_test.py +++ b/letsencrypt-nginx/letsencrypt_nginx/tests/configurator_test.py @@ ...
Related to #960
https://api.github.com/repos/certbot/certbot/pulls/2095
2016-01-05T20:21:56Z
2016-01-06T15:53:25Z
2016-01-06T15:53:25Z
2016-05-06T19:21:22Z
859
certbot/certbot
2,635
Update Palindrome_Checker.py
diff --git a/Palindrome_Checker.py b/Palindrome_Checker.py index 878873ff85..e5eade7607 100644 --- a/Palindrome_Checker.py +++ b/Palindrome_Checker.py @@ -28,5 +28,5 @@ bol_ = False break -if bol_: - print("\nWow!, The phrase is a Palindrome!") \ No newline at end of file +if bol_==True: + pri...
https://api.github.com/repos/geekcomputers/Python/pulls/561
2019-10-03T07:18:22Z
2019-10-03T11:43:05Z
2019-10-03T11:43:05Z
2019-10-03T11:43:05Z
120
geekcomputers/Python
31,614
Update check_requirements.py
diff --git a/utils/general.py b/utils/general.py index 053aeacd651..22119100575 100644 --- a/utils/general.py +++ b/utils/general.py @@ -388,10 +388,23 @@ def check_version(current='0.0.0', minimum='0.0.0', name='version ', pinned=Fals @TryExcept() -def check_requirements(requirements=ROOT / 'requirements.txt', ex...
<!-- 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/11358
2023-04-14T12:23:35Z
2023-04-14T12:37:02Z
2023-04-14T12:37:02Z
2024-01-19T02:14:27Z
820
ultralytics/yolov5
24,764
Refs #27788 -- Removed unneeded Oracle 11 workarounds in GIS tests.
diff --git a/tests/gis_tests/distapp/tests.py b/tests/gis_tests/distapp/tests.py index 9d67b7b013988..5f3dcb8f44f9f 100644 --- a/tests/gis_tests/distapp/tests.py +++ b/tests/gis_tests/distapp/tests.py @@ -104,20 +104,10 @@ def test_distance_lookups(self): # Retrieving the cities within a 20km 'donut' w/a 7km r...
https://api.github.com/repos/django/django/pulls/8173
2017-03-13T19:24:06Z
2017-03-13T23:21:20Z
2017-03-13T23:21:20Z
2017-03-14T04:54:15Z
742
django/django
50,812
Use certificate instead of cert in DNS plugin descriptions
diff --git a/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py b/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py index 6979581eeec..f1156642f30 100644 --- a/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py +++ b/certbot-dns-cloudflare/certbot_dns_cloudflare/dns_cloudflare.py...
As #4783, but for descriptions.
https://api.github.com/repos/certbot/certbot/pulls/4784
2017-06-06T01:02:22Z
2017-06-06T02:06:35Z
2017-06-06T02:06:35Z
2017-06-07T16:43:55Z
1,279
certbot/certbot
1,541
Use `rng_seed` param when creating custom dataset sampler
diff --git a/model/model_training/trainer_rl.py b/model/model_training/trainer_rl.py index 9821c481ec..f8756c3152 100644 --- a/model/model_training/trainer_rl.py +++ b/model/model_training/trainer_rl.py @@ -3,6 +3,7 @@ import os import random from argparse import Namespace +from typing import Sequence import nump...
Use the `rng_seed` configuration parameter in class `PerDatasetSampler.build_sampler_from_config()` static factory class method. Until now always the fixed default value of 0 was used as seed for the dataset sampling (which I think was as a bug).
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/3592
2023-07-21T16:10:45Z
2023-07-21T17:38:48Z
2023-07-21T17:38:48Z
2023-07-21T17:38:49Z
986
LAION-AI/Open-Assistant
37,364
[live] Restore `sys.stderr` when an exception happens during a refresh
diff --git a/CHANGELOG.md b/CHANGELOG.md index 52db0457b..bc33feab4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic ...
Without this the user sees no error displayed in their terminal - and even capturing the exception and displayed their own error reporting is ineffective. ## Type of changes - [x] Bug fix - [ ] New feature - [ ] Documentation / docstrings - [ ] Tests - [ ] Other ## Checklist - [x] I've run the latest [b...
https://api.github.com/repos/Textualize/rich/pulls/2305
2022-05-27T11:03:19Z
2022-05-27T12:34:09Z
2022-05-27T12:34:08Z
2022-05-27T12:34:09Z
397
Textualize/rich
48,361
Fix Graphormer test suite
diff --git a/src/transformers/models/graphormer/configuration_graphormer.py b/src/transformers/models/graphormer/configuration_graphormer.py index 17791bfb0cf1e..36a9262b079fa 100644 --- a/src/transformers/models/graphormer/configuration_graphormer.py +++ b/src/transformers/models/graphormer/configuration_graphormer.py...
# What does this PR do? Fixes comment in #21367, @ydshieh Updated shape of model instantiation when calling pretrained in test suite, + updated values in the integration test.
https://api.github.com/repos/huggingface/transformers/pulls/21419
2023-02-02T11:03:15Z
2023-02-02T15:29:14Z
2023-02-02T15:29:14Z
2023-02-02T15:31:48Z
870
huggingface/transformers
12,253
Create RandomDice.py
diff --git a/RandomDice.py b/RandomDice.py new file mode 100644 index 0000000000..a76e944ff9 --- /dev/null +++ b/RandomDice.py @@ -0,0 +1,13 @@ +#GGearing 01/10/19 +#Random Dice Game using Tkinter + +from tkinter import * +from random import randint +def roll(): + text.delete(0.0,END) + text.insert(END,str(randin...
https://api.github.com/repos/geekcomputers/Python/pulls/537
2019-10-01T09:16:53Z
2019-10-01T10:52:09Z
2019-10-01T10:52:09Z
2019-10-01T10:52:09Z
158
geekcomputers/Python
31,528
Refactor `get_output_location` method in AthenaHook
diff --git a/airflow/providers/amazon/aws/hooks/athena.py b/airflow/providers/amazon/aws/hooks/athena.py index c8af86ee3a183..3715b4a1bc2c2 100644 --- a/airflow/providers/amazon/aws/hooks/athena.py +++ b/airflow/providers/amazon/aws/hooks/athena.py @@ -292,13 +292,12 @@ def get_output_location(self, query_execution_id:...
https://api.github.com/repos/apache/airflow/pulls/35996
2023-12-01T09:50:39Z
2023-12-01T11:48:44Z
2023-12-01T11:48:44Z
2023-12-01T11:48:44Z
334
apache/airflow
14,813
Update webui.py
diff --git a/webui.py b/webui.py index dd33442e3..6badcde73 100644 --- a/webui.py +++ b/webui.py @@ -165,7 +165,7 @@ def refresh_seed(r, s): step=0.001, value=1.5, info='The scaler multiplied to positive ADM (use 1.0 to disable). ') adm_s...
https://api.github.com/repos/lllyasviel/Fooocus/pulls/523
2023-10-03T22:17:44Z
2023-10-03T22:17:49Z
2023-10-03T22:17:49Z
2023-10-03T22:17:51Z
298
lllyasviel/Fooocus
7,103
[generic] Support "data-video-url=" for YouTube embeds (Fixes #2862)
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 0e5cf0efbd0..dfa8d615330 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -260,6 +260,20 @@ class GenericIE(InfoExtractor): 'uploader': 'Spi0n', }, 'add_ie...
This commit adds support for YouTube videos embedded using the "data-video-url" tag. It fixes/closes #2862.
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/2948
2014-05-18T18:41:09Z
2014-08-22T16:20:52Z
2014-08-22T16:20:52Z
2014-08-22T16:20:52Z
827
ytdl-org/youtube-dl
50,069
[AIRFLOW-208] Add badge to show supported Python versions
diff --git a/README.md b/README.md index e911225aeee2f..211d9844d1890 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ [![Coverage Status](https://img.shields.io/codecov/c/github/apache/incubator-airflow/master.svg)](https://codecov.io/github/apache/incubator-airflow?branch=master) [![Documentation Status](http...
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. For example, "\[AIRFLOW-XXX\] My Airflow PR" - https://issues.apache.org/jira/browse/AIRFLOW-208 - In case you...
https://api.github.com/repos/apache/airflow/pulls/3839
2018-09-03T22:34:02Z
2018-09-04T07:34:21Z
2018-09-04T07:34:21Z
2018-09-04T08:24:24Z
333
apache/airflow
14,856
Samyamr/zero offload correctness
diff --git a/deepspeed/runtime/config.py b/deepspeed/runtime/config.py index 206993dbe4c9..7637b091efe9 100755 --- a/deepspeed/runtime/config.py +++ b/deepspeed/runtime/config.py @@ -623,7 +623,7 @@ def _do_error_check(self): assert self.zero_optimization_stage <= MAX_STAGE_ZERO_OPTIMIZATION, "DeepSpeedCon...
Bug fixes and passing several correctness tests: HD | AH | NL | GAS | MBZ | GPUs | MP | Steps | No ZeRO | ZeRO-2 | ZeRO+Offload | ZeRO-1 -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- | -- 512 | 16 | 4 | 2 | 12 | 1 | 1 | 200 | 7.658 | 7.66 | 7.66 | 7.66 1024 | 16 | 4 | 2 | 12 | 4 | 2 | 200 | 7.23 | 7.2...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/359
2020-09-04T01:02:14Z
2020-09-04T03:39:32Z
2020-09-04T03:39:31Z
2021-09-24T04:42:33Z
1,574
microsoft/DeepSpeed
10,748
Fix cloudflare_dns proxied change detection
diff --git a/lib/ansible/modules/net_tools/cloudflare_dns.py b/lib/ansible/modules/net_tools/cloudflare_dns.py index f3fcc1fffe1f88..97e22082267626 100644 --- a/lib/ansible/modules/net_tools/cloudflare_dns.py +++ b/lib/ansible/modules/net_tools/cloudflare_dns.py @@ -557,6 +557,8 @@ def ensure_dns_record(self, **kwargs)...
##### SUMMARY Resolves #35190 ##### ISSUE TYPE - Bugfix Pull Request ##### COMPONENT NAME cloudflare_dns ##### ANSIBLE VERSION ``` ansible 2.7.0.dev0 (devel fdf51f2a43) last updated 2018/07/20 16:39:25 (GMT +200) config file = /etc/ansible/ansible.cfg configured module search path = [u'/home/andr...
https://api.github.com/repos/ansible/ansible/pulls/43096
2018-07-20T14:42:21Z
2018-07-27T03:57:06Z
2018-07-27T03:57:06Z
2019-07-22T16:06:19Z
3,132
ansible/ansible
49,491
Updated Clearbit Logo auth
diff --git a/README.md b/README.md index 620bb0d5e5..e4b632edd1 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ API | Description | Auth | HTTPS | CORS | API | Description | Auth | HTTPS | CORS | |---|---|---|---|---| | [Charity Search](http://charityapi.orghunter.com/) | Non-profit charity data | `apiKey...
Updated 'Clearbit Logo' auth entry with 'apiKey'.
https://api.github.com/repos/public-apis/public-apis/pulls/779
2018-10-10T00:31:49Z
2018-10-10T07:12:15Z
2018-10-10T07:12:15Z
2018-10-10T07:12:15Z
281
public-apis/public-apis
35,333
Con.1 Issue #1905 Return local const
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index ec3200ed6..8b8bf0aef 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -16856,19 +16856,28 @@ Prevents accidental or hard-to-notice change of value. for (int i : c) cout << i << '\n'; // BAD: just reading -##### Exception +##...
Update for Issue #1905
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/2114
2023-08-03T06:23:42Z
2023-10-12T20:02:28Z
2023-10-12T20:02:28Z
2023-10-12T20:02:29Z
349
isocpp/CppCoreGuidelines
15,356
Remove the --max-quality option
diff --git a/README.md b/README.md index 7040be1ec99..948e0a4b946 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,6 @@ which means you can modify it, redistribute it or use it however you like. -f, --format FORMAT Video format code, see the "FORMAT SELECTION" for all the info --all-formats ...
It doesn't work well with 'bestvideo' and 'bestaudio' because they are usually before the max quality. Format filters should be used instead, they are more flexible and don't require the requested quality to exist for each video.
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/5523
2015-04-25T10:07:30Z
2015-04-27T11:44:59Z
2015-04-27T11:44:59Z
2015-05-09T23:12:30Z
2,112
ytdl-org/youtube-dl
50,004
updated deprecated cgi.parse_qsl to use six's parse_qsl
diff --git a/scrapy/utils/url.py b/scrapy/utils/url.py index ab4d75f874c..36490a39db5 100644 --- a/scrapy/utils/url.py +++ b/scrapy/utils/url.py @@ -6,9 +6,9 @@ to the w3lib.url module. Always import those from there instead. """ import posixpath -from six.moves.urllib.parse import ParseResult, urlunparse, urldefrag...
According to Python 2 documentation: https://docs.python.org/2/library/cgi.html#cgi.parse_qsl > "This function is deprecated in this module. Use urlparse.parse_qsl() instead. It is maintained here only for backward compatiblity." For future compatibility with Python 3, the `scrapy.utils.url` module is updated to use ...
https://api.github.com/repos/scrapy/scrapy/pulls/909
2014-10-02T20:32:31Z
2014-10-03T10:30:39Z
2014-10-03T10:30:39Z
2014-10-03T10:30:39Z
271
scrapy/scrapy
34,512
Various docstring fixes, removing unused variables
diff --git a/rich/containers.py b/rich/containers.py index e29cf3689..901ff8ba6 100644 --- a/rich/containers.py +++ b/rich/containers.py @@ -1,13 +1,13 @@ from itertools import zip_longest from typing import ( - Iterator, + TYPE_CHECKING, Iterable, + Iterator, List, Optional, + TypeVar, ...
I found a bunch of issues with docstrings/unused variables during my time on #3180. I gathered all of the diffs into this PR to keep #3180 focused.
https://api.github.com/repos/Textualize/rich/pulls/3191
2023-11-07T11:26:38Z
2023-11-07T16:22:13Z
2023-11-07T16:22:13Z
2023-11-07T16:22:14Z
1,561
Textualize/rich
48,644
R.20: 'represent ownership' clean up example and enforcement
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 3bcf11222..3125b6f83 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9785,19 +9785,17 @@ Consider: void f() { - X x; - X* p1 { new X }; // see also ??? - unique_ptr<X> p2 { new X }; // unique ...
Simplified the example and clarified the enforcement to only apply for owning pointers.
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/1992
2022-11-13T08:25:30Z
2022-12-01T22:27:29Z
2022-12-01T22:27:29Z
2022-12-01T22:27:39Z
368
isocpp/CppCoreGuidelines
15,297
fix link & test=document_fix
diff --git a/deploy/pdserving/README.md b/deploy/pdserving/README.md index c461fd5e54..37b97589c4 100644 --- a/deploy/pdserving/README.md +++ b/deploy/pdserving/README.md @@ -19,10 +19,14 @@ The introduction and tutorial of Paddle Serving service deployment framework ref ## Contents -- [Environmental preparation](...
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/5437
2022-02-10T08:42:13Z
2022-02-10T08:53:53Z
2022-02-10T08:53:53Z
2022-02-10T08:53:53Z
424
PaddlePaddle/PaddleOCR
42,310
W&B: refactor W&B tables
diff --git a/train.py b/train.py index 8d35f50afb1..9a5f402c350 100644 --- a/train.py +++ b/train.py @@ -475,7 +475,7 @@ def parse_opt(known=False): # Weights & Biases arguments parser.add_argument('--entity', default=None, help='W&B: Entity') - parser.add_argument('--upload_dataset', action='store_true'...
This PR: * refactors table integration to include avg. conf. of each class detected. * Allows the user to upload only validation split of the dataset * Improves W&B readme ### Before: ![Screenshot from 2021-11-21 17-35-12](https://user-images.githubusercontent.com/15766192/142761038-063373fe-6c08-45bf-8205-2cbf...
https://api.github.com/repos/ultralytics/yolov5/pulls/5737
2021-11-21T12:12:43Z
2021-11-25T16:19:22Z
2021-11-25T16:19:22Z
2024-01-19T14:17:39Z
3,603
ultralytics/yolov5
25,642
[API][Feature] Utils endpoints
diff --git a/modules/api/api.py b/modules/api/api.py index 71c9c1601c4..a49f3755115 100644 --- a/modules/api/api.py +++ b/modules/api/api.py @@ -2,14 +2,17 @@ import io import time import uvicorn -from gradio.processing_utils import decode_base64_to_file, decode_base64_to_image -from fastapi import APIRouter, Depend...
This PR adds a bunch of endpoints that clients can find useful: - Get config - Uses the current config to create a model automatically - Update config - Can't add new keys, they need to be created using `shared.opts.add_option(shared.OptionInfo(...))` - Get cmd flags - Get samplers list - Gives names, a...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/4218
2022-11-03T13:24:12Z
2022-11-04T07:46:52Z
2022-11-04T07:46:52Z
2022-11-05T18:52:55Z
3,175
AUTOMATIC1111/stable-diffusion-webui
40,442
export.py replace `check_file` -> `check_yaml`
diff --git a/export.py b/export.py index e3f6af93d1c..546087a4026 100644 --- a/export.py +++ b/export.py @@ -67,7 +67,7 @@ from models.experimental import attempt_load from models.yolo import Detect from utils.dataloaders import LoadImages -from utils.general import (LOGGER, check_dataset, check_file, check_img_size...
## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Enhancement of YAML dataset validation and reduction of dependencies in TensorFlow Lite export. ### 📊 Key Changes - Removed `check_file` function and integrated `check_yaml` for dataset validat...
https://api.github.com/repos/ultralytics/yolov5/pulls/8852
2022-08-03T21:36:22Z
2022-08-03T21:38:36Z
2022-08-03T21:38:36Z
2024-01-19T07:46:43Z
311
ultralytics/yolov5
25,257
Fix MegatronLayerPolicy to have megatron_v2=True
diff --git a/deepspeed/module_inject/replace_policy.py b/deepspeed/module_inject/replace_policy.py index 4dd9e5b0855e..dd80f9fc11d1 100755 --- a/deepspeed/module_inject/replace_policy.py +++ b/deepspeed/module_inject/replace_policy.py @@ -404,9 +404,10 @@ class MegatronLayerPolicy(TransformerPolicy): _orig_layer_c...
This PR updates the `MegatronLayerPolicy` to set `megatron_v2=True`, which is required in order to properly transpose in the `replace_with_policy()` function. After the change in this PR, in conjunction with [PR #99](https://github.com/microsoft/Megatron-DeepSpeed/pull/99) in the Megatron-DeepSpeed fork, the Megatro...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/2579
2022-12-07T00:57:37Z
2022-12-07T17:26:10Z
2022-12-07T17:26:10Z
2022-12-08T01:06:52Z
205
microsoft/DeepSpeed
9,956
Upgrade keyring to 13.1.0
diff --git a/homeassistant/scripts/keyring.py b/homeassistant/scripts/keyring.py index 51d70d1f3b2cec..0ca60894f9b983 100644 --- a/homeassistant/scripts/keyring.py +++ b/homeassistant/scripts/keyring.py @@ -5,7 +5,7 @@ from homeassistant.util.yaml import _SECRET_NAMESPACE -REQUIREMENTS = ['keyring==13.0.0', 'keyri...
## Description: Changelog: https://github.com/jaraco/keyring/blob/master/CHANGES.rst#1310 ```bash $ hass --script keyring --help INFO:homeassistant.util.package:Attempting install of keyring==13.1.0 usage: hass [-h] [--script {keyring}] {get,set,del,info} [name] Modify Home Assistant secrets in the default ke...
https://api.github.com/repos/home-assistant/core/pulls/15268
2018-07-02T17:26:44Z
2018-07-02T21:03:57Z
2018-07-02T21:03:57Z
2018-12-10T16:01:40Z
264
home-assistant/core
39,586
Correct the joinus.png location
diff --git a/doc/doc_ch/joinus.PNG b/doc/doc_ch/joinus.PNG deleted file mode 100644 index cd9de9c14b..0000000000 Binary files a/doc/doc_ch/joinus.PNG and /dev/null differ diff --git a/doc/joinus.PNG b/doc/joinus.PNG index b8724a9b0a..cd9de9c14b 100644 Binary files a/doc/joinus.PNG and b/doc/joinus.PNG differ
Correct the joinus.png location
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/4714
2021-11-20T14:19:46Z
2021-11-20T14:20:06Z
2021-11-20T14:20:06Z
2021-11-20T14:20:06Z
112
PaddlePaddle/PaddleOCR
42,726
Added Guanaco-QLoRA to Instruct character
diff --git a/api-examples/api-example-chat.py b/api-examples/api-example-chat.py index 905fbca6e2..8ea6ed1e92 100644 --- a/api-examples/api-example-chat.py +++ b/api-examples/api-example-chat.py @@ -7,7 +7,7 @@ URI = f'http://{HOST}/api/v1/chat' # For reverse-proxied streaming, the remote will likely host with ssl ...
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/2574
2023-06-08T05:36:50Z
2023-06-08T15:24:32Z
2023-06-08T15:24:32Z
2023-06-08T15:24:33Z
295
oobabooga/text-generation-webui
26,113
Add `exclude-patterns` option to `flask run` CLI
diff --git a/CHANGES.rst b/CHANGES.rst index 3af9a70645..5f9c2e691e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -39,6 +39,9 @@ Unreleased load command entry points. :issue:`4419` - Overriding ``FlaskClient.open`` will not cause an error on redirect. :issue:`3396` +- Add an ``--exclude-patterns`` option...
Pass `exclude_patterns` to Werkzeug's `run_simple` function. This configures a list of patterns to ignore when running the reloader. - fixes #4188 <!-- Before opening a PR, open a ticket describing the issue or feature the PR will address. Follow the steps in CONTRIBUTING.rst. Replace this comment with a descriptio...
https://api.github.com/repos/pallets/flask/pulls/4189
2021-07-06T18:48:10Z
2022-02-09T20:53:19Z
2022-02-09T20:53:19Z
2022-03-02T00:10:02Z
615
pallets/flask
20,911
Small how to uninstall certbot-auto
diff --git a/certbot/docs/install.rst b/certbot/docs/install.rst index 42d46c33e03..d2124236761 100644 --- a/certbot/docs/install.rst +++ b/certbot/docs/install.rst @@ -70,11 +70,13 @@ The ``certbot-auto`` wrapper script installs Certbot, obtaining some dependencie from your web server OS and putting others in a pytho...
Also added missing sudo feel free to edit it or discard it
https://api.github.com/repos/certbot/certbot/pulls/7648
2019-12-18T23:36:32Z
2019-12-19T21:30:13Z
2019-12-19T21:30:13Z
2019-12-19T21:30:14Z
351
certbot/certbot
3,074
[shardformer] fix base policy
diff --git a/colossalai/shardformer/policies/base_policy.py b/colossalai/shardformer/policies/base_policy.py index 68fde0115de6..69493bfb6007 100644 --- a/colossalai/shardformer/policies/base_policy.py +++ b/colossalai/shardformer/policies/base_policy.py @@ -156,7 +156,10 @@ def append_or_create_submodule_replacement( ...
## 📌 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 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/4229
2023-07-13T08:02:55Z
2023-07-14T01:51:54Z
2023-07-14T01:51:54Z
2023-07-14T01:51:57Z
312
hpcaitech/ColossalAI
11,133
Update docstrings for st.form, st.toast, st.date_input
diff --git a/lib/streamlit/elements/form.py b/lib/streamlit/elements/form.py index 00de2795eeca..80e8ebc22507 100644 --- a/lib/streamlit/elements/form.py +++ b/lib/streamlit/elements/form.py @@ -134,9 +134,8 @@ def form(self, key: str, clear_on_submit: bool = False) -> DeltaGenerator: * ``st.button`` and ``st....
Update st.form docstring to include embedded apps and link to new forms guide. Update st.toast docstring to warn against use within cached functions. Update st.date_input docstring to add example and embedded app showing date format. ## Describe your changes Docsting-only edit to st.form, st.toast, st.date_input ...
https://api.github.com/repos/streamlit/streamlit/pulls/7043
2023-07-20T04:19:50Z
2023-07-21T11:05:53Z
2023-07-21T11:05:53Z
2023-07-21T11:06:01Z
997
streamlit/streamlit
21,979
DOC cleanup the roadmap
diff --git a/doc/roadmap.rst b/doc/roadmap.rst index b46ed12de11b6..7cc2bf08ba115 100644 --- a/doc/roadmap.rst +++ b/doc/roadmap.rst @@ -1,5 +1,13 @@ .. _roadmap: +.. |ss| raw:: html + + <strike> + +.. |se| raw:: html + + </strike> + Roadmap ======= @@ -54,40 +62,44 @@ Architectural / general goals -------...
This cleans up the roadmap a bit. Removes the links to issues and PRs which are already solved, and is an effort to keep it up to date. I'm happy to put things which are deleted in this PR back. I've mostly deleted them for us to talk about them if you still think they should be there. ping @scikit-learn/core-dev...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/15332
2019-10-22T14:17:32Z
2019-11-06T11:08:28Z
2019-11-06T11:08:28Z
2019-11-06T11:47:02Z
2,101
scikit-learn/scikit-learn
46,731
bpo-46752: Slight improvements to TaskGroup API
diff --git a/Lib/asyncio/taskgroups.py b/Lib/asyncio/taskgroups.py index 718277892c51c9..57b0eafefc16fe 100644 --- a/Lib/asyncio/taskgroups.py +++ b/Lib/asyncio/taskgroups.py @@ -3,10 +3,6 @@ __all__ = ["TaskGroup"] -import itertools -import textwrap -import traceback -import types import weakref from . import...
- Remove the optional name argument to the TaskGroup constructor - Add an optional name argument to the create_task() method - Some cleanup Note that there's a big discussion on cancellation edge cases going on in [bpo-46771](https://bugs.python.org/issue46771), this is unrelated to that and uncontroversial. I'...
https://api.github.com/repos/python/cpython/pulls/31398
2022-02-17T23:58:32Z
2022-02-18T05:30:45Z
2022-02-18T05:30:45Z
2022-02-18T05:30:49Z
1,133
python/cpython
3,908
move chat to top of sidebar
diff --git a/website/src/components/Layout.tsx b/website/src/components/Layout.tsx index b31e069868..13de07a4f3 100644 --- a/website/src/components/Layout.tsx +++ b/website/src/components/Layout.tsx @@ -37,6 +37,15 @@ export const getDashboardLayout = (page: React.ReactElement) => ( <ToSWrapper> <SideMenuLa...
attempt to move chat to top of sidebar https://github.com/LAION-AI/Open-Assistant/issues/2428 not sure if is really this simple or not - will test more on my end to see.
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/2429
2023-04-09T14:43:40Z
2023-04-10T08:39:33Z
2023-04-10T08:39:33Z
2023-04-10T10:10:32Z
282
LAION-AI/Open-Assistant
37,583
dns-rfc2136: use certbot's own is_ipaddress func
diff --git a/certbot-dns-rfc2136/certbot_dns_rfc2136/_internal/dns_rfc2136.py b/certbot-dns-rfc2136/certbot_dns_rfc2136/_internal/dns_rfc2136.py index 9fa68c9d984..98687e6abc6 100644 --- a/certbot-dns-rfc2136/certbot_dns_rfc2136/_internal/dns_rfc2136.py +++ b/certbot-dns-rfc2136/certbot_dns_rfc2136/_internal/dns_rfc213...
Fixes #9033.
https://api.github.com/repos/certbot/certbot/pulls/9035
2021-09-12T21:05:45Z
2021-09-13T21:48:16Z
2021-09-13T21:48:16Z
2021-09-13T21:48:16Z
1,389
certbot/certbot
3,015
Remove wrong comma
diff --git a/docs/patterns/appfactories.rst b/docs/patterns/appfactories.rst index dc9660ae44..c118a2730b 100644 --- a/docs/patterns/appfactories.rst +++ b/docs/patterns/appfactories.rst @@ -6,7 +6,7 @@ Application Factories If you are already using packages and blueprints for your application (:ref:`blueprints`) the...
I don't think that comma belongs there.
https://api.github.com/repos/pallets/flask/pulls/2116
2016-12-18T20:23:56Z
2016-12-19T13:37:34Z
2016-12-19T13:37:34Z
2020-11-14T04:32:58Z
183
pallets/flask
20,500
Fix for DTE Energy Bridge returning the wrong units from time to time
diff --git a/homeassistant/components/sensor/dte_energy_bridge.py b/homeassistant/components/sensor/dte_energy_bridge.py index ee80c4f76feb..00da6c2ce51e 100644 --- a/homeassistant/components/sensor/dte_energy_bridge.py +++ b/homeassistant/components/sensor/dte_energy_bridge.py @@ -91,4 +91,9 @@ def update(self): ...
## Description: The DTE Energy Bridge seems to return the current energy usage randomly in either W or kW. The only way to tell the difference is if there is a decimal or not in the result. Also added some tests. ## Checklist: If the code communicates with devices, web services, or third-party tools: ...
https://api.github.com/repos/home-assistant/core/pulls/9246
2017-09-01T01:09:54Z
2017-09-16T06:12:07Z
2017-09-16T06:12:07Z
2019-03-21T04:52:39Z
848
home-assistant/core
38,777
Documentation: specify Python version 3.10 requirement in `README.md` (#723)
diff --git a/README.md b/README.md index bf15f3a6f7..6a4b566f0c 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ pip install -U g4f #### Prerequisites: -1. [Download and install Python](https://www.python.org/downloads/) (Version 3.x is recommended). +1. [Download and install Python](https://www.python.org...
## Changes * According to related issues, the Python version requirement should be specified as 3.10 in `README.md`. ## Related issues * Close #723 * #720 * #871 * #823
https://api.github.com/repos/xtekky/gpt4free/pulls/917
2023-09-19T02:03:09Z
2023-09-19T17:37:12Z
2023-09-19T17:37:12Z
2023-09-19T17:37:12Z
127
xtekky/gpt4free
37,884
Fixed typo
diff --git a/letsencrypt/cli.py b/letsencrypt/cli.py index 0797f23b4eb..6692d9c9902 100644 --- a/letsencrypt/cli.py +++ b/letsencrypt/cli.py @@ -57,7 +57,7 @@ install Install a previously obtained cert in a server revoke Revoke a previously obtained certificate rollback R...
Changed config-changes in the short help (wrong) to config_changes (right)
https://api.github.com/repos/certbot/certbot/pulls/623
2015-07-20T08:20:33Z
2015-07-20T18:40:47Z
2015-07-20T18:40:47Z
2016-05-06T19:22:10Z
136
certbot/certbot
971
Add script for building MacOS wheels.
diff --git a/python/README-manylinux1.md b/python/README-building-wheels.md similarity index 59% rename from python/README-manylinux1.md rename to python/README-building-wheels.md index f8055d19de815..9ad0ceda7b67b 100644 --- a/python/README-manylinux1.md +++ b/python/README-building-wheels.md @@ -6,10 +6,21 @@ reposit...
This is largely taken from https://github.com/matthew-brett/multibuild, which is used by arrow in https://github.com/xhochy/pyarrow-macos-wheels. However, I tried to simplify it a bunch so I could run it on my laptop without Travis. It basically loops over different Python versions, pulls the relevant Python binarie...
https://api.github.com/repos/ray-project/ray/pulls/601
2017-05-29T22:50:01Z
2017-06-01T00:30:46Z
2017-06-01T00:30:46Z
2017-06-01T00:30:49Z
1,226
ray-project/ray
19,729
Prepare release 24.1.1
diff --git a/CHANGES.md b/CHANGES.md index 6278aed77d8..a794f421694 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,57 +1,19 @@ # Change Log -## Unreleased +## 24.1.1 -### Highlights - -<!-- Include any especially major or disruptive changes here --> - -### Stable style - -<!-- Changes that affect Black's stable st...
<!-- 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 <!-- Good things to put here include: reasoning for the change (please link any relevant issues!), any noteworthy (or hacky) choices to be aware of, ...
https://api.github.com/repos/psf/black/pulls/4186
2024-01-28T04:41:55Z
2024-01-28T04:51:33Z
2024-01-28T04:51:33Z
2024-01-28T04:51:36Z
925
psf/black
24,197
Mark test_session_unicode as skip on py3
diff --git a/tests/test_sessions.py b/tests/test_sessions.py index 6d5985843f..210f9d954c 100644 --- a/tests/test_sessions.py +++ b/tests/test_sessions.py @@ -1,6 +1,9 @@ # coding=utf-8 import os import shutil +import sys + +import pytest from httpie.plugins.builtin import HTTPBasicAuth from utils import TestEnv...
There are known problems with unicode in headers
https://api.github.com/repos/httpie/cli/pulls/305
2015-02-10T02:15:44Z
2015-02-10T15:00:24Z
2015-02-10T15:00:24Z
2015-02-10T15:08:28Z
220
httpie/cli
33,745
Exclude `ipython` from hubconf.py `check_requirements()`
diff --git a/hubconf.py b/hubconf.py index bffe2d588b4..2f05565629a 100644 --- a/hubconf.py +++ b/hubconf.py @@ -37,7 +37,7 @@ def _create(name, pretrained=True, channels=3, classes=80, autoshape=True, verbo if not verbose: LOGGER.setLevel(logging.WARNING) - check_requirements(exclude=('tensorboard',...
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> <!-- 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 simi...
https://api.github.com/repos/ultralytics/yolov5/pulls/9362
2022-09-10T19:41:48Z
2022-09-10T19:58:24Z
2022-09-10T19:58:24Z
2024-01-19T06:06:37Z
170
ultralytics/yolov5
24,905
Strip "\n" from end of OS version string for OS X.
diff --git a/certbot/util.py b/certbot/util.py index 8507f80d668..35c599737c7 100644 --- a/certbot/util.py +++ b/certbot/util.py @@ -325,7 +325,7 @@ def get_python_os_info(): os_ver = subprocess.Popen( ["sw_vers", "-productVersion"], stdout=subprocess.PIPE - ).communicate()[0] ...
If you don't, it ends up in the UserAgent header and you get an error like: Invalid header value 'CertbotACMEClient/0.8.0 (darwin 10.10.5\n)...'
https://api.github.com/repos/certbot/certbot/pulls/3118
2016-06-03T05:52:09Z
2016-06-05T02:43:13Z
2016-06-05T02:43:13Z
2019-01-23T23:06:33Z
143
certbot/certbot
2,448
fixing default communication_data_type for bfloat16_enabled and docs
diff --git a/deepspeed/runtime/engine.py b/deepspeed/runtime/engine.py index f073a0e61695..a95b5a6ca6a8 100644 --- a/deepspeed/runtime/engine.py +++ b/deepspeed/runtime/engine.py @@ -778,6 +778,9 @@ def communication_data_type(self): if self.fp16_enabled(): return torch.float16 + if self....
fixes #2071 #2145 fixed the case when `communication_data_type` is set explicitly, unfortunately the default value for when `bfloat16_enabled=True` is not `bfp16`. Adding unit tests for default `communication_data_type`. Correcting the docs that mentioned `communication_data_type` as being of type `boolean`. Be...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/3370
2023-04-24T22:55:15Z
2023-04-25T17:25:08Z
2023-04-25T17:25:08Z
2023-05-12T15:56:53Z
559
microsoft/DeepSpeed
10,769
Minor session serializer fixes.
diff --git a/flask/json/tag.py b/flask/json/tag.py index 1e51d6fc19..11c966c582 100644 --- a/flask/json/tag.py +++ b/flask/json/tag.py @@ -36,7 +36,7 @@ def to_json(self, value): def to_python(self, value): return OrderedDict(value) - app.session_interface.serializer.register(TagOrderedDict, ...
A couple of minor fixes for the extensible session serializer added by #2352. There were two issues observed: 1. The example usage of ``register()`` passes and ``index`` to the ``force`` argument. 2. It is not possible to insert a tag as the penultimate item in the order list. Regarding the latter, `a.append(...
https://api.github.com/repos/pallets/flask/pulls/2711
2018-04-19T13:29:16Z
2018-04-19T13:57:12Z
2018-04-19T13:57:12Z
2020-11-14T03:27:23Z
657
pallets/flask
20,161
Fix passing of metadata on S3 presigned URL put
diff --git a/localstack/services/s3/s3_listener.py b/localstack/services/s3/s3_listener.py index 3176b59f03198..7e5b8a0951c51 100644 --- a/localstack/services/s3/s3_listener.py +++ b/localstack/services/s3/s3_listener.py @@ -42,6 +42,9 @@ # list of destination types for bucket notifications NOTIFICATION_DESTINATION_T...
Fix passing of metadata on S3 presigned URL put - addresses #544
https://api.github.com/repos/localstack/localstack/pulls/1745
2019-11-09T12:16:33Z
2019-11-09T15:27:49Z
2019-11-09T15:27:49Z
2019-11-09T15:27:56Z
1,126
localstack/localstack
28,817
don't require typed-ast
diff --git a/CHANGES.md b/CHANGES.md index 7da7be7b842..97a3be33c93 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -40,6 +40,11 @@ - Lines ending with `fmt: skip` will now be not formatted (#1800) +- PR #2053: Black no longer relies on typed-ast for Python 3.8 and higher + +- PR #2053: Python 2 support is now optiona...
#2044
https://api.github.com/repos/psf/black/pulls/2053
2021-03-20T10:33:18Z
2021-04-01T15:38:05Z
2021-04-01T15:38:05Z
2021-04-29T06:40:04Z
1,024
psf/black
23,945
Bump ctransformers to 0.2.25
diff --git a/requirements.txt b/requirements.txt index 4a9209a0c4..cbe22b69c2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -53,4 +53,4 @@ https://github.com/jllllll/GPTQ-for-LLaMa-CUDA/releases/download/0.1.0/gptq_for_ https://github.com/jllllll/GPTQ-for-LLaMa-CUDA/releases/download/0.1.0/gptq_for_llama-0.1...
## Checklist: - [x] I have read the [Contributing guidelines](https://github.com/oobabooga/text-generation-webui/wiki/Contributing-guidelines). --- https://github.com/marella/ctransformers/compare/v0.2.24...v0.2.25
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/3740
2023-08-29T06:23:16Z
2023-08-29T20:24:36Z
2023-08-29T20:24:36Z
2023-08-29T20:59:11Z
257
oobabooga/text-generation-webui
26,393
Added 'import os' statement
diff --git a/docs/tutorial/setup.rst b/docs/tutorial/setup.rst index ed8a744c00..65d4b3f2ce 100644 --- a/docs/tutorial/setup.rst +++ b/docs/tutorial/setup.rst @@ -14,6 +14,7 @@ load that or import the values from there. First we add the imports in `flaskr.py`:: # all the imports + import os import sqlit...
Added 'import os' statement so you can use os.path.join() when defining DATABASE location
https://api.github.com/repos/pallets/flask/pulls/994
2014-03-04T23:01:35Z
2014-03-13T18:25:34Z
2014-03-13T18:25:34Z
2020-11-14T07:18:52Z
128
pallets/flask
20,507
[tests] remove T5 test skip decorator
diff --git a/tests/test_fx/test_pipeline/test_hf_model/test_t5.py b/tests/test_fx/test_pipeline/test_hf_model/test_t5.py index d78883c3de23..ea32b87cf238 100644 --- a/tests/test_fx/test_pipeline/test_hf_model/test_t5.py +++ b/tests/test_fx/test_pipeline/test_hf_model/test_t5.py @@ -2,12 +2,20 @@ import transformers i...
https://api.github.com/repos/hpcaitech/ColossalAI/pulls/1271
2022-07-12T10:14:04Z
2022-07-12T15:25:30Z
2022-07-12T15:25:30Z
2022-07-12T15:25:31Z
321
hpcaitech/ColossalAI
11,459
Fix typos
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index ff7f72b14..0e60ee90d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -21621,7 +21621,7 @@ The use of `p` for pointer and `x` for a floating-point variable is conventional ### <a name="Rl-name"></a>NL.8: Use a consistent naming style -**...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/2158
2023-11-04T22:37:35Z
2024-01-18T18:21:44Z
2024-01-18T18:21:44Z
2024-01-18T18:21:44Z
258
isocpp/CppCoreGuidelines
15,801
Add YandexGPT API support
diff --git a/docs/model_support.md b/docs/model_support.md index 50ef527aa8..123daf6730 100644 --- a/docs/model_support.md +++ b/docs/model_support.md @@ -105,7 +105,7 @@ After these steps, the new model should be compatible with most FastChat feature ## API-Based Models To support an API-based model, consider learni...
<!-- 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/3116
2024-03-01T16:37:44Z
2024-04-10T21:26:35Z
2024-04-10T21:26:35Z
2024-04-15T00:30:24Z
1,624
lm-sys/FastChat
41,466
Bump pyinstaller from 5.10.1 to 5.11.0
diff --git a/pyproject.toml b/pyproject.toml index 807e8f94c2..0d6c72d5a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,7 +64,7 @@ dev = [ "click>=7.0,<8.2", "hypothesis>=5.8,<7", "pdoc>=4.0.0", - "pyinstaller==5.10.1", + "pyinstaller==5.11.0", "pytest-asyncio>=0.17,<0.22", "pyt...
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [pyinstaller](https://github.com/pyin...
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/6156
2023-06-01T23:00:10Z
2023-06-02T10:06:51Z
2023-06-02T10:06:51Z
2023-06-02T10:07:00Z
171
mitmproxy/mitmproxy
27,801
Add openorca
diff --git a/fastchat/conversation.py b/fastchat/conversation.py index 71885dc4d5..c06ff9e88d 100644 --- a/fastchat/conversation.py +++ b/fastchat/conversation.py @@ -878,6 +878,30 @@ def get_conv_template(name: str) -> Conversation: ) ) +# OpenOrcaxOpenChat-Preview2-13B template +register_conv_template( + C...
<!-- 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? 1. Add OpenOrca chat model support <!-- Please give a short su...
https://api.github.com/repos/lm-sys/FastChat/pulls/2155
2023-08-04T10:09:22Z
2023-08-05T06:09:12Z
2023-08-05T06:09:12Z
2023-08-05T11:45:07Z
825
lm-sys/FastChat
41,558
ref(pageFilters): Only check desync state on first load
diff --git a/static/app/actionCreators/pageFilters.tsx b/static/app/actionCreators/pageFilters.tsx index a58d74deb14a73..f2892cb90536cb 100644 --- a/static/app/actionCreators/pageFilters.tsx +++ b/static/app/actionCreators/pageFilters.tsx @@ -50,10 +50,6 @@ type Options = { * Persist changes to the page filter sele...
We should only check for desynced page filter state when the site first loads, not on subsequent route changes (e.g. when the user clicks on an internal link). Internal route changes and whatever updates to page filter values that they carry are assumed to be intentional and thus should not trigger a desync state warni...
https://api.github.com/repos/getsentry/sentry/pulls/50110
2023-05-31T21:38:25Z
2023-06-08T19:33:21Z
2023-06-08T19:33:21Z
2023-06-24T00:02:42Z
2,331
getsentry/sentry
44,280
SF.10: Fix annotation of examples
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 14e4f01ef..5983e6c5f 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -19096,12 +19096,12 @@ Avoid surprises. Avoid having to change `#include`s if an `#include`d header changes. Avoid accidentally becoming dependent on implementation detai...
In one example, a _bad_ annotation was marking a perfectly fine function name instead of the incorrect local variable declaration. In another example, a _fine_ annotation of the aforementioned variable declaration was missing.
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/1627
2020-05-27T15:08:22Z
2020-05-28T18:37:51Z
2020-05-28T18:37:51Z
2020-05-29T18:11:15Z
158
isocpp/CppCoreGuidelines
15,370
Fix config edit mac os
diff --git a/README.md b/README.md index ba8fafb62..a63759189 100644 --- a/README.md +++ b/README.md @@ -350,6 +350,10 @@ pip install fastapi uvicorn uvicorn server:app --reload ``` +## Android + +The step-by-step guide for installing Open Interpreter on your Android device can be found in the [open-interpreter-ter...
### Describe the changes you have made: Added the `try...except` in case MacOS does not have `xdg-open` installed and calls `open` instead. Previous functionality that was removed when updating `config_file` to `config_directory` as seen in https://github.com/KillianLucas/open-interpreter/commit/3241ae47372693e083b4bb...
https://api.github.com/repos/OpenInterpreter/open-interpreter/pulls/927
2024-01-15T20:39:58Z
2024-01-15T22:15:18Z
2024-01-15T22:15:18Z
2024-01-15T22:15:18Z
400
OpenInterpreter/open-interpreter
40,684