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
Added CodeLlama 70b model
diff --git a/g4f/models.py b/g4f/models.py index e58ccef2ed..dd8e175d57 100644 --- a/g4f/models.py +++ b/g4f/models.py @@ -123,6 +123,12 @@ def __all__() -> list[str]: best_provider = RetryProvider([HuggingChat, PerplexityLabs, DeepInfra]) ) +codellama_70b_instruct = Model( + name = "codellama/CodeL...
https://api.github.com/repos/xtekky/gpt4free/pulls/1547
2024-02-04T18:51:10Z
2024-02-05T13:47:24Z
2024-02-05T13:47:24Z
2024-02-14T01:28:01Z
357
xtekky/gpt4free
38,171
Fixed #18110 -- Improve template cache tag documentation
diff --git a/docs/topics/cache.txt b/docs/topics/cache.txt index 03afa86647632..d0bd9f699294d 100644 --- a/docs/topics/cache.txt +++ b/docs/topics/cache.txt @@ -595,7 +595,8 @@ the ``cache`` template tag. To give your template access to this tag, put The ``{% cache %}`` template tag caches the contents of the block ...
For me it was not clear that the fragment name cannot be a variable. I just found out by wondering about errors and having a quick look into Django's code. It should be made more clear that the second argument will not be resolved even though all the others will be (even the cache time gets resolved). "It takes at lea...
https://api.github.com/repos/django/django/pulls/153
2012-06-14T14:43:06Z
2012-08-04T19:50:42Z
2012-08-04T19:50:42Z
2014-06-26T08:30:28Z
164
django/django
50,876
Fix TFDWConv() `c1 == c2` check
diff --git a/models/tf.py b/models/tf.py index b70e3748800..3428032a0aa 100644 --- a/models/tf.py +++ b/models/tf.py @@ -88,10 +88,10 @@ def call(self, inputs): class TFDWConv(keras.layers.Layer): # Depthwise convolution - def __init__(self, c1, c2, k=1, s=1, p=None, g=1, act=True, w=None): + def __init__...
## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Enhancement of Depthwise Convolution Layer in TensorFlow Models. ### 📊 Key Changes - Removed the `g` parameter (number of groups) from `TFDWConv` layer initializer arguments. - Modified the ass...
https://api.github.com/repos/ultralytics/yolov5/pulls/7842
2022-05-16T16:06:17Z
2022-05-16T16:06:46Z
2022-05-16T16:06:46Z
2024-01-19T10:27:17Z
254
ultralytics/yolov5
25,521
Fix for #13740
diff --git a/youtube_dl/extractor/mlb.py b/youtube_dl/extractor/mlb.py index 59cd4b8389f..4d45f960eea 100644 --- a/youtube_dl/extractor/mlb.py +++ b/youtube_dl/extractor/mlb.py @@ -15,7 +15,7 @@ class MLBIE(InfoExtractor): (?:[\da-z_-]+\.)*mlb\.com/ (?: ...
## 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/13773
2017-07-29T23:32:08Z
2017-08-04T15:46:55Z
2017-08-04T15:46:55Z
2017-08-04T15:46:55Z
326
ytdl-org/youtube-dl
50,090
Create model card for spanbert-finetuned-squadv2
diff --git a/model_cards/mrm8488/spanbert-finetuned-squadv2/README.md b/model_cards/mrm8488/spanbert-finetuned-squadv2/README.md new file mode 100644 index 0000000000000..47a4cc42d8c89 --- /dev/null +++ b/model_cards/mrm8488/spanbert-finetuned-squadv2/README.md @@ -0,0 +1,86 @@ +--- +language: english +thumbnail: +--- ...
https://api.github.com/repos/huggingface/transformers/pulls/3293
2020-03-16T08:02:08Z
2020-03-16T16:32:47Z
2020-03-16T16:32:47Z
2020-03-16T16:32:48Z
1,044
huggingface/transformers
12,822
downloader.webclient: make reactor import local
diff --git a/scrapy/core/downloader/webclient.py b/scrapy/core/downloader/webclient.py index 915cb5fe332..06cb9648978 100644 --- a/scrapy/core/downloader/webclient.py +++ b/scrapy/core/downloader/webclient.py @@ -3,7 +3,7 @@ from urllib.parse import urlparse, urlunparse, urldefrag from twisted.web.http import HTTPC...
All reactor imports must be local not top level because twisted.internet.reactor import installs default reactor, and if you want to use non-default reactor like asyncio top level import will break things for you. In my case I had a middleware imported in spider in spider ```python from project.middlewares.ret...
https://api.github.com/repos/scrapy/scrapy/pulls/5357
2021-12-30T12:15:31Z
2021-12-31T10:57:12Z
2021-12-31T10:57:12Z
2021-12-31T10:57:26Z
204
scrapy/scrapy
35,059
Update interpreter.py for a typo error
diff --git a/interpreter/interpreter.py b/interpreter/interpreter.py index ea34fdf68..d7db07dbc 100644 --- a/interpreter/interpreter.py +++ b/interpreter/interpreter.py @@ -132,7 +132,7 @@ def cli(self): def get_info_for_system_message(self): """ - Gets relevent information for the system message. + Get...
### Describe the changes you have made: I have fixed a typo error in interpreter.py file ### Reference any relevant issue (actually none for current PR) None - [x] I have performed a self-review of my code: ### I have tested the code on the following OS: - [x] Windows - [x] MacOS - [x] Linux
https://api.github.com/repos/OpenInterpreter/open-interpreter/pulls/397
2023-09-16T04:13:58Z
2023-09-16T06:25:43Z
2023-09-16T06:25:43Z
2023-09-16T06:25:44Z
102
OpenInterpreter/open-interpreter
40,810
Minor CF refactoring; enhance error logging for SSL cert errors
diff --git a/localstack/services/cloudformation/cloudformation_starter.py b/localstack/services/cloudformation/cloudformation_starter.py index c4f8bfbbb21a9..cdadc7312c167 100644 --- a/localstack/services/cloudformation/cloudformation_starter.py +++ b/localstack/services/cloudformation/cloudformation_starter.py @@ -174...
Minor CF refactoring; enhance error logging for SSL cert errors
https://api.github.com/repos/localstack/localstack/pulls/2549
2020-06-11T23:05:17Z
2020-06-11T23:47:14Z
2020-06-11T23:47:14Z
2020-06-11T23:47:20Z
924
localstack/localstack
28,443
Contentview scripts
diff --git a/examples/custom_contentviews.py b/examples/custom_contentviews.py new file mode 100644 index 0000000000..1a2bcb1e8d --- /dev/null +++ b/examples/custom_contentviews.py @@ -0,0 +1,66 @@ +import string +from libmproxy import script, flow, utils +import libmproxy.contentviews as cv +from netlib.http import He...
Based on feedback from PR #832, simple custom content view support in scripts for mitmproxy/mitmdump.
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/833
2015-11-13T21:56:30Z
2015-11-14T02:41:05Z
2015-11-14T02:41:05Z
2015-11-14T02:41:06Z
2,213
mitmproxy/mitmproxy
27,422
PERF: add shortcut to Timestamp constructor
diff --git a/asv_bench/benchmarks/tslibs/timestamp.py b/asv_bench/benchmarks/tslibs/timestamp.py index 8ebb2d8d2f35d..3ef9b814dd79e 100644 --- a/asv_bench/benchmarks/tslibs/timestamp.py +++ b/asv_bench/benchmarks/tslibs/timestamp.py @@ -1,12 +1,19 @@ import datetime import dateutil +import numpy as np import pytz ...
- [X] closes #30543 - [X] tests added 1 / passed 1 - [X] passes `black pandas` - [X] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [X] whatsnew entry This implements a shortcut in the Timestamp constructor to cut down on processing if Timestamp is passed. We still need to check if the timezon...
https://api.github.com/repos/pandas-dev/pandas/pulls/30676
2020-01-04T07:19:38Z
2020-01-26T01:03:37Z
2020-01-26T01:03:37Z
2020-01-27T06:55:10Z
1,464
pandas-dev/pandas
45,157
BUG: pivot/unstack leading to too many items should raise exception
diff --git a/doc/source/whatsnew/v0.24.0.rst b/doc/source/whatsnew/v0.24.0.rst index a84fd118061bc..5f40ca2ad3b36 100644 --- a/doc/source/whatsnew/v0.24.0.rst +++ b/doc/source/whatsnew/v0.24.0.rst @@ -1646,6 +1646,7 @@ Reshaping - :meth:`DataFrame.nlargest` and :meth:`DataFrame.nsmallest` now returns the correct n val...
- [x] closes #20601 - [x] tests added / passed - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` - [x] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/23512
2018-11-05T16:56:10Z
2018-12-31T13:16:44Z
2018-12-31T13:16:44Z
2018-12-31T15:51:55Z
1,237
pandas-dev/pandas
45,175
Address #1980
diff --git a/docs/patterns/packages.rst b/docs/patterns/packages.rst index af51717d92..1cd7797420 100644 --- a/docs/patterns/packages.rst +++ b/docs/patterns/packages.rst @@ -8,9 +8,9 @@ module. That is quite simple. Imagine a small application looks like this:: /yourapplication - /yourapplication.py +...
- Large apps play nicer with recommended project structure #1980 - runserver.py --> setup.py - Run as: pip install -e. export FLASK_APP=yourapplication flask run I did not change much, one new paragraph. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" heigh...
https://api.github.com/repos/pallets/flask/pulls/2021
2016-09-11T15:38:18Z
2016-09-11T15:53:35Z
2016-09-11T15:53:35Z
2020-11-14T04:33:22Z
665
pallets/flask
20,216
Fix superbooga when using regenerate
diff --git a/extensions/superbooga/script.py b/extensions/superbooga/script.py index 5ef14d9d82..475cf1e061 100644 --- a/extensions/superbooga/script.py +++ b/extensions/superbooga/script.py @@ -96,7 +96,8 @@ def apply_settings(chunk_count, chunk_count_initial, time_weight): def custom_generate_chat_prompt(user_input,...
When superbooga is active and you use regenerate, superbooga uses the history that still includes the output of the last query. This little change fixes it. I do not think that there are other side effects.
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/3362
2023-07-30T00:51:21Z
2023-08-09T02:26:28Z
2023-08-09T02:26:28Z
2023-08-09T02:51:18Z
158
oobabooga/text-generation-webui
26,598
Fix leaderboard.json file in Hebrew translation, Resolves #3159.
diff --git a/website/public/locales/he/leaderboard.json b/website/public/locales/he/leaderboard.json index 117c7b2296..fc8f45535a 100644 --- a/website/public/locales/he/leaderboard.json +++ b/website/public/locales/he/leaderboard.json @@ -9,6 +9,7 @@ "labels_simple": "תוויות (פשוטות)", "last_updated_at": "עודכן ל...
Added `level_progress_message`, `reached_max_level`, and `xp_progress_message` to the leaderboard.json file in the Hebrew translation.
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/3160
2023-05-14T16:36:40Z
2023-05-14T18:07:20Z
2023-05-14T18:07:20Z
2023-05-14T18:30:37Z
522
LAION-AI/Open-Assistant
36,878
CI: Format isort output for azure
diff --git a/ci/code_checks.sh b/ci/code_checks.sh index ceb13c52ded9c..cfe55f1e05f71 100755 --- a/ci/code_checks.sh +++ b/ci/code_checks.sh @@ -105,7 +105,12 @@ if [[ -z "$CHECK" || "$CHECK" == "lint" ]]; then # Imports - Check formatting using isort see setup.cfg for settings MSG='Check import format usin...
- [x] closes #27179 - [x] tests added / passed - [x] passes `black pandas` - [x] passes `git diff upstream/master -u -- "*.py" | flake8 --diff` Current behaviour on master of isort formatting: ![image](https://user-images.githubusercontent.com/16733618/69010035-12c41f80-0953-11ea-8e70-4d17e8dec943.png) Fini...
https://api.github.com/repos/pandas-dev/pandas/pulls/29654
2019-11-16T02:59:26Z
2019-12-06T01:10:29Z
2019-12-06T01:10:28Z
2019-12-25T20:27:02Z
230
pandas-dev/pandas
45,550
Slight refactoring to allow customizing DynamoDB server startup
diff --git a/localstack/services/dynamodb/server.py b/localstack/services/dynamodb/server.py index 2752e309d1a08..59aff5c8dc57a 100644 --- a/localstack/services/dynamodb/server.py +++ b/localstack/services/dynamodb/server.py @@ -100,11 +100,13 @@ def create_dynamodb_server(port=None) -> DynamodbServer: Creates a d...
DynamoDBLocal can start in [two different modes](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.UsageNotes.html). If a `dbPath` is set, DynamoDB writes its database files in that directory. If not, it runs in `inMemory`mode with a transient state (which is what we currently do if persis...
https://api.github.com/repos/localstack/localstack/pulls/6109
2022-05-20T16:00:59Z
2022-05-21T15:29:05Z
2022-05-21T15:29:05Z
2022-05-21T15:29:22Z
256
localstack/localstack
28,639
cli[patch]: copyright 2024 default
diff --git a/libs/cli/langchain_cli/integration_template/LICENSE b/libs/cli/langchain_cli/integration_template/LICENSE index 426b65090341f3..fc0602feecdd67 100644 --- a/libs/cli/langchain_cli/integration_template/LICENSE +++ b/libs/cli/langchain_cli/integration_template/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright...
https://api.github.com/repos/langchain-ai/langchain/pulls/17204
2024-02-07T22:51:51Z
2024-02-07T22:52:37Z
2024-02-07T22:52:37Z
2024-02-07T22:56:26Z
413
langchain-ai/langchain
42,832
Fix race condition when running mssql tests
diff --git a/scripts/ci/docker-compose/backend-mssql.yml b/scripts/ci/docker-compose/backend-mssql.yml index 69b4aa5fb6e5a..7fc5540e467a0 100644 --- a/scripts/ci/docker-compose/backend-mssql.yml +++ b/scripts/ci/docker-compose/backend-mssql.yml @@ -49,6 +49,12 @@ services: entrypoint: - bash - -c - ...
There is a race condition where initialization of Airlfow DB for mssql might be executed when the server is started but it is not yet initialized with a model db needed to create airflow db. In such case mssql database intialization will fail as it will not be able to obtain a locl on the `model` database. The er...
https://api.github.com/repos/apache/airflow/pulls/19863
2021-11-28T16:59:25Z
2021-11-29T11:13:41Z
2021-11-29T11:13:41Z
2022-07-29T20:10:11Z
225
apache/airflow
14,261
De-Multiprocess Convert
diff --git a/plugins/convert/writer/opencv.py b/plugins/convert/writer/opencv.py index cabd0ab652..17cafdc591 100644 --- a/plugins/convert/writer/opencv.py +++ b/plugins/convert/writer/opencv.py @@ -47,6 +47,7 @@ def write(self, filename, image): logger.error("Failed to save image '%s'. Original Error: %s"...
OpenCV and Numpy release the GIL, so it is actually faster, in many cases, to use threading rather than Multiprocess. This has the added bonus of simplifying the code. In tests, this PR improves conversion speeds by up to 30% for OpenCV writer and up to 40% for FFMPEG writer. Other writers remain unchanged. ``` ...
https://api.github.com/repos/deepfakes/faceswap/pulls/857
2019-09-02T21:35:54Z
2019-09-02T21:55:37Z
2019-09-02T21:55:37Z
2019-09-02T21:55:37Z
2,281
deepfakes/faceswap
18,826
Control ds_report output
diff --git a/bin/ds_report b/bin/ds_report index 4a31a75c2eab..e6f7b50a78b2 100755 --- a/bin/ds_report +++ b/bin/ds_report @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -from deepspeed.env_report import main +from deepspeed.env_report import cli_main if __name__ == '__main__': - main() + cli_main() diff --git a/de...
Add two flags to help control ds_report out: 1. --hide_operator_status 2. --hide_errors_and_warnings Separate cli and function entry points into ds_report Should fix #1541.
https://api.github.com/repos/microsoft/DeepSpeed/pulls/1622
2021-12-08T20:10:25Z
2021-12-09T00:29:13Z
2021-12-09T00:29:13Z
2023-07-07T02:40:01Z
1,798
microsoft/DeepSpeed
10,188
[Bandcamp] Added track number for metadata (fixes issue #17266)
diff --git a/youtube_dl/extractor/bandcamp.py b/youtube_dl/extractor/bandcamp.py index b8514734d57..bc4c5165af7 100644 --- a/youtube_dl/extractor/bandcamp.py +++ b/youtube_dl/extractor/bandcamp.py @@ -44,6 +44,17 @@ class BandcampIE(InfoExtractor): 'title': 'Ben Prunty - Lanius (Battle)', 'upl...
## 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/17366
2018-08-27T22:03:56Z
2018-08-30T19:32:36Z
2018-08-30T19:32:36Z
2018-08-30T21:52:41Z
296
ytdl-org/youtube-dl
50,093
Fix an exception when auto-casting dicts to fp16
diff --git a/deepspeed/runtime/engine.py b/deepspeed/runtime/engine.py index 1fd7d7e964e8..59e1b9030431 100644 --- a/deepspeed/runtime/engine.py +++ b/deepspeed/runtime/engine.py @@ -1694,7 +1694,7 @@ def _cast_inputs_half(self, inputs): return inputs.__class__(new_inputs) elif isinstance(inputs, ...
Deepspeed raises an exception when using fp16 auto_cast mode with a model that takes a dictionary as input. Quick test on `0.7.3` to display what I'm talking about: ``` $ cat test.py import torch import deepspeed import argparse parser = argparse.ArgumentParser(description='Test model') parser.add_argument('...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/2370
2022-09-27T23:41:34Z
2022-09-29T20:09:37Z
2022-09-29T20:09:37Z
2022-09-30T01:33:52Z
147
microsoft/DeepSpeed
9,979
Support BBC News (bbc.com/news)
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py index dc1a302e69c..1a9585c9264 100644 --- a/youtube_dl/extractor/__init__.py +++ b/youtube_dl/extractor/__init__.py @@ -38,7 +38,7 @@ from .baidu import BaiduVideoIE from .bambuser import BambuserIE, BambuserChannelIE from .bandcamp imp...
bbc.com/news uses the same mediaselector format, but a different mediaselector url, and inlined json + xml playlist.sxml methods for obtaining video ids. _download_media_selector is mostly redundant except for the hardcoded url; perhaps it should be made a third argument?
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/6026
2015-06-19T06:47:09Z
2015-07-25T14:22:21Z
2015-07-25T14:22:21Z
2015-07-25T14:25:31Z
2,528
ytdl-org/youtube-dl
50,439
Refs #25136 -- Added a missing field/model in aggregation topic guide.
diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt index fbf3e51ebd2bf..310745d869b88 100644 --- a/docs/topics/db/aggregation.txt +++ b/docs/topics/db/aggregation.txt @@ -193,24 +193,25 @@ Combining multiple aggregations with ``annotate()`` will `yield the wrong results <https://code.djangopr...
Reported on django-users: https://groups.google.com/d/topic/django-users/uSXcyWdm7q4/discussion
https://api.github.com/repos/django/django/pulls/6524
2016-04-27T18:51:00Z
2016-04-27T19:26:10Z
2016-04-27T19:26:10Z
2016-04-27T19:26:42Z
378
django/django
51,492
Update config.html
diff --git a/gae_proxy/web_ui/config.html b/gae_proxy/web_ui/config.html index 704861d5f0..4bf92b3135 100644 --- a/gae_proxy/web_ui/config.html +++ b/gae_proxy/web_ui/config.html @@ -8,7 +8,7 @@ <div id="public-appid-tip" class="hide"> <p> <span color="red">{{ _( "The ...
https://api.github.com/repos/XX-net/XX-Net/pulls/2850
2016-04-12T01:57:50Z
2016-04-12T13:26:23Z
2016-04-12T13:26:23Z
2016-04-13T04:32:05Z
219
XX-net/XX-Net
17,275
Added format to specify VAE filename for generated image filenames
diff --git a/modules/images.py b/modules/images.py index a41965ab6f5..3abaf4121ae 100644 --- a/modules/images.py +++ b/modules/images.py @@ -21,6 +21,8 @@ from modules import sd_samplers, shared, script_callbacks, errors from modules.shared import opts, cmd_opts +import modules.sd_vae as sd_vae + LANCZOS = (I...
Subject:. Added format to specify VAE filename for generated image filenames Body:. 1) Added new line 24 to import sd_vae module. 2) Added new method get_vae_filename at lines 340-349 to obtain the VAE filename to be used for image generation and further process it to extract only the filename by splitting it wit...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/10655
2023-05-23T07:52:56Z
2023-05-27T17:11:22Z
2023-05-27T17:11:22Z
2023-05-27T17:11:22Z
443
AUTOMATIC1111/stable-diffusion-webui
40,310
fix OrderType and OrderSide
diff --git a/ts/src/base/types.ts b/ts/src/base/types.ts index 84bd4b3295c6..3dddc4fdd525 100644 --- a/ts/src/base/types.ts +++ b/ts/src/base/types.ts @@ -198,6 +198,6 @@ export type IndexType = number | string; export type Int = number; -export type OrderSide = 'buy' | 'sell'; +export type OrderSide = 'buy' | 'se...
- sometimes, we support custom values like `stop_market` or `long` so these types must be more inclusive
https://api.github.com/repos/ccxt/ccxt/pulls/17712
2023-04-29T13:19:14Z
2023-04-29T14:07:35Z
2023-04-29T14:07:35Z
2023-04-29T14:07:35Z
139
ccxt/ccxt
13,002
Change the color for deferred status to mediumpurple
diff --git a/airflow/settings.py b/airflow/settings.py index 140375913268d..fc2c6bbbef8e0 100644 --- a/airflow/settings.py +++ b/airflow/settings.py @@ -93,7 +93,7 @@ "upstream_failed": "orange", "skipped": "pink", "scheduled": "tan", - "deferred": "lightseagreen", + "deferred": "mediumpurple", } ...
Changes the color for the deferred status to something more distinct, mediumpurple. ![image](https://user-images.githubusercontent.com/13177948/134234580-11d1cec0-d9ad-45e4-9577-e9066b829363.png) ![image](https://user-images.githubusercontent.com/13177948/134234619-04851b97-5a26-4ecb-baa8-dbf3cd7270b0.png) c...
https://api.github.com/repos/apache/airflow/pulls/18414
2021-09-21T19:25:23Z
2021-10-06T19:45:12Z
2021-10-06T19:45:12Z
2021-10-06T19:45:12Z
708
apache/airflow
14,479
Update readme.md with proper dependency version
diff --git a/README.md b/README.md index 1045189d6d63b..c02e2556fc9e7 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ localstack start ### Using `docker-compose` -You can also use the `docker-compose.yml` file from the repository and use this command (currently requires `docker-compose` version 2.1+): +...
The docker-compose.yml file in the root director is using the version 2.1 file spec. This requires Compose 1.9.0+. Updating readme.md to reflect this. docker-compose latest version is currently at 1.27.4 See: https://docs.docker.com/compose/compose-file/compose-versioning/#version-21 **Please refer to the contribu...
https://api.github.com/repos/localstack/localstack/pulls/3163
2020-10-23T18:55:34Z
2020-10-24T09:59:17Z
2020-10-24T09:59:17Z
2020-10-24T09:59:17Z
144
localstack/localstack
28,832
[polskieradio] Add thumbnails.
diff --git a/youtube_dl/extractor/polskieradio.py b/youtube_dl/extractor/polskieradio.py index d3bebaea32f..9e7eab12edc 100644 --- a/youtube_dl/extractor/polskieradio.py +++ b/youtube_dl/extractor/polskieradio.py @@ -33,6 +33,7 @@ class PolskieRadioIE(InfoExtractor): 'timestamp': 1456594200, ...
### What is the purpose of your _pull request_? - [x] Bug fix - [ ] New extractor - [ ] New feature --- ### Description of your _pull request_ and other information This is a simple change to extract thumbnails from Polskie Radio auditions.
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/10028
2016-07-07T09:31:06Z
2016-07-08T11:36:14Z
2016-07-08T11:36:14Z
2016-08-25T10:08:12Z
316
ytdl-org/youtube-dl
49,828
gh-89653: PEP 670: Convert PyUnicode_KIND() macro to function
diff --git a/Include/cpython/unicodeobject.h b/Include/cpython/unicodeobject.h index 8c53962437b6e0..030614e263344d 100644 --- a/Include/cpython/unicodeobject.h +++ b/Include/cpython/unicodeobject.h @@ -242,9 +242,23 @@ enum PyUnicode_Kind { PyUnicode_4BYTE_KIND = 4 }; -/* Return one of the PyUnicode_*_KIND val...
In the limited C API version 3.12, PyUnicode_KIND() is now implemented as a static inline function. Keep the macro for the regular C API and for the limited C API version 3.11 and older to prevent introducing new compiler warnings. Update _decimal.c and stringlib/eq.h for PyUnicode_KIND(). <!-- Thanks for you...
https://api.github.com/repos/python/cpython/pulls/92705
2022-05-12T00:33:12Z
2022-05-13T09:49:57Z
2022-05-13T09:49:57Z
2022-05-16T08:04:04Z
1,204
python/cpython
4,236
fix: check-license
diff --git a/scripts/check-license.py b/scripts/check-license.py index 67caa30a3e3f..e5d5792d06b6 100755 --- a/scripts/check-license.py +++ b/scripts/check-license.py @@ -19,20 +19,24 @@ def err(s: str) -> None: COPYRIGHT = [ - r"^\(\/\/\|#\) Copyright (c) Microsoft Corporation.$", r"^\(\/\/\|#\) SPDX-License-I...
git grep on apple is currently unable to parse the regex used in the license check. I have changed the logic in the license check script such that it works on mac and linux. On Mac, the git grep does not work, even though the grep works: <img width="706" alt="image" src="https://github.com/microsoft/DeepSpeed/asse...
https://api.github.com/repos/microsoft/DeepSpeed/pulls/4432
2023-10-01T12:35:42Z
2023-10-03T17:27:39Z
2023-10-03T17:27:39Z
2023-10-03T20:32:30Z
372
microsoft/DeepSpeed
10,379
Use win32 as platform in tox.ini
diff --git a/tox.ini b/tox.ini index 8965b6055c6..03f638c0efa 100644 --- a/tox.ini +++ b/tox.ini @@ -26,8 +26,8 @@ source_paths = acme/acme certbot/certbot certbot-apache/certbot_apache certbot-c passenv = CERTBOT_NO_PIN platform = - win: win64 - posix: ^(?!.*win64).*$ + win: win32 + posix: ^(?!.*win...
This is used to match against sys.platform, which for windows is win32 regardless of bitness
https://api.github.com/repos/certbot/certbot/pulls/9277
2022-04-11T18:43:19Z
2022-04-18T21:40:46Z
2022-04-18T21:40:46Z
2022-04-18T21:40:47Z
163
certbot/certbot
105
adding dora
diff --git a/README.md b/README.md index 21bd737c..aa2ddfc1 100644 --- a/README.md +++ b/README.md @@ -800,6 +800,7 @@ on MNIST digits[DEEP LEARNING] * [bqplot](https://github.com/bloomberg/bqplot) - An API for plotting in Jupyter (IPython) * [pastalog](https://github.com/rewonc/pastalog) - Simple, realtime visualiza...
Adding Dora (library for exploratory data analysis in Python) to the list.
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/274
2016-05-11T02:03:01Z
2016-05-11T14:37:10Z
2016-05-11T14:37:10Z
2016-05-11T14:37:14Z
196
josephmisiti/awesome-machine-learning
52,304
New cloudsplaining tool to AWS Pentest page
diff --git a/Methodology and Resources/Cloud - AWS Pentest.md b/Methodology and Resources/Cloud - AWS Pentest.md index e795052a1b..e20e2698a2 100644 --- a/Methodology and Resources/Cloud - AWS Pentest.md +++ b/Methodology and Resources/Cloud - AWS Pentest.md @@ -149,6 +149,13 @@ $ python s3-objects-check.py -p w...
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/320
2021-01-12T12:02:01Z
2021-01-12T12:42:37Z
2021-01-12T12:42:36Z
2021-01-12T14:04:03Z
255
swisskyrepo/PayloadsAllTheThings
8,511
Add plug points for code/config initializations in LambdaExecutorPlugin
diff --git a/localstack/services/awslambda/lambda_api.py b/localstack/services/awslambda/lambda_api.py index 2fb94d851fd28..a56fc1f24d078 100644 --- a/localstack/services/awslambda/lambda_api.py +++ b/localstack/services/awslambda/lambda_api.py @@ -224,14 +224,6 @@ def check_batch_size_range(source_arn, batch_size=None...
* Add plug points for code/config initializations in LambdaExecutorPlugin * Streamline parameters for `set_function_code(..)` functions - replacing individual args with single `LambdaFunction` arg * Refactor `testutil.py` to deploy large Lambda zip files automatically via S3 (avoiding `RequestEntityTooLargeException`...
https://api.github.com/repos/localstack/localstack/pulls/4540
2021-09-04T12:24:17Z
2021-09-04T13:00:06Z
2021-09-04T13:00:06Z
2021-09-04T13:00:09Z
3,095
localstack/localstack
29,095
Added Superhero API
diff --git a/README.md b/README.md index 19e9522c0a..4c2cc5b0be 100644 --- a/README.md +++ b/README.md @@ -428,6 +428,7 @@ API | Description | Auth | HTTPS | CORS | | [Riot Games](https://developer.riotgames.com/) | League of Legends Game Information | `apiKey` | Yes | Unknown | | [Scryfall](https://scryfall.com/docs...
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] Your submissions are formatted according to the guidelines in the [contributing guide](CONTRIBUTING.md) - [X] Your additions are ordered alphabetically - [X] Your s...
https://api.github.com/repos/public-apis/public-apis/pulls/939
2019-04-22T13:01:37Z
2019-10-23T13:34:18Z
2019-10-23T13:34:18Z
2019-10-23T19:51:45Z
292
public-apis/public-apis
35,509
fix insert for simple vector index
diff --git a/gpt_index/indices/vector_store/vector_indices.py b/gpt_index/indices/vector_store/vector_indices.py index 73ef44afcbc86..f1ba5c768128d 100644 --- a/gpt_index/indices/vector_store/vector_indices.py +++ b/gpt_index/indices/vector_store/vector_indices.py @@ -15,6 +15,7 @@ SimpleIndexDict, WeaviateIn...
https://api.github.com/repos/run-llama/llama_index/pulls/934
2023-03-28T00:09:25Z
2023-03-28T00:18:02Z
2023-03-28T00:18:02Z
2023-03-28T00:18:03Z
314
run-llama/llama_index
6,630
Enable select platform in Overkiz integration
diff --git a/homeassistant/components/overkiz/const.py b/homeassistant/components/overkiz/const.py index 119f7a322624..8488103a2384 100644 --- a/homeassistant/components/overkiz/const.py +++ b/homeassistant/components/overkiz/const.py @@ -28,6 +28,7 @@ Platform.LOCK, Platform.NUMBER, Platform.SCENE, + ...
## Proposed change Not sure how this could have happened, but it seems that the Select platform has been merged, but that the constant is not present in the enabled platforms list... ## Type of change <!-- What type of change does your PR introduce to Home Assistant? NOTE: Please, check only 1! box! If y...
https://api.github.com/repos/home-assistant/core/pulls/68995
2022-03-31T16:31:20Z
2022-04-01T14:28:29Z
2022-04-01T14:28:29Z
2022-04-02T17:03:07Z
119
home-assistant/core
38,715
Fixes ios_logging idempotence issue CP into 2.6
diff --git a/lib/ansible/modules/network/ios/ios_logging.py b/lib/ansible/modules/network/ios/ios_logging.py index 74a3bc193b837d..10923d77975557 100644 --- a/lib/ansible/modules/network/ios/ios_logging.py +++ b/lib/ansible/modules/network/ios/ios_logging.py @@ -121,7 +121,6 @@ import re from copy import deepcopy -...
* Fixes ios_logging idempotence issue * Added integration tests ##### SUMMARY Fixed ios_logging idempotence issue while setting both logging destination and facility. (PR https://github.com/ansible/ansible/pull/40701) ##### ISSUE TYPE - Bugfix Pull Request ##### COMPONENT NAME ``` ios_logging.py ``` #...
https://api.github.com/repos/ansible/ansible/pulls/40897
2018-05-30T15:28:54Z
2018-05-31T17:00:43Z
2018-05-31T17:00:43Z
2019-05-31T15:42:56Z
1,420
ansible/ansible
48,981
Add a rewrite directive for the .well-known location so we don't hit existing rewrites
diff --git a/certbot-nginx/certbot_nginx/http_01.py b/certbot-nginx/certbot_nginx/http_01.py index c25081ae04e..2885e7ac0fc 100644 --- a/certbot-nginx/certbot_nginx/http_01.py +++ b/certbot-nginx/certbot_nginx/http_01.py @@ -191,3 +191,8 @@ def _make_or_mod_server_block(self, achall): self.configurator.parse...
Part of #5409. Implementation as suggested by https://community.letsencrypt.org/t/help-test-certbot-apache-and-nginx-fixes-for-tls-sni-01-outage/50207/18. Implementation currently adds a redundant `rewrite` directive every time we add a `location` block to the server block to handle a different challenge. This is...
https://api.github.com/repos/certbot/certbot/pulls/5436
2018-01-16T23:37:49Z
2018-01-17T16:01:45Z
2018-01-17T16:01:45Z
2018-01-17T16:01:45Z
1,250
certbot/certbot
24
Add limit_to_domains to APIChain based tools
diff --git a/libs/langchain/langchain/agents/load_tools.py b/libs/langchain/langchain/agents/load_tools.py index e464d6b7287808..60377c137d056f 100644 --- a/libs/langchain/langchain/agents/load_tools.py +++ b/libs/langchain/langchain/agents/load_tools.py @@ -142,7 +142,11 @@ def _get_llm_math(llm: BaseLanguageModel) ->...
- **Description:** Adds `limit_to_domains` param to the APIChain based tools (open_meteo, TMDB, podcast_docs, and news_api) - **Issue:** I didn't open an issue, but after upgrading to 0.0.328 using these tools would throw an error. - **Dependencies:** N/A - **Tag maintainer:** @baskaryan **Note*...
https://api.github.com/repos/langchain-ai/langchain/pulls/13367
2023-11-14T20:15:54Z
2023-11-15T03:07:16Z
2023-11-15T03:07:16Z
2023-11-15T03:07:17Z
573
langchain-ai/langchain
43,184
Doc: Use ``closer.lua`` script for downloading sources
diff --git a/docs/apache-airflow/installing-from-sources.rst b/docs/apache-airflow/installing-from-sources.rst index d5559106b5507..630e61c33d0c1 100644 --- a/docs/apache-airflow/installing-from-sources.rst +++ b/docs/apache-airflow/installing-from-sources.rst @@ -34,9 +34,11 @@ The packages are available at the The...
- Follows first point of https://infra.apache.org/release-download-pages.html#download-page to use `https://www.apache.org/dyn/closer.lua/PROJECT/VERSION/SOURCE-RELEASE` for mirrors - Fixes bug as the current version substitution does not work for Hyperlinks (open PR: https://github.com/adamtheturtle/sphinx-substituti...
https://api.github.com/repos/apache/airflow/pulls/18179
2021-09-12T02:00:52Z
2021-09-12T08:58:54Z
2021-09-12T08:58:54Z
2021-11-22T18:42:47Z
825
apache/airflow
14,432
fix #2600
diff --git a/gym/envs/toy_text/frozen_lake.py b/gym/envs/toy_text/frozen_lake.py index 90ee6a16231..6c23d759498 100644 --- a/gym/envs/toy_text/frozen_lake.py +++ b/gym/envs/toy_text/frozen_lake.py @@ -230,10 +230,10 @@ def reset( def render(self, mode="human"): desc = self.desc.tolist() - if mode...
fix #2600
https://api.github.com/repos/openai/gym/pulls/2601
2022-02-07T18:57:16Z
2022-02-08T01:48:48Z
2022-02-08T01:48:48Z
2022-02-08T01:48:48Z
178
openai/gym
5,262
Setup Github Action to instantiate and run a forward pass with each registered model.
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000000..68fa474167 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,43 @@ +name: Python tests + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + test: + name: ...
This adds a github action to run a test suite, which at the moment only instantiates each model and runs a forward pass. Here's how that looks live: https://github.com/michalwols/pytorch-image-models/runs/651871707?check_suite_focus=true Results include timing for each model: ![image](https://user-images.githubu...
https://api.github.com/repos/huggingface/pytorch-image-models/pulls/143
2020-05-07T05:39:17Z
2020-05-07T16:47:14Z
2020-05-07T16:47:14Z
2020-05-07T16:47:14Z
721
huggingface/pytorch-image-models
16,347
Add prepending text for specific headers (h1, h2, h3)
diff --git a/frontend/src/components/shared/StreamlitMarkdown/StreamlitMarkdown.test.tsx b/frontend/src/components/shared/StreamlitMarkdown/StreamlitMarkdown.test.tsx index b3bd3f0a688a..745271b16d87 100644 --- a/frontend/src/components/shared/StreamlitMarkdown/StreamlitMarkdown.test.tsx +++ b/frontend/src/components/s...
<!-- Before contributing (PLEASE READ!) ⚠️ If your contribution is more than a few lines of code, then prior to starting to code on it please post in the issue saying you want to volunteer, then wait for a positive response. And if there is no issue for it yet, create it first. This helps make sure: 1. Two ...
https://api.github.com/repos/streamlit/streamlit/pulls/5330
2022-09-09T22:36:42Z
2022-09-13T16:02:24Z
2022-09-13T16:02:24Z
2023-05-26T23:34:25Z
877
streamlit/streamlit
21,599
DOC: Remove dead link
diff --git a/doc/install.rst b/doc/install.rst index ef9f68b73d2d9..2596476b9fef5 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -1,3 +1,5 @@ +.. _installation-instructions: + ========================= Installing `scikit-learn` ========================= diff --git a/doc/tutorial/text_analytics/working_with_te...
Link to installation instructions was pointed to a non-existant location.
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/3082
2014-04-17T19:38:44Z
2014-04-17T21:47:00Z
2014-04-17T21:47:00Z
2014-06-13T12:20:29Z
297
scikit-learn/scikit-learn
46,190
Closes #1977
diff --git a/mitmproxy/addons/view.py b/mitmproxy/addons/view.py index d2ab75f3fd..3a0587b054 100644 --- a/mitmproxy/addons/view.py +++ b/mitmproxy/addons/view.py @@ -102,7 +102,7 @@ def generate(self, f: mitmproxy.flow.Flow) -> int: class View(collections.Sequence): def __init__(self): super().__init__(...
Changes view._store from dict to OrderedDict
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/1988
2017-02-04T12:26:50Z
2017-02-04T12:46:45Z
2017-02-04T12:46:45Z
2017-02-04T12:49:42Z
145
mitmproxy/mitmproxy
28,110
Add Nantes City open data
diff --git a/README.md b/README.md index db7325a492..bc5abfea4c 100644 --- a/README.md +++ b/README.md @@ -490,6 +490,8 @@ API | Description | Auth | HTTPS | CORS | | [BCLaws](http://www.bclaws.ca/civix/template/complete/api/index.html) | Access to the laws of British Columbia | No | No | Unknown | | [BusinessUSA](ht...
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] Your submissions are formatted according to the guidelines in the [contributing guide](CONTRIBUTING.md) - [x] Your additions are ordered alphabetically - [x] Your s...
https://api.github.com/repos/public-apis/public-apis/pulls/1078
2019-10-07T09:42:06Z
2019-10-07T11:11:59Z
2019-10-07T11:11:59Z
2019-10-07T11:12:08Z
560
public-apis/public-apis
35,763
OS X Integration Tests Environment Setup
diff --git a/docs/contributing.rst b/docs/contributing.rst index c6443e3b298..c746c6ae731 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -67,8 +67,10 @@ The following tools are there to help you: Integration ~~~~~~~~~~~ +Mac OS X users: Run `./tests/mac-bootstrap.sh` instead of `boulder-start.sh`...
Adds script and documentation to configure and setup environment for integration tests on OS X
https://api.github.com/repos/certbot/certbot/pulls/883
2015-10-03T02:40:33Z
2015-10-05T19:19:21Z
2015-10-05T19:19:21Z
2016-05-06T19:22:10Z
468
certbot/certbot
3,417
Refactor MPS PyTorch fixes, add fix still required for PyTorch nightly builds back
diff --git a/modules/devices.py b/modules/devices.py index 655ca1d3f3f..919048d0dec 100644 --- a/modules/devices.py +++ b/modules/devices.py @@ -2,6 +2,7 @@ import contextlib import torch from modules import errors +from modules.sd_hijack_utils import CondFunc from packaging import version @@ -156,36 +157,7 @@ ...
**Describe what this pull request is trying to achieve.** Refactor MPS fixes to use CondFunc, and put `torch.narrow()` fix that is unfortunately still required back. **Environment this was tested in** - OS: macOS - Browser: Safari - Graphics card: M1 Max 64 GB
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/7455
2023-02-01T10:39:50Z
2023-02-01T13:11:41Z
2023-02-01T13:11:41Z
2023-02-06T21:37:09Z
1,135
AUTOMATIC1111/stable-diffusion-webui
39,711
Expanding tests for le-auto, adding Debian test suite
diff --git a/.travis.yml b/.travis.yml index ed58cff076c..944c88471c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,6 +66,11 @@ matrix: services: docker before_install: addons: + - sudo: required + env: TOXENV=le_auto_wheezy + services: docker + before_install: + addons: ...
Addresses issue #2443 Added Debian Wheezy (7) and Jessie (8)
https://api.github.com/repos/certbot/certbot/pulls/2635
2016-03-10T07:45:59Z
2016-11-10T22:01:15Z
2016-11-10T22:01:15Z
2016-11-10T22:03:48Z
662
certbot/certbot
595
[Workflow] Cleanup workflow docs
diff --git a/README.rst b/README.rst index c0e32bbf0cb55..8c04c28ee93b4 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ Ray is packaged with the following libraries for accelerating machine learning w As well as libraries for taking ML and distributed apps to production: - `Serve`_: Scalable and Programm...
Signed-off-by: Siyuan Zhuang <suquark@gmail.com> <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. --> <!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we wi...
https://api.github.com/repos/ray-project/ray/pulls/27217
2022-07-28T20:57:53Z
2022-08-02T01:04:33Z
2022-08-02T01:04:33Z
2022-08-02T01:04:34Z
2,569
ray-project/ray
19,153
Update nv-transformers workflow to use cu11.6
diff --git a/.github/workflows/nv-transformers-v100.yml b/.github/workflows/nv-transformers-v100.yml index a252c615015d..4e5a34365f52 100644 --- a/.github/workflows/nv-transformers-v100.yml +++ b/.github/workflows/nv-transformers-v100.yml @@ -16,7 +16,7 @@ concurrency: jobs: unit-tests: - runs-on: [self-hosted...
- Update nv-transformers to use cuda 11.6. This also has the side effect of running on a runner using Ubuntu 20.04 which will be needed for new async_io features.
https://api.github.com/repos/microsoft/DeepSpeed/pulls/4412
2023-09-27T18:18:50Z
2023-09-27T21:11:40Z
2023-09-27T21:11:40Z
2023-09-27T21:11:41Z
149
microsoft/DeepSpeed
10,066
[crunchyroll:beta] Use anonymous access instead of redirecting
diff --git a/yt_dlp/extractor/crunchyroll.py b/yt_dlp/extractor/crunchyroll.py index d4968c13b26..141d8c5a7c1 100644 --- a/yt_dlp/extractor/crunchyroll.py +++ b/yt_dlp/extractor/crunchyroll.py @@ -720,15 +720,20 @@ class CrunchyrollBetaBaseIE(CrunchyrollBaseIE): def _get_params(self, lang): if not Crunc...
### Description of your *pull request* and other information Eliminates the beta -> non-beta redirect code, due to changes in the api making it impossible. Instead, uses anonymous access to the beta api, which already works, and its momentarily used by the browser before redirect. Closes #4692 Ran all beta tes...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/4704
2022-08-19T03:48:14Z
2022-08-30T16:34:13Z
2022-08-30T16:34:13Z
2022-08-30T19:59:43Z
1,017
yt-dlp/yt-dlp
8,024
Update requirements.txt with tf-cpu and tf-aarch64
diff --git a/requirements.txt b/requirements.txt index 6313cecee57..a7c567a67ed 100644 --- a/requirements.txt +++ b/requirements.txt @@ -29,7 +29,7 @@ seaborn>=0.11.0 # nvidia-pyindex # TensorRT export # nvidia-tensorrt # TensorRT export # scikit-learn==0.19.2 # CoreML quantization -# tensorflow>=2.4.1 # TFLite ...
## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Enhanced TensorFlow compatibility for YOLOv5 TFLite export ### 📊 Key Changes - Updated `requirements.txt` to clarify TensorFlow requirements for TFLite export. ### 🎯 Purpose & Impact - 🎨 **S...
https://api.github.com/repos/ultralytics/yolov5/pulls/8807
2022-07-31T12:50:09Z
2022-07-31T12:54:55Z
2022-07-31T12:54:55Z
2024-01-19T07:58:16Z
172
ultralytics/yolov5
24,964
Update xlsx arg description (xslx -> xlsx)
diff --git a/README.md b/README.md index b71cc2bca..f480f4fd1 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ optional arguments: path. --csv Create Comma-Separated Values (CSV) File. --xlsx Create the standard file for the modern Microsoft Excel - ...
https://api.github.com/repos/sherlock-project/sherlock/pulls/2050
2024-03-15T16:58:08Z
2024-03-15T16:59:25Z
2024-03-15T16:59:25Z
2024-03-15T17:00:54Z
277
sherlock-project/sherlock
36,317
Maintain score order when curating sources
diff --git a/private_gpt/ui/ui.py b/private_gpt/ui/ui.py index a4b131fe8..460f16014 100644 --- a/private_gpt/ui/ui.py +++ b/private_gpt/ui/ui.py @@ -44,8 +44,8 @@ class Config: frozen = True @staticmethod - def curate_sources(sources: list[Chunk]) -> set["Source"]: - curated_sources = set() + ...
I noticed that every time after restarting PrivateGPT, the output on the screen would vary with similar queries used in "Search Files" mode even though the retrieved 'response' contained the same values that were ordered to the same scores. After some troubleshooting, it looked like the output from the Source.curate...
https://api.github.com/repos/zylon-ai/private-gpt/pulls/1643
2024-02-23T14:33:38Z
2024-03-11T21:27:30Z
2024-03-11T21:27:30Z
2024-03-11T21:27:30Z
249
zylon-ai/private-gpt
38,474
Increase unit test timeout for --coverage.
diff --git a/test/utils/shippable/units.sh b/test/utils/shippable/units.sh index 26cbe1cabcc104..27d678745c2e99 100755 --- a/test/utils/shippable/units.sh +++ b/test/utils/shippable/units.sh @@ -8,7 +8,7 @@ IFS='/:' read -ra args <<< "$1" version="${args[1]}" if [[ "${COVERAGE:-}" == "--coverage" ]]; then - time...
##### SUMMARY Increase unit test timeout for --coverage. ##### ISSUE TYPE Bugfix Pull Request ##### COMPONENT NAME test/utils/shippable/units.sh
https://api.github.com/repos/ansible/ansible/pulls/54913
2019-04-05T16:33:05Z
2019-04-05T16:43:43Z
2019-04-05T16:43:43Z
2019-07-25T17:24:48Z
131
ansible/ansible
48,743
fix url encoding when validating pre-signed signature
diff --git a/localstack/services/s3/presigned_url.py b/localstack/services/s3/presigned_url.py index faea038fee49e..f6b9bde367b15 100644 --- a/localstack/services/s3/presigned_url.py +++ b/localstack/services/s3/presigned_url.py @@ -282,6 +282,7 @@ def validate_presigned_url_s3(context: RequestContext) -> None: :p...
As reported by #8663, we were not properly re-URL-encoding the request path before validating the signature of the pre-signed URL. I've made the necessary modifications into both signature types, and simplified the HMACv1 (signature type `s3`) quite a bit by not recreating a `Request` object but instead directly rec...
https://api.github.com/repos/localstack/localstack/pulls/8664
2023-07-10T13:42:17Z
2023-07-11T08:06:53Z
2023-07-11T08:06:53Z
2023-07-17T10:07:38Z
1,822
localstack/localstack
29,086
Update gptv tool and save code tests
diff --git a/examples/crawl_webpage.py b/examples/crawl_webpage.py index 7dcbf7993..2db9e407b 100644 --- a/examples/crawl_webpage.py +++ b/examples/crawl_webpage.py @@ -10,7 +10,7 @@ async def main(): prompt = """Get data from `paperlist` table in https://papercopilot.com/statistics/iclr-statistics/iclr-2024-st...
https://api.github.com/repos/geekan/MetaGPT/pulls/847
2024-02-06T06:27:08Z
2024-02-06T07:12:15Z
2024-02-06T07:12:15Z
2024-02-06T07:12:15Z
3,600
geekan/MetaGPT
16,689
[3.7] bpo-32384: Skip test when _testcapi isn't available (GH-4940)
diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py index 7360b34023d3d8..7a21cb7e954ad5 100644 --- a/Lib/test/test_generators.py +++ b/Lib/test/test_generators.py @@ -9,12 +9,18 @@ from test import support -_testcapi = support.import_module('_testcapi') +try: + import _testcapi +except Impor...
(cherry picked from commit 4cc3eb48e1e8289df5153db1c701cae263a1ef86) Co-authored-by: Isaiah Peng <isaiah@users.noreply.github.com> <!-- issue-number: bpo-32384 --> https://bugs.python.org/issue32384 <!-- /issue-number -->
https://api.github.com/repos/python/cpython/pulls/6891
2018-05-16T08:05:29Z
2018-05-16T08:35:07Z
2018-05-16T08:35:07Z
2018-05-16T08:35:10Z
225
python/cpython
4,111
Update check img
diff --git a/paddleocr.py b/paddleocr.py index af0145b48b..96a641bb77 100644 --- a/paddleocr.py +++ b/paddleocr.py @@ -26,6 +26,9 @@ import logging import numpy as np from pathlib import Path +import base64 +from io import BytesIO +from PIL import Image tools = importlib.import_module('.', 'tools') ppocr = impor...
fix https://github.com/PaddlePaddle/PaddleOCR/issues/8457
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/8558
2022-12-06T12:08:26Z
2022-12-07T01:51:54Z
2022-12-07T01:51:54Z
2023-08-07T06:12:35Z
374
PaddlePaddle/PaddleOCR
41,861
Added entry for the Associated Press API
diff --git a/README.md b/README.md index b264ef11e8..6105d1f4ce 100644 --- a/README.md +++ b/README.md @@ -597,6 +597,7 @@ API | Description | Auth | HTTPS | CORS | ### News API | Description | Auth | HTTPS | CORS | |---|---|---|---|---| +| [Associated Press](https://developer.ap.org/) | Search for news and metadata...
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] Your submissions are formatted according to the guidelines in the [contributing guide](CONTRIBUTING.md) - [X] Your additions are ordered alphabetically - [X] Your s...
https://api.github.com/repos/public-apis/public-apis/pulls/1083
2019-10-09T16:05:47Z
2019-10-10T21:54:28Z
2019-10-10T21:54:28Z
2019-10-10T21:54:32Z
220
public-apis/public-apis
36,075
✅ Enable tests for Python 3.11
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e6225db3343f..9e492c1adacf8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + ...
✅ Enable tests for Python 3.11 This will have to wait for a Uvloop wheel to be available.
https://api.github.com/repos/tiangolo/fastapi/pulls/4881
2022-05-09T16:25:50Z
2022-11-03T12:26:48Z
2022-11-03T12:26:48Z
2022-11-03T12:26:49Z
466
tiangolo/fastapi
23,067
Dont use constraints file in scheduled builds
diff --git a/.github/scripts/build_info.py b/.github/scripts/build_info.py index 1853329b60c6..390a057ab1e4 100755 --- a/.github/scripts/build_info.py +++ b/.github/scripts/build_info.py @@ -89,6 +89,7 @@ class GithubEvent(enum.Enum): PULL_REQUEST = "pull_request" PUSH = "push" + SCHEDULE = "schedule" ...
<!-- Before contributing (PLEASE READ!) ⚠️ If your contribution is more than a few lines of code, then prior to starting to code on it please post in the issue saying you want to volunteer, then wait for a positive response. And if there is no issue for it yet, create it first. This helps make sure: 1. Two ...
https://api.github.com/repos/streamlit/streamlit/pulls/6470
2023-04-11T07:33:20Z
2023-04-20T10:51:58Z
2023-04-20T10:51:58Z
2023-10-05T19:30:17Z
497
streamlit/streamlit
22,198
Made builder pattern much simpler by removing unnecessary class.
diff --git a/creational/builder.py b/creational/builder.py index 71e3b12f..2c642d7a 100644 --- a/creational/builder.py +++ b/creational/builder.py @@ -10,10 +10,10 @@ from its actual representation (generally for abstraction). *What does this example do? -This particular example uses a Director to abtract the +This...
This follows the motto "a class with only one method that actually does anything should be a function", with the result that using the director function requires one line of code instead of 5.
https://api.github.com/repos/faif/python-patterns/pulls/216
2018-02-03T13:48:49Z
2018-02-06T18:32:29Z
2018-02-06T18:32:29Z
2018-02-06T18:33:44Z
699
faif/python-patterns
33,678
[AIR][Serve] Add support for multi-modal array input
diff --git a/doc/source/serve/http-adapters.md b/doc/source/serve/http-adapters.md index 56fb75605c4dd..129dbb77bad8a 100644 --- a/doc/source/serve/http-adapters.md +++ b/doc/source/serve/http-adapters.md @@ -141,6 +141,6 @@ Here is a list of adapters and please feel free to [contribute more](https://git ```{eval-rs...
<!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. --> <!-- 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 P...
https://api.github.com/repos/ray-project/ray/pulls/25609
2022-06-09T00:45:15Z
2022-06-10T16:19:42Z
2022-06-10T16:19:42Z
2022-06-10T16:19:42Z
2,217
ray-project/ray
19,618
CLN: remove unused axis kwarg from Block.putmask
diff --git a/pandas/core/generic.py b/pandas/core/generic.py index 6a80fa3e93362..857b97f58d8a0 100644 --- a/pandas/core/generic.py +++ b/pandas/core/generic.py @@ -8935,9 +8935,7 @@ def _where( # reconstruct the block manager self._check_inplace_setting(other) - new_data = self._...
- [ ] closes #xxxx - [ ] tests added / passed - [ ] Ensure all linting tests pass, see [here](https://pandas.pydata.org/pandas-docs/dev/development/contributing.html#code-standards) for how to run them - [ ] whatsnew entry
https://api.github.com/repos/pandas-dev/pandas/pulls/39238
2021-01-17T19:11:11Z
2021-01-19T18:11:37Z
2021-01-19T18:11:37Z
2021-01-19T18:15:08Z
1,355
pandas-dev/pandas
45,216
Handle binary files when scanning metadata in python 3 (#53773) - 2.7
diff --git a/test/runner/lib/target.py b/test/runner/lib/target.py index b363c4a0e507bc..4971c07aec3521 100644 --- a/test/runner/lib/target.py +++ b/test/runner/lib/target.py @@ -363,8 +363,12 @@ def analyze_integration_target_dependencies(integration_targets): for meta_path in meta_paths: if os...
(cherry picked from commit c2466c545bce1c89bed5ca6536376444d01f0522) ##### SUMMARY Backport of https://github.com/ansible/ansible/pull/53773 ##### ISSUE TYPE - Bugfix Pull Request ##### COMPONENT NAME ansible-test
https://api.github.com/repos/ansible/ansible/pulls/53784
2019-03-14T05:19:04Z
2019-03-18T19:54:31Z
2019-03-18T19:54:31Z
2019-07-25T17:10:35Z
214
ansible/ansible
49,222
[autoparallel] added new strategy constructor template
diff --git a/colossalai/auto_parallel/solver/op_handler/__init__.py b/colossalai/auto_parallel/solver/op_handler/__init__.py index a0d570325fe5..486a8fe886f6 100644 --- a/colossalai/auto_parallel/solver/op_handler/__init__.py +++ b/colossalai/auto_parallel/solver/op_handler/__init__.py @@ -6,8 +6,9 @@ from .bcast_op_h...
Added the template for the new strategy constructor, it has not been implemented yet, we will come back to this part after all the node handlers are migrated to the new version.
https://api.github.com/repos/hpcaitech/ColossalAI/pulls/1661
2022-09-27T09:24:15Z
2022-09-28T06:01:36Z
2022-09-28T06:01:36Z
2023-01-26T07:45:52Z
1,580
hpcaitech/ColossalAI
11,755
Track st.stop usage
diff --git a/lib/streamlit/commands/execution_control.py b/lib/streamlit/commands/execution_control.py index 52a09c37db46..90f0a67b4302 100644 --- a/lib/streamlit/commands/execution_control.py +++ b/lib/streamlit/commands/execution_control.py @@ -18,6 +18,7 @@ from streamlit.runtime.scriptrunner import RerunData, get_...
## Describe your changes The metrics decorator works for `st.stop` with the new implementation, so it would be nice to collect usage like everything else. --- **Contribution License Agreement** By submitting this pull request you agree that all contributions to this project are made under the Apache 2.0 l...
https://api.github.com/repos/streamlit/streamlit/pulls/7222
2023-08-22T23:23:28Z
2023-08-23T18:17:38Z
2023-08-23T18:17:38Z
2023-08-23T18:17:42Z
122
streamlit/streamlit
21,570
Bump safetensors from 0.4.0 to 0.4.1
diff --git a/requirements.txt b/requirements.txt index 2cfc6a3a89..3d25bfd770 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ peft==0.6.* Pillow>=9.5.0 pyyaml requests -safetensors==0.4.0 +safetensors==0.4.1 scipy sentencepiece tensorboard diff --git a/requirements_amd.txt b/requirements_am...
Bumps [safetensors](https://github.com/huggingface/safetensors) from 0.4.0 to 0.4.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/huggingface/safetensors/releases">safetensors's releases</a>.</em></p> <blockquote> <h2>v0.4.1rc1</h2> <h2>What's Changed</h2> <ul> <li>Back on ...
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/4750
2023-11-27T20:05:11Z
2023-12-04T01:50:10Z
2023-12-04T01:50:10Z
2023-12-04T01:50:18Z
1,046
oobabooga/text-generation-webui
26,683
feedexport removed multispider support
diff --git a/scrapy/contrib/feedexport.py b/scrapy/contrib/feedexport.py index 3732de87f93..bf16cd0f43c 100644 --- a/scrapy/contrib/feedexport.py +++ b/scrapy/contrib/feedexport.py @@ -148,7 +148,6 @@ def __init__(self, settings): self.store_empty = settings.getbool('FEED_STORE_EMPTY') uripar = settin...
https://api.github.com/repos/scrapy/scrapy/pulls/334
2013-07-03T21:25:40Z
2013-07-03T21:26:49Z
2013-07-03T21:26:49Z
2013-07-03T21:26:49Z
347
scrapy/scrapy
34,867
Correct changelog to mention acme changes.
diff --git a/CHANGELOG.md b/CHANGELOG.md index 30cb4d4de12..4a8926c3c14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -58,6 +58,7 @@ Despite us having broken lockstep, we are continuing to release new versions of all Certbot components during releases for the time being, however, the only package with changes other...
We forgot to update the changelog when deprecating TLS-SNI-01 code in `acme` which was included in our release today. This fixes up the changelog entry for the last release so at least the information is right going forward. Maybe it's time we finally automate this step...
https://api.github.com/repos/certbot/certbot/pulls/6909
2019-04-03T21:36:06Z
2019-04-03T22:17:26Z
2019-04-03T22:17:26Z
2019-04-03T22:17:47Z
125
certbot/certbot
2,760
Fixed github action config
diff --git a/.github/workflows/PR_CI.yml b/.github/workflows/PR_CI.yml index dc0685af6bb3..173677b25e2d 100644 --- a/.github/workflows/PR_CI.yml +++ b/.github/workflows/PR_CI.yml @@ -3,6 +3,15 @@ name: Pull Request CI and Build on: pull_request jobs: + cancel_previous_workflow: + runs-on: ubuntu-latest + if:...
https://api.github.com/repos/hpcaitech/ColossalAI/pulls/205
2022-02-04T05:32:08Z
2022-02-04T07:04:55Z
2022-02-04T07:04:55Z
2022-02-17T10:44:17Z
624
hpcaitech/ColossalAI
11,205
[3.12] gh-106242: Fix path truncation in os.path.normpath (GH-106816)
diff --git a/Include/internal/pycore_fileutils.h b/Include/internal/pycore_fileutils.h index ef6642d00f1b54..7c2b6ec0bffef5 100644 --- a/Include/internal/pycore_fileutils.h +++ b/Include/internal/pycore_fileutils.h @@ -252,7 +252,8 @@ extern int _Py_add_relfile(wchar_t *dirname, const wchar_...
<!-- Thanks for your contribution! Please read this comment in its entirety. It's quite important. # Pull Request title It should be in the following format: ``` gh-NNNNN: Summary of the changes made ``` Where: gh-NNNNN refers to the GitHub issue number. Most PRs will require an issue number. Trivial...
https://api.github.com/repos/python/cpython/pulls/107981
2023-08-15T15:39:11Z
2023-08-16T23:19:48Z
2023-08-16T23:19:48Z
2023-08-17T15:48:03Z
1,463
python/cpython
3,910
Add more type hints
diff --git a/patterns/behavioral/publish_subscribe.py b/patterns/behavioral/publish_subscribe.py index 760d8e7b..40aefd2e 100644 --- a/patterns/behavioral/publish_subscribe.py +++ b/patterns/behavioral/publish_subscribe.py @@ -5,21 +5,24 @@ """ +from __future__ import annotations + + class Provider: - def __in...
Add type hints to multiple design pattern examples Related to https://github.com/faif/python-patterns/issues/373
https://api.github.com/repos/faif/python-patterns/pulls/397
2022-07-27T03:24:34Z
2022-08-08T19:13:13Z
2022-08-08T19:13:13Z
2022-08-08T19:13:13Z
3,589
faif/python-patterns
33,482
docs: add basic intro to certbot in user guide
diff --git a/certbot/docs/using.rst b/certbot/docs/using.rst index 8c1a0ac548e..5f24aade0ea 100644 --- a/certbot/docs/using.rst +++ b/certbot/docs/using.rst @@ -21,25 +21,40 @@ The ``certbot`` script on your web server might be named ``letsencrypt`` if your Getting certificates (and choosing plugins) ================...
In the "Getting certificates (and choosing plugins)" section. --- Fixes #8179. ![image](https://user-images.githubusercontent.com/311534/128671558-3d326e58-0bde-4ccd-9d26-663ce7ae71f2.png)
https://api.github.com/repos/certbot/certbot/pulls/8979
2021-08-09T07:19:41Z
2021-08-14T00:39:12Z
2021-08-14T00:39:12Z
2021-08-14T00:39:12Z
824
certbot/certbot
3,044
Fix `leading` Parameter Type In Docstring
diff --git a/rich/table.py b/rich/table.py index 5fc5ace0b..fe4054cf1 100644 --- a/rich/table.py +++ b/rich/table.py @@ -54,7 +54,7 @@ class Column: show_footer (bool, optional): Show a footer row. Defaults to False. show_edge (bool, optional): Draw a box around the outside of the table. Defaults to T...
## Type of changes - [ ] Bug fix - [ ] New feature - [x] Documentation / docstrings - [ ] Tests - [ ] Other ## Checklist - [ ] 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. - [ ] I've added t...
https://api.github.com/repos/Textualize/rich/pulls/3276
2024-02-08T13:04:32Z
2024-02-29T14:02:23Z
2024-02-29T14:02:23Z
2024-02-29T14:02:23Z
454
Textualize/rich
48,019
Fix comment stating incorrect assigned variable
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index b9da55b5e..87472c593 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -10374,7 +10374,7 @@ Reuse of a member name as a local variable can also be a problem: if (x) { int m = 9; // ... - m = 99; //...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/1342
2019-02-23T16:14:08Z
2019-02-26T22:27:49Z
2019-02-26T22:27:49Z
2019-03-09T00:23:32Z
130
isocpp/CppCoreGuidelines
15,305
cabana: fix MacOS build
diff --git a/tools/cabana/mainwin.cc b/tools/cabana/mainwin.cc index 922ea7a9e26813..9b52b6823d1ed7 100644 --- a/tools/cabana/mainwin.cc +++ b/tools/cabana/mainwin.cc @@ -497,8 +497,8 @@ void MainWindow::updateLoadSaveMenus() { } QStringList title; - for (auto &[filename, sources] : dbc_files) { - QString b...
Add missing include and fix shadowed variable
https://api.github.com/repos/commaai/openpilot/pulls/27950
2023-04-18T08:23:22Z
2023-04-18T19:18:34Z
2023-04-18T19:18:34Z
2023-04-18T19:18:34Z
304
commaai/openpilot
9,864
Fix README typo
diff --git a/README.rst b/README.rst index fe66f8af2f9..72188608b00 100644 --- a/README.rst +++ b/README.rst @@ -39,4 +39,4 @@ Current Features .. Do not modify this comment unless you know what you're doing. tag:features-end -For extensive documentation on using and contributing to Certbot, go to https://certbot....
https://api.github.com/repos/certbot/certbot/pulls/3354
2016-07-30T01:56:27Z
2016-07-30T02:10:57Z
2016-07-30T02:10:57Z
2016-10-06T01:21:41Z
205
certbot/certbot
2,945
Fix minor markup issues
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 209060b76..06c16fcfd 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5965,6 +5965,7 @@ Here, we ignore such cases. * [R.15: Always overload matched allocation/deallocation pairs](#Rr-pair) * <a name="Rr-summary-smartptrs"></a> Smart p...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/264
2015-10-02T16:09:31Z
2015-10-02T16:10:45Z
2015-10-02T16:10:45Z
2015-10-05T06:49:59Z
809
isocpp/CppCoreGuidelines
15,636
New Provider 'Bestim'
diff --git a/g4f/Provider/Bestim.py b/g4f/Provider/Bestim.py new file mode 100644 index 0000000000..312655b8a7 --- /dev/null +++ b/g4f/Provider/Bestim.py @@ -0,0 +1,78 @@ +from __future__ import annotations + +from ..typing import Messages, List, Dict +from .base_provider import BaseProvider, C...
New BaseProvider 'Bestim' from [this comment](https://github.com/xtekky/gpt4free/issues/802#issuecomment-1873032520)
https://api.github.com/repos/xtekky/gpt4free/pulls/1416
2024-01-01T14:34:39Z
2024-01-02T01:42:21Z
2024-01-02T01:42:21Z
2024-01-02T01:42:33Z
1,023
xtekky/gpt4free
38,059
Removed comment on why basecamp was ever added
diff --git a/removed_sites.md b/removed_sites.md index 233d09847..1af7a3f46 100644 --- a/removed_sites.md +++ b/removed_sites.md @@ -123,7 +123,6 @@ This can be detected, but it requires a different detection method. As of 2020-02-23, all usernames are reported as not existing. -Why was this ever added? It doe...
Removed comment on remove_sites.md about Basecamp
https://api.github.com/repos/sherlock-project/sherlock/pulls/740
2020-08-30T01:30:24Z
2020-08-30T18:52:47Z
2020-08-30T18:52:47Z
2020-08-30T18:52:47Z
116
sherlock-project/sherlock
36,203
Fixed #21141 -- Update Sphinx URL
diff --git a/docs/README b/docs/README index 05133d8917b4d..5001eef57e06d 100644 --- a/docs/README +++ b/docs/README @@ -14,4 +14,4 @@ To create an HTML version of the docs: The documentation in _build/html/index.html can then be viewed in a web browser. [1] http://docutils.sourceforge.net/rst.html -[2] http://sphi...
Updated Sphinx URL from http://sphinx.pocoo.org/ to http://sphinx-doc.org/.
https://api.github.com/repos/django/django/pulls/1658
2013-09-22T17:37:19Z
2013-09-22T17:54:36Z
2013-09-22T17:54:36Z
2014-06-13T00:29:21Z
960
django/django
50,693
fix(binanceWs): fetchOpenOrdersWs symbol requirement removal
diff --git a/ts/src/pro/binance.ts b/ts/src/pro/binance.ts index 309a69b64fb2..c64e8ceab047 100644 --- a/ts/src/pro/binance.ts +++ b/ts/src/pro/binance.ts @@ -1833,7 +1833,6 @@ export default class binance extends binanceRest { * @param {object} [params] extra parameters specific to the binance api endpoint ...
- fixes https://github.com/ccxt/ccxt/issues/18705 DEMO ``` p binance fetchOpenOrdersWs --sandbox Python v3.10.9 CCXT v4.0.43 binance.fetchOpenOrdersWs() [{'amount': 0.002, 'average': None, 'clientOrderId': 'x-R4BD3S82d59a66489401748191cf4c', 'cost': 0.0, 'datetime': '2023-07-27T10:47:12.481Z', ...
https://api.github.com/repos/ccxt/ccxt/pulls/18706
2023-07-30T13:25:33Z
2023-07-30T13:26:58Z
2023-07-30T13:26:58Z
2023-07-30T13:26:58Z
312
ccxt/ccxt
13,221
Remove unused httpbin parameters
diff --git a/tests/test_requests.py b/tests/test_requests.py index 1b05333290..dea411bfec 100644 --- a/tests/test_requests.py +++ b/tests/test_requests.py @@ -1400,7 +1400,7 @@ def test_transport_adapter_ordering(self): assert 'http://' in s2.adapters assert 'https://' in s2.adapters - def test_s...
httpbin is used to mock HTTP endpoints. In these methods, the parameter goes unused.
https://api.github.com/repos/psf/requests/pulls/4712
2018-06-26T18:32:35Z
2018-07-18T02:39:19Z
2018-07-18T02:39:19Z
2021-09-02T00:07:39Z
573
psf/requests
32,978
Fixed #34687 -- Made Apps.clear_cache() clear get_swappable_settings_name() cache.
diff --git a/AUTHORS b/AUTHORS index 2148c64322a45..40df3589c024d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -747,6 +747,7 @@ answer newbie questions, and generally made Django that much better: Nicolas Lara <nicolaslara@gmail.com> Nicolas Noé <nicolas@niconoe.eu> Nikita Marchant <nikita.marchant@gmail.com> +...
When `django.apps.apps.clear_cache()` is called, we now also clean the cache of `@functools.cache` of `get_swappable_settings_name` method. Original issue https://code.djangoproject.com/ticket/34687 Refs https://github.com/typeddjango/django-stubs/pull/1601
https://api.github.com/repos/django/django/pulls/17029
2023-06-29T13:18:26Z
2023-06-30T07:57:43Z
2023-06-30T07:57:43Z
2023-06-30T07:57:43Z
507
django/django
51,007
Update Meater codeowners
diff --git a/CODEOWNERS b/CODEOWNERS index 1b9c9bfa69d85e..424cd0d6b99835 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -588,8 +588,8 @@ build.json @home-assistant/supervisor /homeassistant/components/matrix/ @tinloaf /homeassistant/components/mazda/ @bdr99 /tests/components/mazda/ @bdr99 -/homeassistant/components/me...
<!-- 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/69915
2022-04-12T12:49:52Z
2022-04-12T12:54:01Z
2022-04-12T12:54:01Z
2022-04-13T13:13:54Z
358
home-assistant/core
39,492
fix typos
diff --git a/benchmark/RESULTS.md b/benchmark/RESULTS.md index 200cfc2835..5e39d2e2e9 100644 --- a/benchmark/RESULTS.md +++ b/benchmark/RESULTS.md @@ -66,7 +66,7 @@ Uncaught ReferenceError: module is not defined - failure mode: placeholder text -url_shortner starts but gets the error: +url_shortener starts but get...
https://api.github.com/repos/gpt-engineer-org/gpt-engineer/pulls/359
2023-06-23T10:18:14Z
2023-06-23T12:24:41Z
2023-06-23T12:24:41Z
2023-06-23T12:30:22Z
341
gpt-engineer-org/gpt-engineer
33,252
Fix get top billionaires BROKEN file
diff --git a/DIRECTORY.md b/DIRECTORY.md index 8d1567465fbc..bcac340f3ce2 100644 --- a/DIRECTORY.md +++ b/DIRECTORY.md @@ -1220,6 +1220,7 @@ * [Get Amazon Product Data](web_programming/get_amazon_product_data.py) * [Get Imdb Top 250 Movies Csv](web_programming/get_imdb_top_250_movies_csv.py) * [Get Imdbtop](we...
### Describe your change: Fixes a `get_top_billionaires` and unmarks it as disabled * [ ] Add an algorithm? * [x] Fix a bug or typo in an existing algorithm? * [ ] Documentation change? ### Checklist: * [x] I have read [CONTRIBUTING.md](https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md). * ...
https://api.github.com/repos/TheAlgorithms/Python/pulls/8970
2023-08-16T15:43:31Z
2023-08-18T12:13:38Z
2023-08-18T12:13:38Z
2023-08-18T12:17:13Z
654
TheAlgorithms/Python
29,550
update:pypi verison
diff --git a/setup.py b/setup.py index 433e694d9..48b4c03d7 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def run(self): setup( name="metagpt", - version="0.6.11", + version="0.6.12", description="The Multi-Agent Framework", long_description=long_description, long_description_conte...
**Features** <!-- Clear and direct description of the submit features. --> <!-- If it's a bug fix, please also paste the issue link. --> - xx - yy **Feature Docs** <!-- The RFC, tutorial, or use cases about the feature if it's a pretty big update. If not, there is no need to fill. --> **Influence** <!...
https://api.github.com/repos/geekan/MetaGPT/pulls/1158
2024-04-03T03:28:08Z
2024-04-03T03:31:21Z
2024-04-03T03:31:21Z
2024-04-03T03:31:21Z
109
geekan/MetaGPT
16,673
Suppress `export.run()` `TracerWarning`
diff --git a/export.py b/export.py index 8666f3de63e..09c50baa415 100644 --- a/export.py +++ b/export.py @@ -16,6 +16,10 @@ TensorFlow Edge TPU | `edgetpu` | yolov5s_edgetpu.tflite TensorFlow.js | `tfjs` | yolov5s_web_model/ +Requirements: + $ pip ...
Suppresses warnings when calling export.run() directly, not just CLI python export.py. Also adds Requirements examples for CPU and GPU backends ## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Improved model export functionality with updated ...
https://api.github.com/repos/ultralytics/yolov5/pulls/6499
2022-02-01T22:07:04Z
2022-02-01T22:52:51Z
2022-02-01T22:52:51Z
2024-01-19T13:07:57Z
428
ultralytics/yolov5
24,879
Assorted docs updates
diff --git a/docs/_templates/sidebarintro.html b/docs/_templates/sidebarintro.html index 9d07a5ca78..d2ffff0d20 100644 --- a/docs/_templates/sidebarintro.html +++ b/docs/_templates/sidebarintro.html @@ -11,8 +11,7 @@ <p> Requests is an elegant and simple HTTP library for Python, built for - human beings. You are...
This should resolve #1390, #1399 and #1383. ``` DOCUMENT ,, ';; '' ____ || ; \ || \,---'-,-, || / ( o) || (o )__,--'-' \ || ,,,, ;'uuuuu...
https://api.github.com/repos/psf/requests/pulls/1413
2013-06-08T10:12:16Z
2013-06-08T10:13:14Z
2013-06-08T10:13:14Z
2021-09-08T20:01:26Z
499
psf/requests
32,212
Glenn space compatibility
diff --git a/gym/core.py b/gym/core.py index 5bbb1250f48..450439f33b9 100644 --- a/gym/core.py +++ b/gym/core.py @@ -189,10 +189,6 @@ def compatible(self, space): Return boolean specifying if space is compatible with this Space (equal shape structure, ignoring bounds). None matches any Space. ...
https://api.github.com/repos/openai/gym/pulls/872
2018-02-08T21:04:06Z
2018-02-08T21:09:29Z
2018-02-08T21:09:29Z
2018-02-08T21:09:29Z
135
openai/gym
5,643
Delete unfinished/writesonic directory
diff --git a/unfinished/writesonic/README.md b/unfinished/writesonic/README.md deleted file mode 100644 index a658a87c62..0000000000 --- a/unfinished/writesonic/README.md +++ /dev/null @@ -1,53 +0,0 @@ -### Example: `writesonic` (use like openai pypi package) <a name="example-writesonic"></a> - -```python -# import wri...
help deleting directory -> I am helping delete the directory of writesonic as per the takedown request.
https://api.github.com/repos/xtekky/gpt4free/pulls/292
2023-04-29T21:51:24Z
2023-04-30T11:20:31Z
2023-04-30T11:20:31Z
2023-04-30T11:20:31Z
2,320
xtekky/gpt4free
37,984
add test for rstrip_end() in Text class
diff --git a/tests/test_text.py b/tests/test_text.py index 432bc4a91..9419b2fbf 100644 --- a/tests/test_text.py +++ b/tests/test_text.py @@ -106,6 +106,12 @@ def test_rstrip(): assert str(test) == "Hello, World!" +def test_rstrip_end(): + test = Text("Hello, World! ") + test.rstrip_end(14) + assert...
## Type of changes - [ ] Bug fix - [ ] New feature - [ ] Documentation / docstrings - [x] Tests - [ ] Other ## Checklist - [x] I've run the latest [black](https://github.com/ambv/black) with default args on new code. - [ ] I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate. - [ ] I've added ...
https://api.github.com/repos/Textualize/rich/pulls/160
2020-07-15T08:54:33Z
2020-07-15T10:40:40Z
2020-07-15T10:40:40Z
2020-07-15T10:40:40Z
145
Textualize/rich
48,239
Adding tests for refactored CLI
diff --git a/gpt_engineer/__init__.py b/gpt_engineer/__init__.py index e69de29bb2..a427f9fc49 100644 --- a/gpt_engineer/__init__.py +++ b/gpt_engineer/__init__.py @@ -0,0 +1,8 @@ +# Adding convenience imports to the package +from gpt_engineer.core import ( + ai, + domain, + chat_to_files, + steps, + db, ...
Given the bug surfaced and resolved with PR #778, added tests to cover this and related cases in the future. Created 3 tests (and cleanup utility function) in test_install.py: * Test that the package can be installed (locally) using `pip` * This is done in a virtual environment * The virtual environment persi...
https://api.github.com/repos/gpt-engineer-org/gpt-engineer/pulls/779
2023-10-10T01:57:32Z
2023-10-10T09:27:22Z
2023-10-10T09:27:22Z
2023-10-10T16:27:29Z
1,035
gpt-engineer-org/gpt-engineer
33,132