title
stringlengths
2
169
diff
stringlengths
235
19.5k
body
stringlengths
0
30.5k
url
stringlengths
48
84
created_at
stringlengths
20
20
closed_at
stringlengths
20
20
merged_at
stringlengths
20
20
updated_at
stringlengths
20
20
diff_len
float64
101
3.99k
repo_name
stringclasses
83 values
__index_level_0__
int64
15
52.7k
Add "Clozemaster" support
diff --git a/data.json b/data.json index 68d8822c1..20394b8ca 100644 --- a/data.json +++ b/data.json @@ -354,6 +354,14 @@ "username_claimed": "blue", "username_unclaimed": "noonewouldeverusethis" }, + "Clozemaster": { + "errorType": "status_code", + "rank": 105275 , + "url": "https://www.cl...
https://api.github.com/repos/sherlock-project/sherlock/pulls/514
2020-01-11T15:50:13Z
2020-01-12T14:19:50Z
2020-01-12T14:19:50Z
2020-01-12T14:19:50Z
193
sherlock-project/sherlock
36,673
gh-94673: Fix _PyTypes_InitTypes() and get_type_attr_as_size()
diff --git a/Objects/object.c b/Objects/object.c index cd610297aacba0..4ce10cf1192d3f 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -2102,10 +2102,6 @@ static PyTypeObject* static_types[] = { PyStatus _PyTypes_InitTypes(PyInterpreterState *interp) { - if (!_Py_IsMainInterpreter(interp)) { - retur...
This change has two small parts: 1. a follow-up to gh-103940 with one case I missed 2. adding a missing return that I noticed while working on related code <!-- gh-issue-number: gh-94673 --> * Issue: gh-94673 <!-- /gh-issue-number -->
https://api.github.com/repos/python/cpython/pulls/103961
2023-04-27T23:56:14Z
2023-04-28T00:28:51Z
2023-04-28T00:28:51Z
2023-04-28T00:28:55Z
284
python/cpython
4,709
Fixed Load Image preview not displaying some files (issue #1158)
diff --git a/web/scripts/widgets.js b/web/scripts/widgets.js index 45ac9b8962..9755776312 100644 --- a/web/scripts/widgets.js +++ b/web/scripts/widgets.js @@ -335,7 +335,7 @@ export const ComfyWidgets = { subfolder = name.substring(0, folder_separator); name = name.substring(folder_separator + 1); } - i...
Fixed issue #1158.
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/1455
2023-09-08T09:00:23Z
2023-09-08T15:50:04Z
2023-09-08T15:50:04Z
2023-09-08T16:06:34Z
164
comfyanonymous/ComfyUI
17,991
rename class autoShape -> AutoShape
diff --git a/models/common.py b/models/common.py index 9764d4c3a6c..689aa0f3ed7 100644 --- a/models/common.py +++ b/models/common.py @@ -223,18 +223,18 @@ def forward(self, x): return non_max_suppression(x[0], conf_thres=self.conf, iou_thres=self.iou, classes=self.classes) -class autoShape(nn.Module): +cla...
follow other classes' naming convention ## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Improved naming convention in YOLOv5 codebase. ### 📊 Key Changes - Renamed `autoShape` class to `AutoShape` for consistency in class naming. - Updated con...
https://api.github.com/repos/ultralytics/yolov5/pulls/3173
2021-05-15T13:13:08Z
2021-05-16T13:46:46Z
2021-05-16T13:46:46Z
2024-01-19T18:19:33Z
482
ultralytics/yolov5
25,463
Fix Multi-GPU not working on exllama_hf
diff --git a/modules/exllama_hf.py b/modules/exllama_hf.py index 27cac374ad..64de7a5ff4 100644 --- a/modules/exllama_hf.py +++ b/modules/exllama_hf.py @@ -38,7 +38,6 @@ def prepare_inputs_for_generation(self, input_ids, **kwargs): @property def device(self) -> torch.device: - # TODO: May cause proble...
After https://github.com/oobabooga/text-generation-webui/pull/2777, new exllama_hf doesn't support gpu_split, since it wasn't added in the code. It would try to load all on the GPU0, and then get: ``` Traceback (most recent call last): File "F:\ChatIAs\oobabooga\text-generation-webui\server.py", line 62, in ...
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/2803
2023-06-21T20:30:27Z
2023-06-22T19:05:25Z
2023-06-22T19:05:25Z
2023-06-23T14:57:46Z
486
oobabooga/text-generation-webui
26,203
simplify prompt
diff --git a/rich/console.py b/rich/console.py index d9564abed..1fa66e4ee 100644 --- a/rich/console.py +++ b/rich/console.py @@ -1995,23 +1995,15 @@ def input( Returns: str: Text read from stdin. """ - prompt_str = "" if prompt: - with self.capture() as capture:...
Fixes broken prompt on Windows. Removes a workaround for colorama.
https://api.github.com/repos/Textualize/rich/pulls/2044
2022-03-10T10:39:12Z
2022-03-10T10:39:40Z
2022-03-10T10:39:40Z
2022-03-10T10:39:41Z
267
Textualize/rich
48,529
DOC: remove reference to get_value (removed) in DataFrame.lookup docstring
diff --git a/doc/source/user_guide/indexing.rst b/doc/source/user_guide/indexing.rst index cf55ce0c9a6d4..0229331127441 100644 --- a/doc/source/user_guide/indexing.rst +++ b/doc/source/user_guide/indexing.rst @@ -374,7 +374,7 @@ For getting values with a boolean array: df1.loc['a'] > 0 df1.loc[:, df1.loc['a'] >...
DataFrame.get_value was removed. (now we should maybe also consider deprecating `lookup`, but that is another issue)
https://api.github.com/repos/pandas-dev/pandas/pulls/29925
2019-11-29T09:20:58Z
2019-11-29T17:31:42Z
2019-11-29T17:31:42Z
2019-12-01T18:53:07Z
279
pandas-dev/pandas
45,762
Added einops
diff --git a/README.md b/README.md index 41db0144..714d98ad 100644 --- a/README.md +++ b/README.md @@ -1093,6 +1093,7 @@ be * [Couler](https://github.com/couler-proj/couler) - Unified interface for constructing and managing machine learning workflows on different workflow engines, such as Argo Workflows, Tekton Pipeli...
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/887
2022-10-04T18:55:16Z
2022-10-06T14:07:18Z
2022-10-06T14:07:18Z
2022-10-06T14:07:18Z
473
josephmisiti/awesome-machine-learning
52,305
Add system design template link
diff --git a/README.md b/README.md index f9563097aa..387902594a 100644 --- a/README.md +++ b/README.md @@ -280,6 +280,7 @@ Check out the following links to get a better idea of what to expect: * [How to ace a systems design interview](https://www.palantir.com/2011/10/how-to-rock-a-systems-design-interview/) * [The sy...
https://api.github.com/repos/donnemartin/system-design-primer/pulls/433
2020-06-30T19:55:56Z
2020-07-05T14:53:29Z
2020-07-05T14:53:29Z
2020-07-05T17:48:45Z
179
donnemartin/system-design-primer
36,800
FIX raise an error in CountVectorizer with a custom token pattern that captures several group
diff --git a/doc/whats_new/v0.24.rst b/doc/whats_new/v0.24.rst index 9db5535415af5..15fc5ddfa5331 100644 --- a/doc/whats_new/v0.24.rst +++ b/doc/whats_new/v0.24.rst @@ -252,6 +252,11 @@ Changelog values for one categorical feature. :pr:`17367` by :user:`Peng Yu <yupbank>` and :user:`Chiara Marmo <cmarmo>`. +- |...
<!-- 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/15427
2019-11-01T02:35:22Z
2020-10-21T10:43:46Z
2020-10-21T10:43:46Z
2020-10-21T10:43:46Z
1,348
scikit-learn/scikit-learn
46,258
improve: allows connect primitive node to reroute if primitive node has type
diff --git a/web/extensions/core/widgetInputs.js b/web/extensions/core/widgetInputs.js index 4fe0a60135..8955fca878 100644 --- a/web/extensions/core/widgetInputs.js +++ b/web/extensions/core/widgetInputs.js @@ -240,6 +240,7 @@ app.registerExtension({ // No widget, we cant connect if (!input.widget) { + ...
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/751
2023-06-08T08:10:10Z
2023-06-09T06:21:31Z
2023-06-09T06:21:31Z
2023-06-25T00:27:59Z
129
comfyanonymous/ComfyUI
17,877
Remove hard coded max_items in history API
diff --git a/web/scripts/api.js b/web/scripts/api.js index de56b23108..9aa7528af0 100644 --- a/web/scripts/api.js +++ b/web/scripts/api.js @@ -254,9 +254,9 @@ class ComfyApi extends EventTarget { * Gets the prompt execution history * @returns Prompt history including node outputs */ - async getHistory() { + as...
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/2063
2023-11-26T13:23:31Z
2023-11-27T17:09:19Z
2023-11-27T17:09:19Z
2023-11-27T17:09:19Z
163
comfyanonymous/ComfyUI
18,044
Don't bubble when metadata_button is clicked
diff --git a/javascript/extraNetworks.js b/javascript/extraNetworks.js index 40818bb4970..742a3c2dbd7 100644 --- a/javascript/extraNetworks.js +++ b/javascript/extraNetworks.js @@ -132,12 +132,14 @@ function popup(contents){ globalPopup.style.display = "flex"; } -function extraNetworksShowMetadata(text){ +f...
Currently, clicking an extra network's metadata button also triggers the card's own onclick handler. This prevents that. **Environment this was tested in** - OS: Windows 10 - Browser: Edge 111.0.1661.44
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/8749
2023-03-20T01:38:20Z
2023-03-25T09:09:05Z
2023-03-25T09:09:05Z
2023-03-25T20:31:05Z
362
AUTOMATIC1111/stable-diffusion-webui
40,452
Optionally sign initial SOA query
diff --git a/AUTHORS.md b/AUTHORS.md index 21bfaa3eb50..bef1f452983 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -227,6 +227,7 @@ Authors * [Rémy HUBSCHER](https://github.com/Natim) * [Rémy Léone](https://github.com/sieben) * [Richard Barnes](https://github.com/r-barnes) +* [Richard Harman](https://github.com/warewol...
Initially implemented (but non-configurable) in #9408 , raised as a regression by @benweeks2 in #9671 . This adds an optional configuration parameter to enable signing of the initial SOA query when determining the authoritative nameserver for the zone. Default is disabled. Documentation has also been updated. Add...
https://api.github.com/repos/certbot/certbot/pulls/9672
2023-04-15T15:57:17Z
2023-04-25T01:25:58Z
2023-04-25T01:25:58Z
2023-04-26T11:40:40Z
1,843
certbot/certbot
813
Fixed #33515 -- Prevented recreation of migration for ManyToManyField to lowercased swappable setting.
diff --git a/django/db/models/fields/related.py b/django/db/models/fields/related.py index 18c6c4e607413..ca4f4368b6d1d 100644 --- a/django/db/models/fields/related.py +++ b/django/db/models/fields/related.py @@ -1728,11 +1728,15 @@ def deconstruct(self): kwargs["db_table"] = self.db_table if self...
ticket-33515 Thanks Chris Lee for the report. Regression in 43289707809c814a70f0db38ca4f82f35f43dbfd. Refs ticket-23916.
https://api.github.com/repos/django/django/pulls/15433
2022-02-16T08:41:00Z
2022-02-16T20:09:24Z
2022-02-16T20:09:24Z
2022-02-16T20:09:45Z
1,801
django/django
50,710
Bump ipywidgets from 7.5.1 to 7.6.2
diff --git a/poetry.lock b/poetry.lock index ce44f85f9..e0c6969c9 100644 --- a/poetry.lock +++ b/poetry.lock @@ -232,7 +232,7 @@ python-versions = "*" [[package]] name = "ipywidgets" -version = "7.5.1" +version = "7.6.2" description = "IPython HTML widgets for Jupyter" category = "main" optional = true @@ -241,6...
Bumps [ipywidgets](http://ipython.org) from 7.5.1 to 7.6.2. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ipywidgets&package-manager=pip&previous-version=7.5.1&new-version=7.6.2)](https://docs.github.com/en/github/managing-security-vulnerabilitie...
https://api.github.com/repos/Textualize/rich/pulls/857
2020-12-28T06:45:57Z
2020-12-28T16:42:35Z
2020-12-28T16:42:35Z
2020-12-28T16:42:38Z
1,216
Textualize/rich
48,634
Fix the path of mtsamples.csv
diff --git a/openassistant/datasets/mt_note_generation/prepare.py b/openassistant/datasets/mt_note_generation/prepare.py index 7f0a914661..ff5fcdc5a1 100644 --- a/openassistant/datasets/mt_note_generation/prepare.py +++ b/openassistant/datasets/mt_note_generation/prepare.py @@ -63,7 +63,7 @@ def main(output_dir: str = ...
minor fix of path
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/1691
2023-02-17T22:12:31Z
2023-02-23T09:03:54Z
2023-02-23T09:03:54Z
2023-02-23T09:03:55Z
202
LAION-AI/Open-Assistant
37,244
st.echo: improved readability
diff --git a/lib/streamlit/__init__.py b/lib/streamlit/__init__.py index cd925b6762bf..2b8452d53579 100644 --- a/lib/streamlit/__init__.py +++ b/lib/streamlit/__init__.py @@ -52,7 +52,6 @@ # Give the package a version. import pkg_resources as _pkg_resources -from typing import List from typing import NoReturn #...
Some drive-by cleanup on st.echo as I was investigating a related issue - Pulls `st.echo` out of `__init__.py` and into `echo.py` - `st.echo()` gets more inline comments explaining what the code is doing - `EchoTest.test_echo` is parameterized
https://api.github.com/repos/streamlit/streamlit/pulls/4169
2021-12-13T21:29:24Z
2021-12-13T21:50:41Z
2021-12-13T21:50:41Z
2021-12-13T21:50:45Z
2,448
streamlit/streamlit
21,912
update cpu related doc
diff --git a/docs/source/en/perf_train_cpu.mdx b/docs/source/en/perf_train_cpu.mdx index 7a12ab160522a..c35a62fcdcefd 100644 --- a/docs/source/en/perf_train_cpu.mdx +++ b/docs/source/en/perf_train_cpu.mdx @@ -25,22 +25,15 @@ Check more detailed information for [Auto Mixed Precision](https://intel.github. IPEX releas...
https://api.github.com/repos/huggingface/transformers/pulls/20444
2022-11-25T05:30:06Z
2022-11-28T13:54:36Z
2022-11-28T13:54:36Z
2022-11-28T13:57:31Z
1,326
huggingface/transformers
12,227
Move dg_stack into delta_generator.py and ensure it's never empty
diff --git a/lib/streamlit/__init__.py b/lib/streamlit/__init__.py index 49791c066473..4c53855f54fe 100644 --- a/lib/streamlit/__init__.py +++ b/lib/streamlit/__init__.py @@ -66,8 +66,12 @@ # Give the package a version. __version__ = _STREAMLIT_VERSION_STRING -from streamlit.delta_generator import DeltaGenerator as...
This work started out as an attempt to fix some bugs that currently exist in `feature/st.experimental_fragment`, but we may want to merge it directly into `develop` as it potentially improves how understandable some of our `DeltaGenerator`-related code is. Currently, `dg_stack` is a bit weird in that the way that ...
https://api.github.com/repos/streamlit/streamlit/pulls/8241
2024-03-06T00:34:57Z
2024-03-06T22:03:43Z
2024-03-06T22:03:43Z
2024-03-06T22:03:48Z
1,355
streamlit/streamlit
22,251
Bump exllama module version
diff --git a/requirements.txt b/requirements.txt index e5530242b7..229ba16946 100644 --- a/requirements.txt +++ b/requirements.txt @@ -24,5 +24,5 @@ llama-cpp-python==0.1.69; platform_system != "Windows" https://github.com/abetlen/llama-cpp-python/releases/download/v0.1.69/llama_cpp_python-0.1.69-cp310-cp310-win_amd64...
https://github.com/turboderp/exllama/compare/d769533b6fe938d5533ffd3673e4751e5afa5a09...e61d4d31d44bd4dd3380fc773509c870ba74cb9f
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/3087
2023-07-10T20:00:11Z
2023-07-10T22:35:59Z
2023-07-10T22:35:59Z
2023-07-20T20:56:48Z
458
oobabooga/text-generation-webui
26,559
Autoformat for json-rpc calls
diff --git a/mitmproxy/contentviews/json.py b/mitmproxy/contentviews/json.py index e045bbb07f..15c624add0 100644 --- a/mitmproxy/contentviews/json.py +++ b/mitmproxy/contentviews/json.py @@ -17,6 +17,7 @@ class ViewJSON(base.View): name = "JSON" content_types = [ "application/json", + "applica...
For json-rpc responses the program won't recognise the response as JSON. I have added the missing line to make it happen. > https://www.jsonrpc.org/historical/json-rpc-over-http.html#http-header > Content-Type SHOULD be 'application/json-rpc'
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/3293
2018-08-13T11:23:51Z
2018-08-13T11:24:50Z
2018-08-13T11:24:50Z
2018-08-13T11:24:51Z
108
mitmproxy/mitmproxy
27,939
Fix off-by-one error.
diff --git a/requests/sessions.py b/requests/sessions.py index b970e0de95..3a517f0800 100644 --- a/requests/sessions.py +++ b/requests/sessions.py @@ -76,7 +76,7 @@ def resolve_redirects(self, resp, req, stream=False, timeout=None, verify=True, resp.content # Consume socket so it can be released - ...
Silly, small change, but may as well fix it. The logic as it stands would do max_redirects + 1 redirects. Which is odd.
https://api.github.com/repos/psf/requests/pulls/1020
2012-12-17T18:43:59Z
2012-12-17T18:46:09Z
2012-12-17T18:46:09Z
2021-09-08T18:01:09Z
145
psf/requests
32,545
NcursesDisplay.menu: treat ESC as cancel
diff --git a/certbot/display/util.py b/certbot/display/util.py index b4004997f60..39486b2bde9 100644 --- a/certbot/display/util.py +++ b/certbot/display/util.py @@ -1,4 +1,5 @@ """Certbot display.""" +import logging import os import textwrap @@ -9,6 +10,9 @@ from certbot import errors from certbot.display import...
Currently it will fire a weird traceback like: ``` File "/home/ubuntu/letsencrypt/letsencrypt/plugins/selection.py", line 113, in choose_plugin code, index = disp.menu(question, opts, help_label="More Info") File "/home/ubuntu/letsencrypt/letsencrypt/display/util.py", line 129, in menu return code, int(index) ...
https://api.github.com/repos/certbot/certbot/pulls/2767
2016-04-05T18:37:09Z
2016-07-06T22:12:37Z
2016-07-06T22:12:37Z
2016-10-06T01:21:35Z
1,748
certbot/certbot
3,203
Improve comments in test_idle.py.
diff --git a/Lib/test/test_idle.py b/Lib/test/test_idle.py index 31fffd94a08f2b..8bc01deaa33841 100644 --- a/Lib/test/test_idle.py +++ b/Lib/test/test_idle.py @@ -1,18 +1,20 @@ import unittest from test.support import import_module -# Skip test if _tkinter wasn't built, if idlelib is missing, -# or if tcl/tk is not...
https://api.github.com/repos/python/cpython/pulls/7057
2018-05-22T17:03:49Z
2018-05-22T17:24:05Z
2018-05-22T17:24:05Z
2018-05-22T17:40:12Z
358
python/cpython
4,485
Add same transcription job name case
diff --git a/localstack/services/transcribe/provider.py b/localstack/services/transcribe/provider.py index 0ebbc3b817f01..3d679b50104f0 100644 --- a/localstack/services/transcribe/provider.py +++ b/localstack/services/transcribe/provider.py @@ -12,6 +12,7 @@ from localstack.aws.api import RequestContext, handler from...
Added fix and test case if transcription job name is same in `StartTranscriptionJob`
https://api.github.com/repos/localstack/localstack/pulls/8288
2023-05-09T18:07:33Z
2023-05-10T06:54:20Z
2023-05-10T06:54:20Z
2023-08-28T13:06:46Z
1,176
localstack/localstack
28,674
Fixed #23014 -- Infinite migration regression with unique/index_together
diff --git a/django/db/migrations/autodetector.py b/django/db/migrations/autodetector.py index 37824e169cf35..36f0f020b27ee 100644 --- a/django/db/migrations/autodetector.py +++ b/django/db/migrations/autodetector.py @@ -795,13 +795,13 @@ def _generate_altered_foo_together(self, operation): if old_model_st...
https://api.github.com/repos/django/django/pulls/2950
2014-07-24T17:44:37Z
2014-07-24T18:30:38Z
2014-07-24T18:30:38Z
2014-07-24T18:42:32Z
1,598
django/django
51,314
enable CI after PR sync
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a521551c4293..b0270c10cec8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: Build on: pull_request: - types: [review_requested] + types: [review_requested, synchronize] branches: ...
The previous CI is only triggered when reviewer is requested. Now it will be triggered when reviewer is requested and synchronization occurs.
https://api.github.com/repos/hpcaitech/ColossalAI/pulls/97
2021-12-30T08:09:52Z
2022-01-04T12:31:15Z
2022-01-04T12:31:15Z
2022-01-04T12:31:15Z
277
hpcaitech/ColossalAI
11,850
Fix/SportDeutschland extractor
diff --git a/yt_dlp/extractor/sportdeutschland.py b/yt_dlp/extractor/sportdeutschland.py index 75074b31007..6fc3ce9eb12 100644 --- a/yt_dlp/extractor/sportdeutschland.py +++ b/yt_dlp/extractor/sportdeutschland.py @@ -1,95 +1,110 @@ from .common import InfoExtractor + from ..utils import ( - clean_html, - float_...
**IMPORTANT**: PRs without the template will be CLOSED ### Description of your *pull request* and other information <!-- Explanation of your *pull request* in arbitrary form goes here. Please **make sure the description explains the purpose and effect** of your *pull request* and is worded well enough to be un...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/6041
2023-01-15T19:04:23Z
2023-02-17T07:44:27Z
2023-02-17T07:44:27Z
2023-03-04T14:20:09Z
2,221
yt-dlp/yt-dlp
8,011
New linear algebra algorithm
diff --git a/linear_algebra/src/python-polynom-for-points.py b/linear_algebra/src/python-polynom-for-points.py new file mode 100644 index 000000000000..c884416b6dad --- /dev/null +++ b/linear_algebra/src/python-polynom-for-points.py @@ -0,0 +1,130 @@ +def points_to_polynomial(coordinates): + """ + coordinates is ...
Hey, I added a new linear algebra algorithm which takes a number of x and y coordinates as input and then outputs a polynomial function that connects them. Thank you for taking a look at it.
https://api.github.com/repos/TheAlgorithms/Python/pulls/1122
2019-08-11T09:00:44Z
2019-08-12T07:13:58Z
2019-08-12T07:13:58Z
2019-08-12T07:13:58Z
1,587
TheAlgorithms/Python
30,342
Fix incorrect output on the genspider command
diff --git a/scrapy/commands/genspider.py b/scrapy/commands/genspider.py index 72248bdede4..5f44daa70d3 100644 --- a/scrapy/commands/genspider.py +++ b/scrapy/commands/genspider.py @@ -98,7 +98,7 @@ def _genspider(self, module, name, domain, template_name, template_file): print(f"Created spider {name!r} using ...
When running inside a project, the `genspider` command is outputting string placeholders rather than their actual contents. Example: ``` $ scrapy genspider example example.com Created spider 'example' using template 'basic' in module: {spiders_module.__name__}.{module} ``` This PR fixes it, by adding the ...
https://api.github.com/repos/scrapy/scrapy/pulls/4874
2020-11-08T22:50:39Z
2020-11-10T12:23:29Z
2020-11-10T12:23:29Z
2020-11-10T12:23:36Z
471
scrapy/scrapy
34,378
UnrecognizedChallenge (fixes #855).
diff --git a/acme/acme/challenges.py b/acme/acme/challenges.py index fbb2e741849..d81e77f83ab 100644 --- a/acme/acme/challenges.py +++ b/acme/acme/challenges.py @@ -25,6 +25,14 @@ class Challenge(jose.TypedJSONObjectWithFields): """ACME challenge.""" TYPES = {} + @classmethod + def from_json(cls, jobj...
Overrides quick fix from #856. cc: @bifurcation, @jdkasten, @bmw
https://api.github.com/repos/certbot/certbot/pulls/860
2015-09-29T07:04:19Z
2015-09-29T15:52:15Z
2015-09-29T15:52:15Z
2016-05-06T19:21:34Z
1,348
certbot/certbot
3,427
Update Active Directory Attack.md
diff --git a/Methodology and Resources/Active Directory Attack.md b/Methodology and Resources/Active Directory Attack.md index c62feae6e7..0de3723d23 100644 --- a/Methodology and Resources/Active Directory Attack.md +++ b/Methodology and Resources/Active Directory Attack.md @@ -2219,6 +2219,21 @@ secretsdump.py -k -n...
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/572
2022-10-12T17:47:49Z
2022-10-12T19:42:34Z
2022-10-12T19:42:34Z
2022-10-12T19:42:34Z
348
swisskyrepo/PayloadsAllTheThings
8,679
[3.9] Split-out a fourth section in the descriptor HowTo guide (GH-22965)
diff --git a/Doc/howto/descriptor.rst b/Doc/howto/descriptor.rst index bed4078e3a3a9d..f1d1ab1d1d6101 100644 --- a/Doc/howto/descriptor.rst +++ b/Doc/howto/descriptor.rst @@ -13,7 +13,7 @@ Descriptor HowTo Guide :term:`Descriptors <descriptor>` let objects customize attribute lookup, storage, and deletion. -This Ho...
(cherry picked from commit e6a7ea4f2e0d6892ebd929235b1333f04b517eec) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
https://api.github.com/repos/python/cpython/pulls/22969
2020-10-25T14:13:02Z
2020-10-25T14:35:57Z
2020-10-25T14:35:57Z
2020-10-25T14:36:08Z
2,565
python/cpython
4,386
Fix DynamoDB local libs
diff --git a/bin/Dockerfile.base b/bin/Dockerfile.base index 70296b4f3109f..e8c93a5f46496 100644 --- a/bin/Dockerfile.base +++ b/bin/Dockerfile.base @@ -33,7 +33,7 @@ RUN apk add --no-cache nss # https://github.com/carlossg/docker-maven/blob/master/jdk-8/Dockerfile) ARG MAVEN_VERSION=3.6.2 ARG USER_HOME_DIR="/root" ...
* Fix DynamoDB local libs (currently breaking builds on `master`) * Minor update to dashboard - add deprecation notice * Small fix in CloudFormation update for Lambda function code
https://api.github.com/repos/localstack/localstack/pulls/1664
2019-10-20T13:56:27Z
2019-10-21T00:34:44Z
2019-10-21T00:34:44Z
2019-10-21T00:34:46Z
3,681
localstack/localstack
28,646
bump mistralai deps
diff --git a/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/pyproject.toml b/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/pyproject.toml index 8096d01f7a566..2045bfe0a1a09 100644 --- a/llama-index-integrations/embeddings/llama-index-embeddings-mistralai/pyproject.toml +++ b...
https://api.github.com/repos/run-llama/llama_index/pulls/11819
2024-03-11T14:26:38Z
2024-03-11T14:37:08Z
2024-03-11T14:37:08Z
2024-03-11T14:37:09Z
883
run-llama/llama_index
6,043
docs: redirect macOS users to different cron guide
diff --git a/certbot/docs/using.rst b/certbot/docs/using.rst index 561782e764a..bdb34399679 100644 --- a/certbot/docs/using.rst +++ b/certbot/docs/using.rst @@ -818,8 +818,13 @@ scheduled task to automatically renew your certificates in the background. If yo whether your system has a pre-installed scheduled task for C...
Due to macOS having some complications about Certbot from Homebrew being in the PATH, the instructions we have in the Automated Renewal section do not work for them. Instead, send those users to the instruction generator. ---- Fixes https://github.com/certbot/certbot/issues/8974. Don't merge until: - [x]...
https://api.github.com/repos/certbot/certbot/pulls/9013
2021-08-30T08:20:24Z
2021-09-03T14:49:26Z
2021-09-03T14:49:26Z
2021-09-03T14:49:26Z
252
certbot/certbot
3,028
Reduce ds_id name length
diff --git a/deepspeed/runtime/zero/stage3.py b/deepspeed/runtime/zero/stage3.py index 4132a4527d6a..03813afa4ed1 100644 --- a/deepspeed/runtime/zero/stage3.py +++ b/deepspeed/runtime/zero/stage3.py @@ -864,7 +864,9 @@ def _create_fp32_partitions(self): self.device).clone().float().detach()...
Fixing issue #5087 . Limited the naming of the ds_id in ZeRO 3 to the first and last parameters of the group instead of every parameter in the group.
https://api.github.com/repos/microsoft/DeepSpeed/pulls/5176
2024-02-23T04:57:48Z
2024-02-23T14:18:17Z
2024-02-23T14:18:17Z
2024-02-23T14:18:17Z
248
microsoft/DeepSpeed
10,834
Count the tokens/second when using --debug
diff --git a/fastchat/serve/inference.py b/fastchat/serve/inference.py index 489b379384..8c4572664a 100644 --- a/fastchat/serve/inference.py +++ b/fastchat/serve/inference.py @@ -4,6 +4,7 @@ import math from typing import Iterable, Optional import sys +import time import warnings import psutil @@ -307,8 +308,12 ...
## Why are these changes needed? We would like to count the tokens/second when debugging a served model on the cli. Result using `llama-7b`: <img width="1360" alt="image" src="https://github.com/lm-sys/FastChat/assets/49086305/65021ce9-75e7-43f3-b716-1e84ce46c075"> ## Related issue number (if applicable) Close...
https://api.github.com/repos/lm-sys/FastChat/pulls/1573
2023-06-01T20:42:57Z
2023-06-09T01:20:24Z
2023-06-09T01:20:24Z
2023-06-09T01:20:24Z
223
lm-sys/FastChat
41,391
feat(grouping): Enable secondary grouping with upgrade
diff --git a/src/sentry/api/endpoints/project_details.py b/src/sentry/api/endpoints/project_details.py index fb681a400801d..7326c93106699 100644 --- a/src/sentry/api/endpoints/project_details.py +++ b/src/sentry/api/endpoints/project_details.py @@ -260,11 +260,16 @@ def validate_secondaryGroupingExpiry(self, value): ...
When upgrading to a new grouping strategy, keep the old strategy alive as secondary grouping for 90 days in order to reduce the number of newly created groups. Fix https://getsentry.atlassian.net/browse/INGEST-216
https://api.github.com/repos/getsentry/sentry/pulls/27828
2021-07-29T12:18:22Z
2021-07-30T06:35:16Z
2021-07-30T06:35:16Z
2021-08-14T12:00:57Z
1,373
getsentry/sentry
44,496
[docs] Correcting SLURM options
diff --git a/doc/source/cluster/slurm.rst b/doc/source/cluster/slurm.rst index a9b6f6d99908e..cadc0ba85d692 100644 --- a/doc/source/cluster/slurm.rst +++ b/doc/source/cluster/slurm.rst @@ -52,13 +52,13 @@ You'll need to tell SLURM to allocate nodes specifically for Ray. Ray will then #SBATCH --nodes=4 #SBATCH --e...
there is only ``--ntasks-per-node`` per node option not ``--tasks-per-node`` in SLURM <!-- 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 y...
https://api.github.com/repos/ray-project/ray/pulls/20509
2021-11-17T22:40:33Z
2022-01-12T08:36:40Z
2022-01-12T08:36:40Z
2022-01-12T12:50:46Z
409
ray-project/ray
18,974
✏️ Fix typo in `docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md`
diff --git a/docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md b/docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md index 935555339a25e..ccef5aef4b27f 100644 --- a/docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md +++ b/docs/en/doc...
Added 'as' to the phrase 'These dependencies will be executed/solved the same way normal dependencies.'
https://api.github.com/repos/tiangolo/fastapi/pulls/10172
2023-08-30T10:29:17Z
2023-09-02T15:32:49Z
2023-09-02T15:32:48Z
2023-09-02T15:32:49Z
224
tiangolo/fastapi
22,703
Remove unused `time_sync` import
diff --git a/val.py b/val.py index 876fc5bf50b..7b4fab4c63b 100644 --- a/val.py +++ b/val.py @@ -42,7 +42,7 @@ scale_coords, xywh2xyxy, xyxy2xywh) from utils.metrics import ConfusionMatrix, ap_per_class, box_iou from utils.plots import output_to_target, plot_images, plot_val_study -from ut...
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/9026
2022-08-18T18:22:43Z
2022-08-18T18:26:18Z
2022-08-18T18:26:18Z
2024-01-19T07:12:27Z
151
ultralytics/yolov5
24,838
Added Problem 33
diff --git a/project_euler/problem_33/__init__.py b/project_euler/problem_33/__init__.py new file mode 100644 index 000000000000..8b137891791f --- /dev/null +++ b/project_euler/problem_33/__init__.py @@ -0,0 +1 @@ + diff --git a/project_euler/problem_33/sol1.py b/project_euler/problem_33/sol1.py new file mode 100644 in...
https://api.github.com/repos/TheAlgorithms/Python/pulls/1440
2019-10-24T15:48:08Z
2019-10-31T12:20:40Z
2019-10-31T12:20:40Z
2019-10-31T12:20:40Z
661
TheAlgorithms/Python
29,425
Remove int type on HTTPAdapter's max_retries argument doc
diff --git a/requests/adapters.py b/requests/adapters.py index 6266d5be30..4f2b23cf03 100644 --- a/requests/adapters.py +++ b/requests/adapters.py @@ -65,7 +65,7 @@ class HTTPAdapter(BaseAdapter): :param pool_connections: The number of urllib3 connection pools to cache. :param pool_maxsize: The maximum numb...
The argument description says `max_retries` can be an int, or a `urllib3.util.Retry` object. However, the type declared in the doc restricts it to int only. Passing a Retry object causes a warning in PyCharm code inspection. The behaviour described for `max_retries` is accurate: HTTPAdapter passes `max_retries` to `Re...
https://api.github.com/repos/psf/requests/pulls/2984
2016-01-29T23:41:23Z
2016-01-30T02:59:04Z
2016-01-30T02:59:04Z
2021-09-08T05:00:59Z
183
psf/requests
32,775
[extractor/twitter] fix #5565
diff --git a/yt_dlp/extractor/twitter.py b/yt_dlp/extractor/twitter.py index 3c81473dc8f..62b34d0813e 100644 --- a/yt_dlp/extractor/twitter.py +++ b/yt_dlp/extractor/twitter.py @@ -1167,7 +1167,8 @@ def _real_extract(self, url): # XXX: Native downloader does not work formats = self._extract_m3...
### Description of your *pull request* and other information </details> <!-- Explanation of your *pull request* in arbitrary form goes here. Please **make sure the description explains the purpose and effect** of your *pull request* and is worded well enough to be understood. Provide as much **context and ...
https://api.github.com/repos/yt-dlp/yt-dlp/pulls/5580
2022-11-17T22:43:06Z
2022-11-18T01:12:02Z
2022-11-18T01:12:02Z
2022-11-18T18:22:17Z
219
yt-dlp/yt-dlp
8,277
add test extras_require
diff --git a/metagpt/tools/web_browser_engine_selenium.py b/metagpt/tools/web_browser_engine_selenium.py index 8bc81f956..70b651935 100644 --- a/metagpt/tools/web_browser_engine_selenium.py +++ b/metagpt/tools/web_browser_engine_selenium.py @@ -14,6 +14,8 @@ from selenium.webdriver.common.by import By from selenium.w...
https://api.github.com/repos/geekan/MetaGPT/pulls/645
2023-12-28T10:47:19Z
2023-12-28T15:23:24Z
2023-12-28T15:23:24Z
2024-01-07T10:14:11Z
1,098
geekan/MetaGPT
16,739
Pytest ignore deprecation warnings
diff --git a/lib/pytest.ini b/lib/pytest.ini index 0fb3efde70fe..e7628ae41fa5 100644 --- a/lib/pytest.ini +++ b/lib/pytest.ini @@ -1,3 +1,8 @@ [pytest] markers = slow: marks tests as slow +filterwarnings = + # PyTest filter syntax cheatsheet -> action:message:category:module:line + ignore::UserWarning:alta...
<!-- 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/5060
2022-07-29T08:58:21Z
2022-08-11T15:56:35Z
2022-08-11T15:56:35Z
2023-10-05T19:28:02Z
1,017
streamlit/streamlit
22,280
Refs #29898 -- Moved django.db.migrations.operations.utils to django.db.migrations.utils.
diff --git a/django/db/migrations/operations/fields.py b/django/db/migrations/operations/fields.py index 728105ea05684..b303f704653c9 100644 --- a/django/db/migrations/operations/fields.py +++ b/django/db/migrations/operations/fields.py @@ -1,9 +1,11 @@ from django.core.exceptions import FieldDoesNotExist +from django...
https://api.github.com/repos/django/django/pulls/14551
2021-06-22T07:27:30Z
2021-06-22T07:57:23Z
2021-06-22T07:57:23Z
2021-06-22T08:59:22Z
1,819
django/django
50,825
Add argpars for environment in play.py
diff --git a/gym/utils/play.py b/gym/utils/play.py index 8587f6f8d5a..fa92d3be4f1 100644 --- a/gym/utils/play.py +++ b/gym/utils/play.py @@ -3,6 +3,7 @@ import sys import time import matplotlib +import argparse try: matplotlib.use('GTK3Agg') import matplotlib.pyplot as plt @@ -16,6 +17,10 @@ from pygame....
Add an Argpars --env for environment with default set to: MontezumaRevengeNoFrameskip-v4
https://api.github.com/repos/openai/gym/pulls/641
2017-07-05T02:11:00Z
2019-03-07T20:53:01Z
2019-03-07T20:53:01Z
2019-03-07T20:53:01Z
301
openai/gym
5,558
New model added
diff --git a/model_cards/Hate-speech-CNERG/dehatebert-mono-english/README.md b/model_cards/Hate-speech-CNERG/dehatebert-mono-english/README.md new file mode 100644 index 0000000000000..b96c834b86122 --- /dev/null +++ b/model_cards/Hate-speech-CNERG/dehatebert-mono-english/README.md @@ -0,0 +1,2 @@ +This model is used d...
The first model added to the repo
https://api.github.com/repos/huggingface/transformers/pulls/3862
2020-04-20T02:09:56Z
2020-04-20T21:10:02Z
2020-04-20T21:10:02Z
2020-04-20T21:36:42Z
217
huggingface/transformers
12,710
Added test case to knapsack.py
diff --git a/dynamic_programming/knapsack.py b/dynamic_programming/knapsack.py index a1e4f0d80daf..6c9789c972f2 100644 --- a/dynamic_programming/knapsack.py +++ b/dynamic_programming/knapsack.py @@ -12,3 +12,13 @@ def knapsack(W, wt, val, n): dp[i][w] = dp[i-1][w] return dp[n][w] +if __name__ ==...
Added a test case to knapsack.py
https://api.github.com/repos/TheAlgorithms/Python/pulls/330
2018-07-22T18:49:20Z
2018-07-22T22:07:27Z
2018-07-22T22:07:27Z
2018-07-22T22:07:27Z
193
TheAlgorithms/Python
29,934
Add IBGE API to Geocoding
diff --git a/README.md b/README.md index ce50e13eb4..236458e9a5 100644 --- a/README.md +++ b/README.md @@ -664,6 +664,7 @@ API | Description | Auth | HTTPS | CORS | | [HelloSalut](https://www.fourtonfish.com/hellosalut/hello/) | Get hello translation following user language | No | Yes | Unknown | | [HERE Maps](https:...
<!-- Thank you for taking the time to work on a Pull Request for this project! --> <!-- To ensure your PR is dealt with swiftly please check the following: --> - [x] My submission is formatted according to the guidelines in the [contributing guide](/CONTRIBUTING.md) - [x] My addition is ordered alphabetically - [x]...
https://api.github.com/repos/public-apis/public-apis/pulls/2109
2021-10-02T14:36:26Z
2021-10-05T06:40:08Z
2021-10-05T06:40:08Z
2021-10-05T06:40:08Z
288
public-apis/public-apis
35,906
Create patternprint
diff --git a/patternprint b/patternprint new file mode 100644 index 0000000000..82874cefee --- /dev/null +++ b/patternprint @@ -0,0 +1,6 @@ +rows = 6 +for num in range(rows): + for i in range(num): + print(num, end=" ") # print number + # line after each row to display pattern correctly + print(" ")
this program is used to print pattern
https://api.github.com/repos/geekcomputers/Python/pulls/984
2020-10-03T15:49:04Z
2020-10-10T20:18:18Z
2020-10-10T20:18:18Z
2020-10-10T20:18:18Z
104
geekcomputers/Python
31,155
Update CONTRIBUTING.rst to include correct Makefile targets.
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 472bddaf42..bc25810f4d 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -47,7 +47,7 @@ Go to https://github.com/jakubroztocil/httpie and fork the project repository. # Install dev. requirements and also HTTPie (in editable mode # so that the `htt...
Hi, I'm just getting started with developing on HTTPie. I was going through the contributing guide and noticed that a couple of the `make` commands seem a little stale.
https://api.github.com/repos/httpie/cli/pulls/638
2017-12-07T04:41:58Z
2017-12-13T20:14:31Z
2017-12-13T20:14:31Z
2017-12-15T13:30:26Z
230
httpie/cli
34,085
Test dnf before yum
diff --git a/bootstrap/_rpm_common.sh b/bootstrap/_rpm_common.sh index 9f670da6e87..e4219d06bdc 100755 --- a/bootstrap/_rpm_common.sh +++ b/bootstrap/_rpm_common.sh @@ -4,12 +4,13 @@ # - Fedora 22 (x64) # - Centos 7 (x64: on AWS EC2 t2.micro, DigitalOcean droplet) -if type yum 2>/dev/null -then - tool=yum -eli...
yum may still be installed (by default in recent Fedoras) and will display a deprecation and migration message. On the other hand, dnf either is or isn't installed and the test will proceed as intended. (dnf is the modern replacement for yum.)
https://api.github.com/repos/certbot/certbot/pulls/1519
2015-11-16T22:37:43Z
2015-12-02T02:15:26Z
2015-12-02T02:15:26Z
2015-12-02T02:15:26Z
188
certbot/certbot
564
[3.5] bpo-33127: Compatibility patch for LibreSSL 2.7.0 (GH-6210)
diff --git a/Misc/NEWS.d/next/Library/2018-03-24-15-08-24.bpo-33127.olJmHv.rst b/Misc/NEWS.d/next/Library/2018-03-24-15-08-24.bpo-33127.olJmHv.rst new file mode 100644 index 00000000000000..635aabbde0311b --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-03-24-15-08-24.bpo-33127.olJmHv.rst @@ -0,0 +1 @@ +The ssl module...
LibreSSL 2.7 introduced OpenSSL 1.1.0 API. The ssl module now detects LibreSSL 2.7 and only provides API shims for OpenSSL < 1.1.0 and LibreSSL < 2.7. Documentation updates and fixes for failing tests will be provided in another patch set. Signed-off-by: Christian Heimes <christian@python.org> <!-- issue-nu...
https://api.github.com/repos/python/cpython/pulls/10994
2018-12-06T15:37:43Z
2019-03-01T07:36:01Z
2019-03-01T07:36:01Z
2019-03-10T20:27:04Z
696
python/cpython
4,148
Warn users if sse flows are received without streaming, refs #4469
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a5add7bb0..6307983a94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ ([#5227](https://github.com/mitmproxy/mitmproxy/issues/5227), @mhils) * Console Performance Improvements ([#3427](https://github.com/mitmproxy/mitmproxy/issues/3427), @BkPHcgQL3V) +*...
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/5249
2022-04-06T09:50:43Z
2022-04-06T10:51:59Z
2022-04-06T10:51:59Z
2022-04-06T11:04:38Z
1,005
mitmproxy/mitmproxy
28,164
Fix index buffer bug
diff --git a/manimlib/camera/camera.py b/manimlib/camera/camera.py index 4dfc994ca2..3dbab48da4 100644 --- a/manimlib/camera/camera.py +++ b/manimlib/camera/camera.py @@ -415,7 +415,7 @@ def get_render_group( if indices is None: ibo = None elif single_use: - ibo = self.ctx.buff...
Small fix from an oversight in https://github.com/3b1b/manim/pull/1959 (Along with some small tweaks)
https://api.github.com/repos/3b1b/manim/pulls/1964
2023-01-16T05:07:35Z
2023-01-16T05:08:25Z
2023-01-16T05:08:25Z
2023-01-16T05:08:26Z
851
3b1b/manim
18,419
Add .NET references
diff --git a/Insecure Deserialization/README.md b/Insecure Deserialization/README.md index aa058259f5..514fd13e3f 100644 --- a/Insecure Deserialization/README.md +++ b/Insecure Deserialization/README.md @@ -12,6 +12,7 @@ Check the following sub-sections, located in other files : ## References * [Github - ysoseria...
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/98
2019-10-03T00:23:58Z
2019-10-03T14:13:26Z
2019-10-03T14:13:26Z
2019-10-03T14:13:26Z
527
swisskyrepo/PayloadsAllTheThings
8,573
Add nginx log files for LFI log poisoning
diff --git a/Directory Traversal/README.md b/Directory Traversal/README.md index 7de4fc123b..b746ffa7b7 100644 --- a/Directory Traversal/README.md +++ b/Directory Traversal/README.md @@ -111,6 +111,8 @@ The following log files are controllable and can be included with an evil payloa /var/log/httpd/error_log /usr/lo...
An example of where these new includes could be useful is the DC: 5 box on VulnHub.
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/71
2019-05-30T10:04:05Z
2019-05-30T10:33:24Z
2019-05-30T10:33:24Z
2019-05-30T10:33:33Z
1,379
swisskyrepo/PayloadsAllTheThings
8,304
✨ Import and re-export data structures from Starlette, used by Request properties, on `fastapi.datastructures`
diff --git a/fastapi/datastructures.py b/fastapi/datastructures.py index 6a44a7df4ff33..b1317128707b6 100644 --- a/fastapi/datastructures.py +++ b/fastapi/datastructures.py @@ -1,5 +1,10 @@ from typing import Any, Callable, Iterable, Type, TypeVar +from starlette.datastructures import URL as URL # noqa: F401 +from ...
Closes https://github.com/tiangolo/fastapi/issues/1871
https://api.github.com/repos/tiangolo/fastapi/pulls/1872
2020-08-10T14:16:13Z
2021-07-29T15:30:18Z
2021-07-29T15:30:18Z
2021-07-29T15:30:19Z
197
tiangolo/fastapi
23,054
Fix SelectJmes documentation
diff --git a/scrapy/loader/processors.py b/scrapy/loader/processors.py index 3b221acaf43..bf7c74bfef3 100644 --- a/scrapy/loader/processors.py +++ b/scrapy/loader/processors.py @@ -78,7 +78,7 @@ def __init__(self, json_path): def __call__(self, value): """Query value for the jmespath query and return an...
Docstring says it takes a json string, but it actually takes a loaded data structure.
https://api.github.com/repos/scrapy/scrapy/pulls/1320
2015-06-25T18:15:07Z
2015-06-25T18:20:46Z
2015-06-25T18:20:46Z
2015-06-25T18:20:56Z
158
scrapy/scrapy
34,641
Change grafana config so anonymous access works by default
diff --git a/dashboard/modules/metrics/export/grafana/grafana.ini b/dashboard/modules/metrics/export/grafana/grafana.ini index 281e2becb941f..e349fc5b29076 100644 --- a/dashboard/modules/metrics/export/grafana/grafana.ini +++ b/dashboard/modules/metrics/export/grafana/grafana.ini @@ -3,7 +3,7 @@ allow_embedding = true ...
Signed-off-by: Alan Guo <aguo@anyscale.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 will sh...
https://api.github.com/repos/ray-project/ray/pulls/30303
2022-11-15T19:23:45Z
2022-11-17T01:33:13Z
2022-11-17T01:33:13Z
2022-11-17T01:33:13Z
126
ray-project/ray
19,201
support stable-vicuna model
diff --git a/fastchat/conversation.py b/fastchat/conversation.py index 7bd836a287..f00efbd6e3 100644 --- a/fastchat/conversation.py +++ b/fastchat/conversation.py @@ -1129,6 +1129,20 @@ def get_conv_template(name: str) -> Conversation: ) ) +# Stable Vicuna default template +# source: https://huggingface.co/TheB...
<!-- 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? Supports stable-vicuna model. ## Related issue number (if appl...
https://api.github.com/repos/lm-sys/FastChat/pulls/2696
2023-11-18T13:31:10Z
2023-11-23T00:11:44Z
2023-11-23T00:11:44Z
2023-11-23T00:11:44Z
874
lm-sys/FastChat
41,072
Add new notebook links in the docs
diff --git a/notebooks/README.md b/notebooks/README.md index d42b0502f82df..911b4ba5e9dab 100644 --- a/notebooks/README.md +++ b/notebooks/README.md @@ -35,6 +35,9 @@ Pull Request so it can be included under the Community notebooks. | [How to fine-tune a model on language modeling](https://github.com/huggingface/noteb...
# What does this PR do? This PR adds links to the three missing tasks in the notebooks page: multiple choice, translation and summarization.
https://api.github.com/repos/huggingface/transformers/pulls/10876
2021-03-23T23:46:22Z
2021-03-24T13:45:08Z
2021-03-24T13:45:08Z
2021-03-24T13:45:09Z
943
huggingface/transformers
12,780
Add HQQ quant loader for ooba
diff --git a/README.md b/README.md index ad8087ee60..d75121ea5a 100644 --- a/README.md +++ b/README.md @@ -305,6 +305,12 @@ List of command-line flags |-------------|-------------| | `--model_type MODEL_TYPE` | Model type of pre-quantized model. Currently gpt2, gptj, gptneox, falcon, llama, mpt, starcoder (gptbigcode...
## Checklist: - [x] I have read the [Contributing guidelines](https://github.com/oobabooga/text-generation-webui/wiki/Contributing-guidelines). HQQ quant code: https://github.com/mobiusml/hqq HQQ quant blog: https://mobiusml.github.io/hqq_blog/ HQQ quant for Mixtral 2b: https://huggingface.co/mobiuslabsgmbh/Mixt...
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/4888
2023-12-11T22:15:31Z
2023-12-19T00:23:16Z
2023-12-19T00:23:16Z
2023-12-19T09:43:51Z
2,782
oobabooga/text-generation-webui
26,788
update yixia_download url match rule, fix #1346
diff --git a/src/you_get/extractors/yixia.py b/src/you_get/extractors/yixia.py index ca5c4bd6ab..7d5ba29089 100644 --- a/src/you_get/extractors/yixia.py +++ b/src/you_get/extractors/yixia.py @@ -51,11 +51,11 @@ def yixia_download(url, output_dir = '.', merge = True, info_only = False, **kwa yixia_download_by_s...
Miaopai has two styles of URL 1. http://www.miaopai.com/show/-FIqw~8q9R1qq~gSm0tUGA__.htm 2. http://www.miaopai.com/show/KDzmatlzeXnYSve4Z1Bdjg__.htm and `\w` can't match style 1, so i changed `\w+` to `.+`, this could fix problem in #1346 ping @cnbeining @soimort <!-- Reviewable:start --> --- This change...
https://api.github.com/repos/soimort/you-get/pulls/1513
2016-11-14T13:58:03Z
2016-11-15T08:13:15Z
2016-11-15T08:13:15Z
2016-11-15T08:13:16Z
384
soimort/you-get
20,931
hitbtc BDP -> BidiPass
diff --git a/js/hitbtc.js b/js/hitbtc.js index 3ceefe778ea4..5bc3b8fd7b8a 100644 --- a/js/hitbtc.js +++ b/js/hitbtc.js @@ -188,6 +188,7 @@ module.exports = class hitbtc extends Exchange { 'commonCurrencies': { 'AUTO': 'Cube', 'BCC': 'BCC', // initial symbol for Bitcoin Cas...
https://coinmarketcap.com/currencies/bidipass/markets/ conflict with https://coinmarketcap.com/currencies/big-data-protocol/markets/
https://api.github.com/repos/ccxt/ccxt/pulls/9699
2021-07-30T18:31:43Z
2021-07-30T20:25:19Z
2021-07-30T20:25:19Z
2021-07-30T20:25:19Z
181
ccxt/ccxt
13,566
read_files_in_dir: closedir before return
diff --git a/selfdrive/common/util.cc b/selfdrive/common/util.cc index 689a6a90bb1098..4d366a0394cc97 100644 --- a/selfdrive/common/util.cc +++ b/selfdrive/common/util.cc @@ -83,6 +83,7 @@ int read_files_in_dir(std::string path, std::map<std::string, std::string> *cont } } + closedir(d); return 0; }
https://api.github.com/repos/commaai/openpilot/pulls/20903
2021-05-14T15:57:33Z
2021-05-15T00:33:46Z
2021-05-15T00:33:46Z
2021-05-15T13:54:58Z
108
commaai/openpilot
9,357
chore: add user survey over README
diff --git a/.github/images/banner.svg b/.github/images/survey.svg similarity index 76% rename from .github/images/banner.svg rename to .github/images/survey.svg index d135bfdb45c19..33e290692b744 100644 --- a/.github/images/banner.svg +++ b/.github/images/survey.svg @@ -11,8 +11,8 @@ } </styl...
**Please refer to the contribution guidelines in the README when submitting PRs.**
https://api.github.com/repos/localstack/localstack/pulls/5975
2022-05-02T07:54:09Z
2022-05-02T09:24:11Z
2022-05-02T09:24:11Z
2022-05-02T09:24:14Z
324
localstack/localstack
28,980
build(deps): bump google-api-python-client from 2.112.0 to 2.113.0
diff --git a/requirements_with_versions.txt b/requirements_with_versions.txt index 2f1ceb7c9f..cfd26d1f21 100644 --- a/requirements_with_versions.txt +++ b/requirements_with_versions.txt @@ -58,7 +58,7 @@ requests-mock==1.11.0 pyglet==2.0.10 urllib3==2.1.0 thirdai==0.7.26 -google-api-python-client==2.112.0 +google-a...
Bumps [google-api-python-client](https://github.com/googleapis/google-api-python-client) from 2.112.0 to 2.113.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/googleapis/google-api-python-client/releases">google-api-python-client's releases</a>.</em></p> <blockquote> <h2>v2...
https://api.github.com/repos/geekcomputers/Python/pulls/2092
2024-01-11T18:36:53Z
2024-01-12T21:32:04Z
2024-01-12T21:32:04Z
2024-01-12T21:32:12Z
151
geekcomputers/Python
31,438
Update latency vs throughput blog link
diff --git a/README.md b/README.md index 9f0be48611..0e2c40ec67 100644 --- a/README.md +++ b/README.md @@ -433,7 +433,7 @@ Generally, you should aim for **maximal throughput** with **acceptable latency** ### Source(s) and further reading -* [Understanding latency vs throughput](https://community.cadence.com/cadenc...
## Review the Contributing Guidelines Before submitting a pull request, verify it meets all requirements in the [Contributing Guidelines](https://github.com/donnemartin/system-design-primer/blob/master/CONTRIBUTING.md). ### Translations See the [Contributing Guidelines](https://github.com/donnemartin/system-de...
https://api.github.com/repos/donnemartin/system-design-primer/pulls/716
2022-11-06T18:02:12Z
2022-11-13T21:04:18Z
2022-11-13T21:04:18Z
2022-11-13T21:04:30Z
162
donnemartin/system-design-primer
36,706
Fix broken link for xlsxwriter
diff --git a/README.md b/README.md index 16df7591a..280f4c488 100644 --- a/README.md +++ b/README.md @@ -225,7 +225,7 @@ Inspired by [awesome-php](https://github.com/ziadoz/awesome-php). * [python-docx](https://github.com/python-openxml/python-docx) - Reads, queries and modifies Microsoft Word 2007/2008 docx files...
Fix a link
https://api.github.com/repos/vinta/awesome-python/pulls/637
2016-05-09T09:22:21Z
2016-05-09T09:32:31Z
2016-05-09T09:32:31Z
2016-05-09T09:32:31Z
297
vinta/awesome-python
27,118
Add support for Videomega
diff --git a/README.md b/README.md index bbb090a8e9..b480f114ad 100644 --- a/README.md +++ b/README.md @@ -298,6 +298,7 @@ Use `--url`/`-u` to get a list of downloadable resource URLs extracted from the | Vine | <https://vine.co/> |✓| | | | Vimeo | <https://vimeo.com/> |✓| | | | Vidt...
![such-av s](https://cloud.githubusercontent.com/assets/342945/12064381/0e709074-afc2-11e5-96de-d604d64a6008.jpg) Example links: - http://videomega.tv/?ref=9r9sx4xGOGGOGx4xs9r9 - http://videomega.tv/?ref=UKRPMV8QG00GQ8VMPRKU - http://videomega.tv/?ref=E1OMPDO446644ODPMO1E - <del>(NSFW!) http://videomega.tv/?ref=Q379OG...
https://api.github.com/repos/soimort/you-get/pulls/850
2015-12-31T12:26:51Z
2015-12-31T14:23:30Z
2015-12-31T14:23:30Z
2015-12-31T14:31:25Z
997
soimort/you-get
20,985
filter ublox packets for sidebar
diff --git a/selfdrive/ui/ui.cc b/selfdrive/ui/ui.cc index 7b001179216eda..2562e338fb180f 100644 --- a/selfdrive/ui/ui.cc +++ b/selfdrive/ui/ui.cc @@ -470,10 +470,11 @@ void handle_message(UIState *s, Message * msg) { } else if (eventd.which == cereal_Event_ubloxGnss) { struct cereal_UbloxGnss datad; cerea...
https://api.github.com/repos/commaai/openpilot/pulls/1233
2020-03-11T21:03:51Z
2020-03-11T21:28:30Z
2020-03-11T21:28:30Z
2020-03-11T21:28:34Z
306
commaai/openpilot
9,442
Preserve Python 3.9 compatibility
diff --git a/modules/shared.py b/modules/shared.py index fa080458567..e53b1e113c7 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -15,6 +15,7 @@ from modules import localization, script_loading, errors, ui_components, shared_items, cmd_args from modules.paths_internal import models_path, script_path, data_...
**Describe what this pull request is trying to achieve.** The dev branch currently does not launch due to a TypeError in Python 3.9 environments (e.g. Colab Pro, Paperspace Gradient). This is because of newer Optional type syntax usage in `shared.py` added by #10458. This PR changes three lines to use `typing.Option...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/10578
2023-05-20T17:49:37Z
2023-05-20T19:11:03Z
2023-05-20T19:11:03Z
2023-05-20T21:15:36Z
376
AUTOMATIC1111/stable-diffusion-webui
40,581
This code is more elegant
diff --git a/abstract_factory.py b/abstract_factory.py index 7ecf0fc3..72d57043 100644 --- a/abstract_factory.py +++ b/abstract_factory.py @@ -7,20 +7,17 @@ import random - class PetShop: """A pet shop""" def __init__(self, animal_factory=None): - """pet_factory is our abstract factory. - ...
output has not changed
https://api.github.com/repos/faif/python-patterns/pulls/61
2014-09-02T07:34:05Z
2014-09-06T17:40:09Z
2014-09-06T17:40:09Z
2014-09-06T17:40:09Z
2,930
faif/python-patterns
33,653
Update README.md
diff --git a/README.md b/README.md index 3d477e83..43b3f0a4 100644 --- a/README.md +++ b/README.md @@ -264,7 +264,7 @@ Further resources: * [Touchstone](https://github.com/ptaoussanis/touchstone) - Clojure A/B testing library. * [Clojush](https://github.com/lspector/Clojush) - The Push programming language and the...
Last commit over 8 years ago: https://github.com/aria42/infer
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/571
2018-12-16T21:47:43Z
2018-12-26T13:11:24Z
2018-12-26T13:11:24Z
2018-12-26T13:11:24Z
287
josephmisiti/awesome-machine-learning
51,822
Implement basic status filter for StepFunctions list-executions
diff --git a/localstack/services/stepfunctions/provider.py b/localstack/services/stepfunctions/provider.py index 838dcf35f2781..e27df1d9ddbb1 100644 --- a/localstack/services/stepfunctions/provider.py +++ b/localstack/services/stepfunctions/provider.py @@ -5,7 +5,7 @@ import re from typing import Final, Optional -f...
## Motivation v2 stepfunctions provider `list-executions` should support `statusFilter` ... not yet implmented ## Changes * added basic statusFilter to localstack/services/stepfunctions/provider.py * new test `tests/aws/services/stepfunctions/v2/test_sfn_api.py::TestSnfApi::test_state_machine_status_filter`...
https://api.github.com/repos/localstack/localstack/pulls/9833
2023-12-10T16:07:37Z
2024-03-14T22:19:33Z
2024-03-14T22:19:33Z
2024-03-18T22:57:43Z
2,822
localstack/localstack
29,341
[fix] typo
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index cbdf109c1..3ab0801ed 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -252,7 +252,7 @@ Tools that implement these rules shall respect the following syntax to explicitl [[suppress(tag)]] -where "tag" is the anchor name of the item...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/449
2015-12-11T14:31:35Z
2015-12-11T14:47:05Z
2015-12-11T14:47:05Z
2015-12-11T14:47:10Z
209
isocpp/CppCoreGuidelines
15,858
Added length unit conversions
diff --git a/conversions/length_conversions.py b/conversions/length_conversions.py new file mode 100644 index 000000000000..811a9a916b70 --- /dev/null +++ b/conversions/length_conversions.py @@ -0,0 +1,108 @@ +""" +Conversion of length units. +Available Units:- Metre,Kilometre,Feet,Inch,Centimeter,Yard,Foot,Mile,Mill...
Conversion of length units were added with respective tests being implemented and passed. Available Units:- Metre,Kilometre,Feet,Inch,Centimeter,Yard,Foot,Mile,Millimeter ### **Describe your change:** * [x] Add an algorithm? * [x] Fix a bug or typo in an existing algorithm? * [x] Documentation change? #...
https://api.github.com/repos/TheAlgorithms/Python/pulls/5373
2021-10-17T10:58:53Z
2021-10-19T05:26:04Z
2021-10-19T05:26:04Z
2021-10-19T05:26:04Z
1,299
TheAlgorithms/Python
30,249
test using os.path.sep not hardcoded /
diff --git a/certbot/tests/cert_manager_test.py b/certbot/tests/cert_manager_test.py index bffa5298fcb..e04e25da8b6 100644 --- a/certbot/tests/cert_manager_test.py +++ b/certbot/tests/cert_manager_test.py @@ -383,7 +383,7 @@ def test_rename_cert_bad_new_certname(self, mock_check, unused_get_utility): mock_conf...
https://api.github.com/repos/certbot/certbot/pulls/3920
2016-12-16T03:19:49Z
2016-12-16T03:41:42Z
2016-12-16T03:41:42Z
2017-01-05T22:51:34Z
171
certbot/certbot
3,273
Added PLE env to scoreboard (from https://github.com/lusob/gym-ple)
diff --git a/gym/scoreboard/__init__.py b/gym/scoreboard/__init__.py index fae7b8f88af..12282f4f09f 100644 --- a/gym/scoreboard/__init__.py +++ b/gym/scoreboard/__init__.py @@ -83,6 +83,12 @@ description='Environments to test various AI safety properties.' ) +add_group( + id='ple', + name='PLE', + desc...
https://api.github.com/repos/openai/gym/pulls/299
2016-08-18T15:14:56Z
2016-08-24T01:02:09Z
2016-08-24T01:02:09Z
2016-08-24T18:34:00Z
469
openai/gym
5,332
If a snap build times out, dump the logs
diff --git a/tools/snap/build_remote.py b/tools/snap/build_remote.py index 6ab80669c09..7a4eea1b006 100755 --- a/tools/snap/build_remote.py +++ b/tools/snap/build_remote.py @@ -253,6 +253,12 @@ def main(): process.join(args.timeout) if process.is_alive(): + for target in targe...
Not super clean, but might help debugging the repeated snap timeouts
https://api.github.com/repos/certbot/certbot/pulls/9340
2022-07-06T00:05:06Z
2022-07-07T21:31:48Z
2022-07-07T21:31:48Z
2022-07-07T21:31:49Z
164
certbot/certbot
1,152
Mark Nginx as Alpha
diff --git a/letsencrypt-nginx/letsencrypt_nginx/configurator.py b/letsencrypt-nginx/letsencrypt_nginx/configurator.py index 2899e1f767f..3f6d6f327bb 100644 --- a/letsencrypt-nginx/letsencrypt_nginx/configurator.py +++ b/letsencrypt-nginx/letsencrypt_nginx/configurator.py @@ -56,7 +56,7 @@ class NginxConfigurator(commo...
Fixes #821.
https://api.github.com/repos/certbot/certbot/pulls/861
2015-09-29T18:07:01Z
2015-09-29T18:12:19Z
2015-09-29T18:12:19Z
2016-05-06T19:22:29Z
173
certbot/certbot
3,426
Add `requests` to requirements.txt
diff --git a/requirements.txt b/requirements.txt index a80d4678994..22b51fc490e 100755 --- a/requirements.txt +++ b/requirements.txt @@ -6,6 +6,7 @@ numpy>=1.18.5 opencv-python>=4.1.2 Pillow>=7.1.2 PyYAML>=5.3.1 +requests>=2.23.0 scipy>=1.4.1 torch>=1.7.0 torchvision>=0.8.1 @@ -16,7 +17,7 @@ tensorboard>=2.4.1 #...
1. Requests added to requirements.txt. That might not be included in all docker base images, adding it to the requirements is safer. 2. Added a minimum version to Pandas. It's a good practice to have versions for all dependencies. ## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultral...
https://api.github.com/repos/ultralytics/yolov5/pulls/5112
2021-10-09T18:00:01Z
2021-10-09T22:51:01Z
2021-10-09T22:51:01Z
2024-01-19T15:11:48Z
174
ultralytics/yolov5
25,284
Add support for `IterableDataset` to `TorchDataLoaderAdapter`.
diff --git a/keras/backend/jax/trainer.py b/keras/backend/jax/trainer.py index 5adb37de133..ec58eb9cc96 100644 --- a/keras/backend/jax/trainer.py +++ b/keras/backend/jax/trainer.py @@ -334,7 +334,7 @@ def fit( (x, y, sample_weight), validation_split=validation_split ) - if validat...
Fixes https://github.com/keras-team/keras/issues/19156 The `IterableDataset` can optionally implement `__len__`.
https://api.github.com/repos/keras-team/keras/pulls/19176
2024-02-13T18:01:31Z
2024-02-14T00:04:37Z
2024-02-14T00:04:37Z
2024-02-14T01:58:49Z
2,286
keras-team/keras
47,119
Fix skip_teardown and force_synth usage in CDK tests
diff --git a/tests/aws/services/stepfunctions/v2/services/test_ecs_task_service.py b/tests/aws/services/stepfunctions/v2/services/test_ecs_task_service.py index 2c78b1f83a10b..ed01626a472a6 100644 --- a/tests/aws/services/stepfunctions/v2/services/test_ecs_task_service.py +++ b/tests/aws/services/stepfunctions/v2/servi...
## Motivation While working on another sample I've noticed some cases where we forgot to disable the `skip_teardown` and `force_synth` flags. ## Changes - Removes any `force_synth=True` and `skip_teardown=True` cases.
https://api.github.com/repos/localstack/localstack/pulls/10445
2024-03-13T09:41:44Z
2024-03-19T09:48:45Z
2024-03-19T09:48:45Z
2024-03-19T09:48:46Z
543
localstack/localstack
28,633
add warning about Python2.7 support drop
diff --git a/README.rst b/README.rst index 4df228acd4c49..eb1957686acaf 100644 --- a/README.rst +++ b/README.rst @@ -53,6 +53,9 @@ scikit-learn requires: - NumPy (>= 1.8.2) - SciPy (>= 0.13.3) +**Scikit-learn 0.20 is the last version to support Python2.7.** +Scikit-learn 0.21 and later will require Python 3.5 or ne...
Fixes #11115. Says we'll drop 2.7 and 3.4 for sklearn 0.21
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/11545
2018-07-15T23:11:53Z
2018-07-17T10:48:43Z
2018-07-17T10:48:43Z
2018-07-31T04:31:41Z
1,074
scikit-learn/scikit-learn
46,197
[MRG] Speed up plot_digits_linkage.py example #21598
diff --git a/examples/cluster/plot_digits_linkage.py b/examples/cluster/plot_digits_linkage.py index 925f5c122d73f..e13e83047fee3 100644 --- a/examples/cluster/plot_digits_linkage.py +++ b/examples/cluster/plot_digits_linkage.py @@ -12,10 +12,18 @@ What this example shows us is the behavior "rich getting richer" of ...
#### Reference Issues/PRs #21598 #### What does this implement/fix? Explain your changes. Speeds up `../examples/cluster/plot_digits_linkage.py` from 32 sec to 20 sec by reducing the number of digits dataset samples from 1800 to 800. Additionally, increased the font size of the numbers and added a random state...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/21678
2021-11-15T17:12:02Z
2021-11-19T09:27:29Z
2021-11-19T09:27:29Z
2021-11-22T15:49:30Z
502
scikit-learn/scikit-learn
46,790
Add AzureHound examples
diff --git a/Methodology and Resources/Cloud - Azure Pentest.md b/Methodology and Resources/Cloud - Azure Pentest.md index 08800ad232..d6721d2f0b 100644 --- a/Methodology and Resources/Cloud - Azure Pentest.md +++ b/Methodology and Resources/Cloud - Azure Pentest.md @@ -90,11 +90,27 @@ ``` * [**BloodHoundAD/Az...
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/596
2022-11-04T14:09:49Z
2022-11-04T15:42:49Z
2022-11-04T15:42:49Z
2022-11-07T10:50:21Z
880
swisskyrepo/PayloadsAllTheThings
8,650
Bump actions/checkout from 3.3.0 to 3.5.0
diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index ef277f0050..6b0c11cf36 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -9,7 +9,7 @@ jobs: outputs: hash: ${{ steps.hash.outputs.hash }} steps: - - uses: actions/checkout@ac5939856...
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.0 to 3.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p> <blockquote> <h2>v3.5.0</h2> <h2>What's Changed</h2> <ul> <li>Add new public ...
https://api.github.com/repos/pallets/flask/pulls/5039
2023-04-01T16:57:07Z
2023-04-03T13:18:45Z
2023-04-03T13:18:45Z
2023-04-18T00:05:33Z
444
pallets/flask
20,691
bpo-47117: Don't crash if we fail to decode characters when the tokenizer buffers are uninitialized
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-03-26-15-45-57.bpo-47117.60W6GQ.rst b/Misc/NEWS.d/next/Core and Builtins/2022-03-26-15-45-57.bpo-47117.60W6GQ.rst new file mode 100644 index 00000000000000..5098ed86d07935 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2022-03-26-15-45-57.bpo-47117.60W6GQ.rst...
<!-- 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: ``` bpo-NNNN: Summary of the changes made ``` Where: bpo-NNNN refers to the issue number in the https://bugs.python.org. Most PRs will require an issue numbe...
https://api.github.com/repos/python/cpython/pulls/32129
2022-03-26T15:46:29Z
2022-03-26T16:29:03Z
2022-03-26T16:29:03Z
2022-03-26T17:26:48Z
569
python/cpython
4,243
Add back mismatched indices
diff --git a/manimlib/animation/transform_matching_parts.py b/manimlib/animation/transform_matching_parts.py index e82bafafe8..ef62ff7d2a 100644 --- a/manimlib/animation/transform_matching_parts.py +++ b/manimlib/animation/transform_matching_parts.py @@ -192,6 +192,8 @@ def add_anims(anim_class, indices_lists_pairs): ...
## Motivation Fix a bug in `TransformMatchingStrings` class. ## Proposed changes - M `manimlib/animation/transform_matching_parts.py`: Add back mismatched indices.
https://api.github.com/repos/3b1b/manim/pulls/1820
2022-05-24T14:44:04Z
2022-05-25T06:12:54Z
2022-05-25T06:12:54Z
2022-05-28T04:45:15Z
162
3b1b/manim
18,555
Polish Python 2 removal
diff --git a/httpie/downloads.py b/httpie/downloads.py index 22e2d4a97f..f9a66f5ed3 100644 --- a/httpie/downloads.py +++ b/httpie/downloads.py @@ -1,10 +1,7 @@ -# coding=utf-8 """ Download mode implementation. """ -from __future__ import division - import errno import mimetypes import os @@ -131,7 +128,7 @@ def...
https://api.github.com/repos/httpie/cli/pulls/1070
2021-05-27T10:26:44Z
2021-05-27T11:05:41Z
2021-05-27T11:05:41Z
2021-05-27T11:14:38Z
1,380
httpie/cli
34,064
Fix table of contents
diff --git a/Methodology and Resources/Bind Shell Cheatsheet.md b/Methodology and Resources/Bind Shell Cheatsheet.md index 399c3581ae..c51bb7ebf0 100644 --- a/Methodology and Resources/Bind Shell Cheatsheet.md +++ b/Methodology and Resources/Bind Shell Cheatsheet.md @@ -2,7 +2,7 @@ ## Summary -* [Reverse Shel...
https://api.github.com/repos/swisskyrepo/PayloadsAllTheThings/pulls/296
2020-12-02T13:21:02Z
2020-12-07T16:21:03Z
2020-12-07T16:21:03Z
2020-12-07T16:24:18Z
138
swisskyrepo/PayloadsAllTheThings
8,335
MNT Remove setuptools dependency in our test suite
diff --git a/sklearn/tests/test_common.py b/sklearn/tests/test_common.py index 9ff5bf21c9a7d..a5f485ee1a882 100644 --- a/sklearn/tests/test_common.py +++ b/sklearn/tests/test_common.py @@ -217,6 +217,9 @@ def test_import_all_consistency(): for modname in submods + ["sklearn"]: if ".tests." in modname: ...
This was noticed when working on Python 3.12 wheels in https://github.com/scikit-learn/scikit-learn/pull/27027. In Python 3.12 setuptools is not a core dependency `venv` (see [this](https://docs.python.org/3.12/library/venv.html#creating-virtual-environments)). As noted in https://github.com/scikit-learn/scikit-lear...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/27355
2023-09-13T09:55:00Z
2023-09-15T15:43:20Z
2023-09-15T15:43:20Z
2023-09-19T13:01:52Z
494
scikit-learn/scikit-learn
46,435
Fix problems with different test ordering
diff --git a/certbot/tests/cli_test.py b/certbot/tests/cli_test.py index 32aada811c2..b0eb965426b 100644 --- a/certbot/tests/cli_test.py +++ b/certbot/tests/cli_test.py @@ -1,12 +1,11 @@ """Tests for certbot.cli.""" import argparse -import functools import unittest import os import tempfile -import six import m...
I went through our unit tests and looked at all non-constant global/static variables that I'm aware of. The ones I looked at are in `certbot/cli.py` and `certbot/hooks.py`. These variables are now properly cleaned up during tests so they don't affect other tests.
https://api.github.com/repos/certbot/certbot/pulls/4043
2017-01-13T01:49:08Z
2017-01-13T20:16:09Z
2017-01-13T20:16:09Z
2017-01-13T20:16:14Z
1,177
certbot/certbot
3,235
support xpu for ocr
diff --git a/tools/infer/utility.py b/tools/infer/utility.py index 6bcab27088..0bbc3b1db0 100644 --- a/tools/infer/utility.py +++ b/tools/infer/utility.py @@ -33,6 +33,7 @@ def init_args(): parser = argparse.ArgumentParser() # params for prediction engine parser.add_argument("--use_gpu", type=str2bool, d...
use method : ``` python3.7 tools/train.py -c xxx.yaml -o Global.use_gpu=False Global.use_xpu=True ```
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/5967
2022-04-14T03:03:56Z
2022-04-14T03:13:17Z
2022-04-14T03:13:17Z
2022-05-12T12:15:53Z
1,034
PaddlePaddle/PaddleOCR
41,789