problem_id
stringlengths
18
22
source
stringclasses
1 value
task_type
stringclasses
1 value
in_source_id
stringlengths
13
58
prompt
stringlengths
1.1k
10.2k
golden_diff
stringlengths
151
4.94k
verification_info
stringlengths
582
21k
num_tokens
int64
271
2.05k
num_tokens_diff
int64
47
1.02k
gh_patches_debug_36694
rasdani/github-patches
git_diff
mabel-dev__opteryx-1443
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- 🪲stats for distinct incorrect ### Thank you for taking the time to report a problem with Opteryx. _To help us to respond to your request we ask that you try to provide the below detail about the bug._ **...
diff --git a/opteryx/__version__.py b/opteryx/__version__.py --- a/opteryx/__version__.py +++ b/opteryx/__version__.py @@ -1,4 +1,4 @@ -__build__ = 296 +__build__ = 298 # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/o...
{"golden_diff": "diff --git a/opteryx/__version__.py b/opteryx/__version__.py\n--- a/opteryx/__version__.py\n+++ b/opteryx/__version__.py\n@@ -1,4 +1,4 @@\n-__build__ = 296\n+__build__ = 298\n \n # Licensed under the Apache License, Version 2.0 (the \"License\");\n # you may not use this file except in compliance with ...
1,555
586
gh_patches_debug_15665
rasdani/github-patches
git_diff
meltano__meltano-6562
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- bug: No way to dismiss image scan alerts ### Meltano Version NA ### Python Version NA ### Bug scope Other ### Operating System NA ### Description Currently we use `.github/actions/docker-build-scan-p...
diff --git a/.github/actions/docker-build-scan-push/check_sarif.py b/.github/actions/docker-build-scan-push/check_sarif.py deleted file mode 100644 --- a/.github/actions/docker-build-scan-push/check_sarif.py +++ /dev/null @@ -1,35 +0,0 @@ -"""Check if the provided SARIF file has any violations at or above some severity...
{"golden_diff": "diff --git a/.github/actions/docker-build-scan-push/check_sarif.py b/.github/actions/docker-build-scan-push/check_sarif.py\ndeleted file mode 100644\n--- a/.github/actions/docker-build-scan-push/check_sarif.py\n+++ /dev/null\n@@ -1,35 +0,0 @@\n-\"\"\"Check if the provided SARIF file has any violations ...
906
340
gh_patches_debug_4122
rasdani/github-patches
git_diff
mozilla__bugbug-3897
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Restrict the training set of the StepsToReproduce model only to defects Given that STRs don't apply to enhancement or task. --- END ISSUE --- Below are some code segments, each from a relevant file. One or ...
diff --git a/bugbug/models/stepstoreproduce.py b/bugbug/models/stepstoreproduce.py --- a/bugbug/models/stepstoreproduce.py +++ b/bugbug/models/stepstoreproduce.py @@ -76,6 +76,8 @@ classes = {} for bug_data in bugzilla.get_bugs(): + if bug_data["type"] != "defect": + contin...
{"golden_diff": "diff --git a/bugbug/models/stepstoreproduce.py b/bugbug/models/stepstoreproduce.py\n--- a/bugbug/models/stepstoreproduce.py\n+++ b/bugbug/models/stepstoreproduce.py\n@@ -76,6 +76,8 @@\n classes = {}\n \n for bug_data in bugzilla.get_bugs():\n+ if bug_data[\"type\"] != \"defec...
1,375
131
gh_patches_debug_58
rasdani/github-patches
git_diff
Anselmoo__spectrafit-701
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [Bug]: ASCII Char in creating branch ### Is there an existing issue for this? - [X] I have searched the existing issues ### Current Behavior Is crashing ### Expected Behavior Is realising a change in cha...
diff --git a/spectrafit/__init__.py b/spectrafit/__init__.py --- a/spectrafit/__init__.py +++ b/spectrafit/__init__.py @@ -1,2 +1,2 @@ """SpectraFit, fast command line tool for fitting data.""" -__version__ = "1.0.0b1" +__version__ = "1.0.0b2"
{"golden_diff": "diff --git a/spectrafit/__init__.py b/spectrafit/__init__.py\n--- a/spectrafit/__init__.py\n+++ b/spectrafit/__init__.py\n@@ -1,2 +1,2 @@\n \"\"\"SpectraFit, fast command line tool for fitting data.\"\"\"\n-__version__ = \"1.0.0b1\"\n+__version__ = \"1.0.0b2\"\n", "issue": "[Bug]: ASCII Char in creatin...
398
96
gh_patches_debug_35958
rasdani/github-patches
git_diff
alltheplaces__alltheplaces-2644
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Spider advanceautoparts is broken During the global build at 2021-05-21-20-28-08, spider **advanceautoparts** failed with **0 features** and **405 errors**. Here's [the log](https://data.alltheplaces.xyz/run...
diff --git a/locations/spiders/advanceautoparts.py b/locations/spiders/advanceautoparts.py --- a/locations/spiders/advanceautoparts.py +++ b/locations/spiders/advanceautoparts.py @@ -45,38 +45,22 @@ js = json.loads(response.xpath('//script[@class="js-map-config"]/text()').get()) ref = js["entities"][0...
{"golden_diff": "diff --git a/locations/spiders/advanceautoparts.py b/locations/spiders/advanceautoparts.py\n--- a/locations/spiders/advanceautoparts.py\n+++ b/locations/spiders/advanceautoparts.py\n@@ -45,38 +45,22 @@\n js = json.loads(response.xpath('//script[@class=\"js-map-config\"]/text()').get())\n ...
1,286
627
gh_patches_debug_24842
rasdani/github-patches
git_diff
Kinto__kinto-667
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Relax record id validation Do we really need to ensure that posted record ids match a uuid regex? We can generate a uuid when a record without id is posted, and leave the usage of uuid in our official client...
diff --git a/kinto/views/__init__.py b/kinto/views/__init__.py --- a/kinto/views/__init__.py +++ b/kinto/views/__init__.py @@ -15,6 +15,12 @@ return ''.join(letters) +class RelaxedUUID(generators.UUID4): + """A generator that generates UUIDs but accepts any string. + """ + regexp = generators.Gene...
{"golden_diff": "diff --git a/kinto/views/__init__.py b/kinto/views/__init__.py\n--- a/kinto/views/__init__.py\n+++ b/kinto/views/__init__.py\n@@ -15,6 +15,12 @@\n return ''.join(letters)\n \n \n+class RelaxedUUID(generators.UUID4):\n+ \"\"\"A generator that generates UUIDs but accepts any string.\n+ \"\"...
1,764
316
gh_patches_debug_43674
rasdani/github-patches
git_diff
dotkom__onlineweb4-293
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Menu is missing link to admin page when user is logged in Should only be visible when it's a privileged user with access to the panel --- END ISSUE --- Below are some code segments, each from a relevant f...
diff --git a/apps/authentication/forms.py b/apps/authentication/forms.py --- a/apps/authentication/forms.py +++ b/apps/authentication/forms.py @@ -11,7 +11,7 @@ class LoginForm(forms.Form): username = forms.CharField(widget=forms.TextInput(), label=_("Brukernavn"), max_length=50) - password = forms.CharField...
{"golden_diff": "diff --git a/apps/authentication/forms.py b/apps/authentication/forms.py\n--- a/apps/authentication/forms.py\n+++ b/apps/authentication/forms.py\n@@ -11,7 +11,7 @@\n \n class LoginForm(forms.Form):\n username = forms.CharField(widget=forms.TextInput(), label=_(\"Brukernavn\"), max_length=50)\n- ...
1,430
1,001
gh_patches_debug_23037
rasdani/github-patches
git_diff
e-valuation__EvaP-1221
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Contact modal broken in Firefox The contact modal does not work in Firefox, because `event` is undefined. Chrome provides this in global scope, that's why it's working there (see https://stackoverflow.com/que...
diff --git a/evap/evaluation/views.py b/evap/evaluation/views.py --- a/evap/evaluation/views.py +++ b/evap/evaluation/views.py @@ -4,7 +4,7 @@ from django.contrib import messages, auth from django.contrib.auth.decorators import login_required from django.core.mail import EmailMessage -from django.http import HttpRes...
{"golden_diff": "diff --git a/evap/evaluation/views.py b/evap/evaluation/views.py\n--- a/evap/evaluation/views.py\n+++ b/evap/evaluation/views.py\n@@ -4,7 +4,7 @@\n from django.contrib import messages, auth\n from django.contrib.auth.decorators import login_required\n from django.core.mail import EmailMessage\n-from dj...
1,505
207
gh_patches_debug_2976
rasdani/github-patches
git_diff
qtile__qtile-1644
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Can't use asyncio event loop in widgets I am creating a widget that uses asyncio to run some external command (with `asyncio.create_subprocess_exec`). It doesn't work, and raises the `RuntimeError("Cannot add...
diff --git a/libqtile/core/session_manager.py b/libqtile/core/session_manager.py --- a/libqtile/core/session_manager.py +++ b/libqtile/core/session_manager.py @@ -25,6 +25,7 @@ The state to restart the qtile instance with. """ eventloop = asyncio.new_event_loop() + asyncio.set_even...
{"golden_diff": "diff --git a/libqtile/core/session_manager.py b/libqtile/core/session_manager.py\n--- a/libqtile/core/session_manager.py\n+++ b/libqtile/core/session_manager.py\n@@ -25,6 +25,7 @@\n The state to restart the qtile instance with.\n \"\"\"\n eventloop = asyncio.new_event_loop()...
800
108
gh_patches_debug_17499
rasdani/github-patches
git_diff
pyinstaller__pyinstaller-7183
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Hooks: Runtime hook for subprocess block launching standalone cmd <!-- Welcome to the PyInstaller issue tracker! Before creating an issue, please heed the following: 1. This tracker should only be used to...
diff --git a/PyInstaller/hooks/rthooks/pyi_rth_subprocess.py b/PyInstaller/hooks/rthooks/pyi_rth_subprocess.py deleted file mode 100644 --- a/PyInstaller/hooks/rthooks/pyi_rth_subprocess.py +++ /dev/null @@ -1,28 +0,0 @@ -#----------------------------------------------------------------------------- -# Copyright (c) 20...
{"golden_diff": "diff --git a/PyInstaller/hooks/rthooks/pyi_rth_subprocess.py b/PyInstaller/hooks/rthooks/pyi_rth_subprocess.py\ndeleted file mode 100644\n--- a/PyInstaller/hooks/rthooks/pyi_rth_subprocess.py\n+++ /dev/null\n@@ -1,28 +0,0 @@\n-#---------------------------------------------------------------------------...
975
322
gh_patches_debug_14873
rasdani/github-patches
git_diff
TencentBlueKing__bk-user-410
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [优化] HTTP API 数据源同步报错 对应API 没有按照要求, 返回`count/results`, 此时取空 实际上这里的逻辑会`results`的第一条, 处理; 但是没有很好地校验 会报错 ``` Task bkuser_core.categories.tasks.adapter_sync[78744136-5e83-4605-8503-d4d8ed90f9e3] raised ...
diff --git a/src/api/bkuser_core/categories/plugins/custom/client.py b/src/api/bkuser_core/categories/plugins/custom/client.py --- a/src/api/bkuser_core/categories/plugins/custom/client.py +++ b/src/api/bkuser_core/categories/plugins/custom/client.py @@ -72,6 +72,12 @@ logger.error("`results` in response i...
{"golden_diff": "diff --git a/src/api/bkuser_core/categories/plugins/custom/client.py b/src/api/bkuser_core/categories/plugins/custom/client.py\n--- a/src/api/bkuser_core/categories/plugins/custom/client.py\n+++ b/src/api/bkuser_core/categories/plugins/custom/client.py\n@@ -72,6 +72,12 @@\n logger.error(\"`...
1,775
224
gh_patches_debug_26936
rasdani/github-patches
git_diff
kartoza__prj.app-435
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- 500 on bad certificate number # Problem When I try and add a bad certificate number, then I get a 500, I should get a 404. See: http://staging.changelog.qgis.org/en/qgis/certificate/0246242/ # Propose...
diff --git a/django_project/certification/views/certificate.py b/django_project/certification/views/certificate.py --- a/django_project/certification/views/certificate.py +++ b/django_project/certification/views/certificate.py @@ -93,10 +93,15 @@ """ self.certificateID = self.kwargs.get('id', None) ...
{"golden_diff": "diff --git a/django_project/certification/views/certificate.py b/django_project/certification/views/certificate.py\n--- a/django_project/certification/views/certificate.py\n+++ b/django_project/certification/views/certificate.py\n@@ -93,10 +93,15 @@\n \"\"\"\n \n self.certificateID = se...
1,506
323
gh_patches_debug_34950
rasdani/github-patches
git_diff
jupyterhub__jupyterhub-2971
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- singleuser server version check spams the logs **Describe the bug** We have ~277 active single user servers in our deployment right now and on restart of the hub service we see this for each one: > Mar ...
diff --git a/jupyterhub/_version.py b/jupyterhub/_version.py --- a/jupyterhub/_version.py +++ b/jupyterhub/_version.py @@ -18,6 +18,15 @@ __version__ = ".".join(map(str, version_info[:3])) + ".".join(version_info[3:]) +# Singleton flag to only log the major/minor mismatch warning once per mismatch combo. +_version...
{"golden_diff": "diff --git a/jupyterhub/_version.py b/jupyterhub/_version.py\n--- a/jupyterhub/_version.py\n+++ b/jupyterhub/_version.py\n@@ -18,6 +18,15 @@\n \n __version__ = \".\".join(map(str, version_info[:3])) + \".\".join(version_info[3:])\n \n+# Singleton flag to only log the major/minor mismatch warning once p...
1,171
528
gh_patches_debug_35171
rasdani/github-patches
git_diff
awslabs__gluonts-709
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Tracking: mxnet 1.6 ### To update - [x] documentation - [x] README.md - [x] test-dependencies ### Fix - [x] https://github.com/awslabs/gluon-ts/issues/583 ### Other - [x] Update `numpy~1.18` ...
diff --git a/src/gluonts/model/seq2seq/_forking_network.py b/src/gluonts/model/seq2seq/_forking_network.py --- a/src/gluonts/model/seq2seq/_forking_network.py +++ b/src/gluonts/model/seq2seq/_forking_network.py @@ -12,7 +12,8 @@ # permissions and limitations under the License. # Third-party imports -from mxnet impo...
{"golden_diff": "diff --git a/src/gluonts/model/seq2seq/_forking_network.py b/src/gluonts/model/seq2seq/_forking_network.py\n--- a/src/gluonts/model/seq2seq/_forking_network.py\n+++ b/src/gluonts/model/seq2seq/_forking_network.py\n@@ -12,7 +12,8 @@\n # permissions and limitations under the License.\n \n # Third-party i...
1,729
514
gh_patches_debug_35010
rasdani/github-patches
git_diff
ephios-dev__ephios-884
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Improve calendar design As a user, I expect the event calendar view to display the shifts in small boxes with times inside of each calendar day (similiar to Google Calendar etc.) --- END ISSUE --- Below are...
diff --git a/ephios/core/calendar.py b/ephios/core/calendar.py --- a/ephios/core/calendar.py +++ b/ephios/core/calendar.py @@ -2,6 +2,7 @@ from datetime import date, datetime from itertools import groupby +from django.template.loader import render_to_string from django.utils.formats import date_format from django...
{"golden_diff": "diff --git a/ephios/core/calendar.py b/ephios/core/calendar.py\n--- a/ephios/core/calendar.py\n+++ b/ephios/core/calendar.py\n@@ -2,6 +2,7 @@\n from datetime import date, datetime\n from itertools import groupby\n \n+from django.template.loader import render_to_string\n from django.utils.formats import...
1,225
627
gh_patches_debug_15713
rasdani/github-patches
git_diff
netket__netket-122
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Save and load objects from python The last main design issue to be solved for v2.0 concerns saving and loading objects from python. Pybind11 has some [pickling support](https://pybind11.readthedocs.io/en/s...
diff --git a/Tutorials/PyNetKet/machine.py b/Tutorials/PyNetKet/machine.py --- a/Tutorials/PyNetKet/machine.py +++ b/Tutorials/PyNetKet/machine.py @@ -19,24 +19,20 @@ from mpi4py import MPI import scipy.sparse as sparse -#Constructing a 1d lattice -g = nk.graph.Hypercube(L=4, ndim=1) +# Constructing a 1d lattice +g...
{"golden_diff": "diff --git a/Tutorials/PyNetKet/machine.py b/Tutorials/PyNetKet/machine.py\n--- a/Tutorials/PyNetKet/machine.py\n+++ b/Tutorials/PyNetKet/machine.py\n@@ -19,24 +19,20 @@\n from mpi4py import MPI\n import scipy.sparse as sparse\n \n-#Constructing a 1d lattice\n-g = nk.graph.Hypercube(L=4, ndim=1)\n+# Co...
913
332
gh_patches_debug_16817
rasdani/github-patches
git_diff
microsoft__ptvsd-1992
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Using Ctrl+C causes launcher to print traceback ## Environment data - PTVSD version: master - OS and version: linux - Python version (& distribution if applicable, e.g. Anaconda): 3.7 - Using VS Code or...
diff --git a/src/ptvsd/launcher/__main__.py b/src/ptvsd/launcher/__main__.py --- a/src/ptvsd/launcher/__main__.py +++ b/src/ptvsd/launcher/__main__.py @@ -8,6 +8,7 @@ import locale import os +import signal import sys # WARNING: ptvsd and submodules must not be imported on top level in this module, @@ -25,6 +26,...
{"golden_diff": "diff --git a/src/ptvsd/launcher/__main__.py b/src/ptvsd/launcher/__main__.py\n--- a/src/ptvsd/launcher/__main__.py\n+++ b/src/ptvsd/launcher/__main__.py\n@@ -8,6 +8,7 @@\n \n import locale\n import os\n+import signal\n import sys\n \n # WARNING: ptvsd and submodules must not be imported on top level in...
1,474
240
gh_patches_debug_58138
rasdani/github-patches
git_diff
gammapy__gammapy-3911
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- string representation of various Maker classes may cause a TypeError This was tested against Gammapy 0.19 and the development version. In some cases, printing (or using the string representation in another...
diff --git a/gammapy/makers/core.py b/gammapy/makers/core.py --- a/gammapy/makers/core.py +++ b/gammapy/makers/core.py @@ -26,9 +26,9 @@ max_len = np.max([len(_) for _ in names]) + 1 for name in names: - value = getattr(self, name, "not available") + value = getattr(self, name,...
{"golden_diff": "diff --git a/gammapy/makers/core.py b/gammapy/makers/core.py\n--- a/gammapy/makers/core.py\n+++ b/gammapy/makers/core.py\n@@ -26,9 +26,9 @@\n max_len = np.max([len(_) for _ in names]) + 1\n \n for name in names:\n- value = getattr(self, name, \"not available\")\n+ ...
1,693
144
gh_patches_debug_30680
rasdani/github-patches
git_diff
Kinto__kinto-1941
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Optimize use of jsonschema.validate() It could be interesting to investigate if the fastjsonschema lib would give us better perfs :) I marked this as easy-pick since everything happens in `schema_validatio...
diff --git a/kinto/schema_validation.py b/kinto/schema_validation.py --- a/kinto/schema_validation.py +++ b/kinto/schema_validation.py @@ -1,5 +1,6 @@ import colander -from jsonschema import ValidationError, SchemaError, RefResolutionError, validate +from jsonschema import ValidationError, SchemaError, RefResolutionEr...
{"golden_diff": "diff --git a/kinto/schema_validation.py b/kinto/schema_validation.py\n--- a/kinto/schema_validation.py\n+++ b/kinto/schema_validation.py\n@@ -1,5 +1,6 @@\n import colander\n-from jsonschema import ValidationError, SchemaError, RefResolutionError, validate\n+from jsonschema import ValidationError, Schem...
1,439
492
gh_patches_debug_6142
rasdani/github-patches
git_diff
Textualize__textual-4424
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Docs change - use `pane` instead of `tab` for an event listener on tab change We tried adding an event listener for a tab change using the docs here, but couldn't get it to work: https://textual.textualize.io...
diff --git a/src/textual/_on.py b/src/textual/_on.py --- a/src/textual/_on.py +++ b/src/textual/_on.py @@ -43,7 +43,7 @@ Example: ```python # Handle the activation of the tab "#home" within the `TabbedContent` "#tabs". - @on(TabbedContent.TabActivated, "#tabs", tab="#home") + @on(Ta...
{"golden_diff": "diff --git a/src/textual/_on.py b/src/textual/_on.py\n--- a/src/textual/_on.py\n+++ b/src/textual/_on.py\n@@ -43,7 +43,7 @@\n Example:\n ```python\n # Handle the activation of the tab \"#home\" within the `TabbedContent` \"#tabs\".\n- @on(TabbedContent.TabActivated, \"#tabs\"...
1,377
136
gh_patches_debug_9111
rasdani/github-patches
git_diff
e2nIEE__pandapower-291
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- fixed rundcpp with single bus network csr_matrix dimesions has to be specified explicitly. Issue #288 --- END ISSUE --- Below are some code segments, each from a relevant file. One or more of these file...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ author_email='leon.thurner@uni-kassel.de, alexander.scheidler@iee.fraunhofer.de', description='Convenient Power System Modelling and Analysis based on PYPOWER and pandas', long_description=long_description, - url='www.pan...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -21,7 +21,7 @@\n author_email='leon.thurner@uni-kassel.de, alexander.scheidler@iee.fraunhofer.de',\n description='Convenient Power System Modelling and Analysis based on PYPOWER and pandas',\n long_description=long_descrip...
841
141
gh_patches_debug_7187
rasdani/github-patches
git_diff
DataDog__dd-trace-py-4213
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Disabling intrument_middleware via code not working in Django ### Which version of dd-trace-py are you using? 1.1.2 ### Which version of pip are you using? 22.0.4 ### Which version of the librarie...
diff --git a/ddtrace/contrib/django/__init__.py b/ddtrace/contrib/django/__init__.py --- a/ddtrace/contrib/django/__init__.py +++ b/ddtrace/contrib/django/__init__.py @@ -29,6 +29,13 @@ Configuration ~~~~~~~~~~~~~ + +.. important:: + + Note that the in-code configuration must be run before Django is instrumented...
{"golden_diff": "diff --git a/ddtrace/contrib/django/__init__.py b/ddtrace/contrib/django/__init__.py\n--- a/ddtrace/contrib/django/__init__.py\n+++ b/ddtrace/contrib/django/__init__.py\n@@ -29,6 +29,13 @@\n \n Configuration\n ~~~~~~~~~~~~~\n+\n+.. important::\n+\n+ Note that the in-code configuration must be run be...
1,958
162
gh_patches_debug_1964
rasdani/github-patches
git_diff
kserve__kserve-1137
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Installed KFServing SDK 0.4 but getting import error while running the custom built image /kind bug **What steps did you take and what happened:** Run a custom built image with KFServing SDK 0.4. ``` Tr...
diff --git a/python/alibiexplainer/setup.py b/python/alibiexplainer/setup.py --- a/python/alibiexplainer/setup.py +++ b/python/alibiexplainer/setup.py @@ -32,6 +32,7 @@ python_requires='>=3.6', packages=find_packages("alibiexplainer"), install_requires=[ + "shap==0.35", "kfserving>=0.4.0"...
{"golden_diff": "diff --git a/python/alibiexplainer/setup.py b/python/alibiexplainer/setup.py\n--- a/python/alibiexplainer/setup.py\n+++ b/python/alibiexplainer/setup.py\n@@ -32,6 +32,7 @@\n python_requires='>=3.6',\n packages=find_packages(\"alibiexplainer\"),\n install_requires=[\n+ \"shap==0.35\",...
1,300
123
gh_patches_debug_53356
rasdani/github-patches
git_diff
facebookresearch__hydra-1887
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [Ray-Plugin] Add support for Python 3.9 Python 3.9 support depends on https://github.com/ray-project/ray/issues/12788 Related to #1062 --- END ISSUE --- Below are some code segments, each from a relevan...
diff --git a/plugins/hydra_ray_launcher/setup.py b/plugins/hydra_ray_launcher/setup.py --- a/plugins/hydra_ray_launcher/setup.py +++ b/plugins/hydra_ray_launcher/setup.py @@ -19,7 +19,7 @@ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3.7", "Programming Language...
{"golden_diff": "diff --git a/plugins/hydra_ray_launcher/setup.py b/plugins/hydra_ray_launcher/setup.py\n--- a/plugins/hydra_ray_launcher/setup.py\n+++ b/plugins/hydra_ray_launcher/setup.py\n@@ -19,7 +19,7 @@\n \"License :: OSI Approved :: MIT License\",\n \"Programming Language :: Python :: 3.7\",\n ...
705
135
gh_patches_debug_32967
rasdani/github-patches
git_diff
deepset-ai__haystack-5199
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Import utils fetch_archive_from_http url parsing URL format assumption **Describe the bug** The function `fetch_archive_from_http` from import utils makes the assumption that a URL ends with the file extensi...
diff --git a/haystack/utils/import_utils.py b/haystack/utils/import_utils.py --- a/haystack/utils/import_utils.py +++ b/haystack/utils/import_utils.py @@ -7,6 +7,8 @@ import importlib.util from pathlib import Path from typing import Optional, Dict, Union, Tuple, List +from urllib.parse import urlparse, unquote +from...
{"golden_diff": "diff --git a/haystack/utils/import_utils.py b/haystack/utils/import_utils.py\n--- a/haystack/utils/import_utils.py\n+++ b/haystack/utils/import_utils.py\n@@ -7,6 +7,8 @@\n import importlib.util\n from pathlib import Path\n from typing import Optional, Dict, Union, Tuple, List\n+from urllib.parse import...
1,846
452
gh_patches_debug_24241
rasdani/github-patches
git_diff
Mailu__Mailu-2144
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Cannot send email after upgrade to 1.9 `non DNSSEC destination` ## Before you open your issue - [x] Check if no issue or pull-request for this already exists. - [x] Check [documentation](https://mailu.io/ma...
diff --git a/core/admin/start.py b/core/admin/start.py --- a/core/admin/start.py +++ b/core/admin/start.py @@ -18,6 +18,34 @@ log.info("Creating initial admin accout %s@%s with mode %s",account,domain,mode) os.system("flask mailu admin %s %s '%s' --mode %s" % (account, domain, password, mode)) +def test_DNS...
{"golden_diff": "diff --git a/core/admin/start.py b/core/admin/start.py\n--- a/core/admin/start.py\n+++ b/core/admin/start.py\n@@ -18,6 +18,34 @@\n log.info(\"Creating initial admin accout %s@%s with mode %s\",account,domain,mode)\n os.system(\"flask mailu admin %s %s '%s' --mode %s\" % (account, domain, passwo...
1,339
407
gh_patches_debug_18079
rasdani/github-patches
git_diff
modin-project__modin-3016
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Document modin.experimental.sklearn This should include docstrings and purposes of everything inside modin.experimental.sklearn. --- END ISSUE --- Below are some code segments, each from a relevant file. On...
diff --git a/modin/experimental/sklearn/__init__.py b/modin/experimental/sklearn/__init__.py --- a/modin/experimental/sklearn/__init__.py +++ b/modin/experimental/sklearn/__init__.py @@ -10,3 +10,5 @@ # the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF # ANY KIND, either express or i...
{"golden_diff": "diff --git a/modin/experimental/sklearn/__init__.py b/modin/experimental/sklearn/__init__.py\n--- a/modin/experimental/sklearn/__init__.py\n+++ b/modin/experimental/sklearn/__init__.py\n@@ -10,3 +10,5 @@\n # the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF\n # ANY K...
703
261
gh_patches_debug_5648
rasdani/github-patches
git_diff
pydantic__pydantic-8341
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Upgrade ruff target version to Python 3.8 ### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description I deemed this as an action left out from [Dropping Python 3.7 Support](https://...
diff --git a/pydantic/plugin/_loader.py b/pydantic/plugin/_loader.py --- a/pydantic/plugin/_loader.py +++ b/pydantic/plugin/_loader.py @@ -1,16 +1,8 @@ from __future__ import annotations -import sys +import importlib.metadata as importlib_metadata import warnings -from typing import TYPE_CHECKING, Iterable - -from ...
{"golden_diff": "diff --git a/pydantic/plugin/_loader.py b/pydantic/plugin/_loader.py\n--- a/pydantic/plugin/_loader.py\n+++ b/pydantic/plugin/_loader.py\n@@ -1,16 +1,8 @@\n from __future__ import annotations\n \n-import sys\n+import importlib.metadata as importlib_metadata\n import warnings\n-from typing import TYPE_C...
1,215
151
gh_patches_debug_29702
rasdani/github-patches
git_diff
sunpy__sunpy-4901
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Simplify semi_circular_loop function in asdf coordinates example In the [example that shows how to save a coordinate into an asdf file](https://docs.sunpy.org/en/stable/generated/gallery/saving_and_loading_da...
diff --git a/examples/saving_and_loading_data/coordinates_in_asdf.py b/examples/saving_and_loading_data/coordinates_in_asdf.py --- a/examples/saving_and_loading_data/coordinates_in_asdf.py +++ b/examples/saving_and_loading_data/coordinates_in_asdf.py @@ -20,7 +20,6 @@ import matplotlib.pyplot as plt import numpy as...
{"golden_diff": "diff --git a/examples/saving_and_loading_data/coordinates_in_asdf.py b/examples/saving_and_loading_data/coordinates_in_asdf.py\n--- a/examples/saving_and_loading_data/coordinates_in_asdf.py\n+++ b/examples/saving_and_loading_data/coordinates_in_asdf.py\n@@ -20,7 +20,6 @@\n \n import matplotlib.pyplot a...
1,806
578
gh_patches_debug_17372
rasdani/github-patches
git_diff
sublimelsp__LSP-1142
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Provide a context key to check if LSP has a specific capability <del> Possible use case of the context key is to define custom keybind for go to definitions. With the context key, it allows me to bind `supe...
diff --git a/plugin/core/documents.py b/plugin/core/documents.py --- a/plugin/core/documents.py +++ b/plugin/core/documents.py @@ -126,10 +126,14 @@ def on_close(self) -> None: self._clear_async() - def on_query_context(self, key: str, operator: str, operand: Any, match_all: bool) -> bool: - c...
{"golden_diff": "diff --git a/plugin/core/documents.py b/plugin/core/documents.py\n--- a/plugin/core/documents.py\n+++ b/plugin/core/documents.py\n@@ -126,10 +126,14 @@\n def on_close(self) -> None:\n self._clear_async()\n \n- def on_query_context(self, key: str, operator: str, operand: Any, match_all: b...
1,828
257
gh_patches_debug_11234
rasdani/github-patches
git_diff
Mailu__Mailu-1184
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Mailu 1.7 : Issue when moving mail to the Junk folder When I move a mail to the Junk Folder, i see the following in the logs: imap_1 | Sep 22 16:51:26 imap: Error: cannot stat file mailu imap_1 ...
diff --git a/core/dovecot/start.py b/core/dovecot/start.py --- a/core/dovecot/start.py +++ b/core/dovecot/start.py @@ -31,6 +31,12 @@ for dovecot_file in glob.glob("/conf/*.conf"): conf.jinja(dovecot_file, os.environ, os.path.join("/etc/dovecot", os.path.basename(dovecot_file))) +os.makedirs("/conf/bin", exist_...
{"golden_diff": "diff --git a/core/dovecot/start.py b/core/dovecot/start.py\n--- a/core/dovecot/start.py\n+++ b/core/dovecot/start.py\n@@ -31,6 +31,12 @@\n for dovecot_file in glob.glob(\"/conf/*.conf\"):\n conf.jinja(dovecot_file, os.environ, os.path.join(\"/etc/dovecot\", os.path.basename(dovecot_file)))\n \n+os....
982
196
gh_patches_debug_2118
rasdani/github-patches
git_diff
mdn__kuma-6978
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- SystemError: <method 'get' of 'dict' objects> returned a result with an error set https://sentry.prod.mozaws.net/operations/mdn-prod/issues/6659909/ ``` timeout: timeout SystemError: <method 'get' of 'di...
diff --git a/kuma/wiki/views/misc.py b/kuma/wiki/views/misc.py --- a/kuma/wiki/views/misc.py +++ b/kuma/wiki/views/misc.py @@ -84,7 +84,7 @@ # Generates a list of acceptable docs docs_list = [] - for doc in docs: + for doc in docs[:100]: data = doc.get_json_data() data["label"] += " ...
{"golden_diff": "diff --git a/kuma/wiki/views/misc.py b/kuma/wiki/views/misc.py\n--- a/kuma/wiki/views/misc.py\n+++ b/kuma/wiki/views/misc.py\n@@ -84,7 +84,7 @@\n \n # Generates a list of acceptable docs\n docs_list = []\n- for doc in docs:\n+ for doc in docs[:100]:\n data = doc.get_json_data()\n ...
1,187
109
gh_patches_debug_50138
rasdani/github-patches
git_diff
archlinux__archinstall-1322
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Please remove packagekit from GNOME profile Speaking as the maintainer of GNOME on Arch, please remove packagekit from the `gnome` profile. It's split out from the rest of gnome-software for a reason - pac...
diff --git a/profiles/gnome.py b/profiles/gnome.py --- a/profiles/gnome.py +++ b/profiles/gnome.py @@ -8,8 +8,7 @@ __packages__ = [ "gnome", "gnome-tweaks", - "gdm", - "gnome-software-packagekit-plugin", + "gdm" ] diff --git a/profiles/kde.py b/profiles/kde.py --- a/profiles/kde.py +++ b/profiles/kde.py @@ -1...
{"golden_diff": "diff --git a/profiles/gnome.py b/profiles/gnome.py\n--- a/profiles/gnome.py\n+++ b/profiles/gnome.py\n@@ -8,8 +8,7 @@\n __packages__ = [\n \t\"gnome\",\n \t\"gnome-tweaks\",\n-\t\"gdm\",\n-\t\"gnome-software-packagekit-plugin\",\n+\t\"gdm\"\n ]\n \n \ndiff --git a/profiles/kde.py b/profiles/kde.py\n---...
1,384
173
gh_patches_debug_18126
rasdani/github-patches
git_diff
scoutapp__scout_apm_python-504
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Support Django BASE_DIR being a pathlib.Path As per [my blog post today](https://adamj.eu/tech/2020/03/16/use-pathlib-in-your-django-project/), this is changing in Django 3.1 but users may already be changing...
diff --git a/src/scout_apm/django/apps.py b/src/scout_apm/django/apps.py --- a/src/scout_apm/django/apps.py +++ b/src/scout_apm/django/apps.py @@ -38,8 +38,10 @@ self.on_setting_changed(name) def on_setting_changed(self, setting, **kwargs): + cast = None if setting == "BASE_DIR": ...
{"golden_diff": "diff --git a/src/scout_apm/django/apps.py b/src/scout_apm/django/apps.py\n--- a/src/scout_apm/django/apps.py\n+++ b/src/scout_apm/django/apps.py\n@@ -38,8 +38,10 @@\n self.on_setting_changed(name)\n \n def on_setting_changed(self, setting, **kwargs):\n+ cast = None\n if s...
1,354
199
gh_patches_debug_19527
rasdani/github-patches
git_diff
twisted__twisted-512
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- twisted.internet._ssl is unused and can be deleted |[<img alt="alex's avatar" src="https://avatars.githubusercontent.com/u/772?s=50" width="50" height="50">](https://github.com/alex)| @alex reported| |-|-| |T...
diff --git a/src/twisted/internet/_ssl.py b/src/twisted/internet/_ssl.py deleted file mode 100644 --- a/src/twisted/internet/_ssl.py +++ /dev/null @@ -1,32 +0,0 @@ -# -*- test-case-name: twisted.test.test_ssl -*- -# Copyright (c) Twisted Matrix Laboratories. -# See LICENSE for details. - -""" -This module implements he...
{"golden_diff": "diff --git a/src/twisted/internet/_ssl.py b/src/twisted/internet/_ssl.py\ndeleted file mode 100644\n--- a/src/twisted/internet/_ssl.py\n+++ /dev/null\n@@ -1,32 +0,0 @@\n-# -*- test-case-name: twisted.test.test_ssl -*-\n-# Copyright (c) Twisted Matrix Laboratories.\n-# See LICENSE for details.\n-\n-\"\"...
867
358
gh_patches_debug_5035
rasdani/github-patches
git_diff
wagtail__wagtail-1019
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Remove built dependencies This commit removes libsass and Pillow from the setup.py dependency list. This greatly improves install performance and also means that the basic Wagtail installation is pure-python ...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -30,11 +30,9 @@ install_requires = [ "Django>=1.7.0,<1.8", "django-compressor>=1.4", - "django-libsass>=0.2", "django-modelcluster>=0.5", "django-taggit==0.12.2", "django-treebeard==3.0", - "Pillow>=2.6.1", "beautiful...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -30,11 +30,9 @@\n install_requires = [\n \"Django>=1.7.0,<1.8\",\n \"django-compressor>=1.4\",\n- \"django-libsass>=0.2\",\n \"django-modelcluster>=0.5\",\n \"django-taggit==0.12.2\",\n \"django-treebeard==3.0\"...
1,120
158
gh_patches_debug_30697
rasdani/github-patches
git_diff
Pyomo__pyomo-996
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- TranformationFactory('core.fix_discrete') doesn't work for cloned models # Summary I have noticed that often times `TransformationFactory('core.fix_discrete')` doesn't work for a model, i.e. it doesn't actua...
diff --git a/pyomo/core/plugins/transform/discrete_vars.py b/pyomo/core/plugins/transform/discrete_vars.py --- a/pyomo/core/plugins/transform/discrete_vars.py +++ b/pyomo/core/plugins/transform/discrete_vars.py @@ -95,26 +95,29 @@ # # This transformation fixes known discrete domains to their current values # -@Trans...
{"golden_diff": "diff --git a/pyomo/core/plugins/transform/discrete_vars.py b/pyomo/core/plugins/transform/discrete_vars.py\n--- a/pyomo/core/plugins/transform/discrete_vars.py\n+++ b/pyomo/core/plugins/transform/discrete_vars.py\n@@ -95,26 +95,29 @@\n #\n # This transformation fixes known discrete domains to their cur...
1,873
405
gh_patches_debug_32672
rasdani/github-patches
git_diff
encode__uvicorn-591
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Proxy Middleware grabs the last IP in `x-forwarded-for`, not the first https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For says the first IP in is a client IP, but ProxyHeadersMiddleware...
diff --git a/uvicorn/middleware/proxy_headers.py b/uvicorn/middleware/proxy_headers.py --- a/uvicorn/middleware/proxy_headers.py +++ b/uvicorn/middleware/proxy_headers.py @@ -8,17 +8,28 @@ https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers#Proxies """ +from typing import List class ProxyHeadersMiddlewar...
{"golden_diff": "diff --git a/uvicorn/middleware/proxy_headers.py b/uvicorn/middleware/proxy_headers.py\n--- a/uvicorn/middleware/proxy_headers.py\n+++ b/uvicorn/middleware/proxy_headers.py\n@@ -8,17 +8,28 @@\n \n https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers#Proxies\n \"\"\"\n+from typing import List\n \n ...
911
461
gh_patches_debug_29773
rasdani/github-patches
git_diff
streamlink__streamlink-3940
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- plugins.euronews: www.euronews.com and ru.euronews.com provide different APIs ### Checklist - [X] This is a plugin issue and not a different kind of issue - [X] [I have read the contribution guidelines](http...
diff --git a/src/streamlink/plugins/euronews.py b/src/streamlink/plugins/euronews.py --- a/src/streamlink/plugins/euronews.py +++ b/src/streamlink/plugins/euronews.py @@ -3,14 +3,17 @@ from streamlink.plugin import Plugin, pluginmatcher from streamlink.plugin.api import validate -from streamlink.plugin.api.utils im...
{"golden_diff": "diff --git a/src/streamlink/plugins/euronews.py b/src/streamlink/plugins/euronews.py\n--- a/src/streamlink/plugins/euronews.py\n+++ b/src/streamlink/plugins/euronews.py\n@@ -3,14 +3,17 @@\n \n from streamlink.plugin import Plugin, pluginmatcher\n from streamlink.plugin.api import validate\n-from stream...
1,125
444
gh_patches_debug_8386
rasdani/github-patches
git_diff
WeblateOrg__weblate-1471
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Provide example hooks in pip installations ### Steps to reproduce 1. `pip install Weblate` 2. `ls path/to/site-packages/weblate` ### Actual behaviour Example hooks are missing. We have to download the e...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -32,6 +32,11 @@ with open('requirements.txt') as requirements: REQUIRES = requirements.read().splitlines() +DATA_FILES = [ + ('share/weblate/' + root, [os.path.join(root, f) for f in files]) + for root, dirs, files in os.walk('examples') +]...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -32,6 +32,11 @@\n with open('requirements.txt') as requirements:\n REQUIRES = requirements.read().splitlines()\n \n+DATA_FILES = [\n+ ('share/weblate/' + root, [os.path.join(root, f) for f in files])\n+ for root, dirs, files...
1,670
155
gh_patches_debug_52237
rasdani/github-patches
git_diff
easybuilders__easybuild-framework-3584
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- -lpthtread is missing from $LIBBLAS_MT when building with the `foss` toolchain, I noticed that `$LIBBLAS_MT` is defined identical to `$LIBBLAS` as `-lopenblas -lgfortran` we should make sure `-lpthread` is...
diff --git a/easybuild/toolchains/linalg/openblas.py b/easybuild/toolchains/linalg/openblas.py --- a/easybuild/toolchains/linalg/openblas.py +++ b/easybuild/toolchains/linalg/openblas.py @@ -40,6 +40,7 @@ """ BLAS_MODULE_NAME = ['OpenBLAS'] BLAS_LIB = ['openblas'] + BLAS_LIB_MT = ['openblas'] BLA...
{"golden_diff": "diff --git a/easybuild/toolchains/linalg/openblas.py b/easybuild/toolchains/linalg/openblas.py\n--- a/easybuild/toolchains/linalg/openblas.py\n+++ b/easybuild/toolchains/linalg/openblas.py\n@@ -40,6 +40,7 @@\n \"\"\"\n BLAS_MODULE_NAME = ['OpenBLAS']\n BLAS_LIB = ['openblas']\n+ BLAS_LIB...
825
119
gh_patches_debug_25082
rasdani/github-patches
git_diff
Zeroto521__my-data-toolkit-615
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- MAINT: Set only positional parameter for `(geo)accessor` <!-- Thanks for contributing a pull request! Please follow these standard acronyms to start the commit message: - ENH: enhancement - BUG: bug f...
diff --git a/dtoolkit/accessor/dataframe/repeat.py b/dtoolkit/accessor/dataframe/repeat.py --- a/dtoolkit/accessor/dataframe/repeat.py +++ b/dtoolkit/accessor/dataframe/repeat.py @@ -10,7 +10,7 @@ @register_dataframe_method def repeat( df: pd.DataFrame, - repeat: int | list[int], + repeats: int | list[int]...
{"golden_diff": "diff --git a/dtoolkit/accessor/dataframe/repeat.py b/dtoolkit/accessor/dataframe/repeat.py\n--- a/dtoolkit/accessor/dataframe/repeat.py\n+++ b/dtoolkit/accessor/dataframe/repeat.py\n@@ -10,7 +10,7 @@\n @register_dataframe_method\n def repeat(\n df: pd.DataFrame,\n- repeat: int | list[int],\n+ ...
1,263
342
gh_patches_debug_4871
rasdani/github-patches
git_diff
ansible__molecule-3521
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Missing `f` prefix on f-strings Some strings looks like they're meant to be f-strings but are missing the `f` prefix meaning variable interpolation won't happen. https://github.com/ansible-community/molecule...
diff --git a/src/molecule/scenarios.py b/src/molecule/scenarios.py --- a/src/molecule/scenarios.py +++ b/src/molecule/scenarios.py @@ -82,7 +82,7 @@ for scenario in self.all: if scenario.name == scenario_name: return [action for action in scenario.sequence] - raise RuntimeE...
{"golden_diff": "diff --git a/src/molecule/scenarios.py b/src/molecule/scenarios.py\n--- a/src/molecule/scenarios.py\n+++ b/src/molecule/scenarios.py\n@@ -82,7 +82,7 @@\n for scenario in self.all:\n if scenario.name == scenario_name:\n return [action for action in scenario.sequence]\...
1,768
115
gh_patches_debug_2101
rasdani/github-patches
git_diff
carpentries__amy-2028
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Update colors of progress states The current color scheme for our progress states makes it hard to know when something needs further attention and when it does not. Previously we had three colors: Red-Failed,...
diff --git a/amy/workshops/templatetags/training_progress.py b/amy/workshops/templatetags/training_progress.py --- a/amy/workshops/templatetags/training_progress.py +++ b/amy/workshops/templatetags/training_progress.py @@ -18,7 +18,7 @@ switch = { "n": "warning", "f": "danger", - ...
{"golden_diff": "diff --git a/amy/workshops/templatetags/training_progress.py b/amy/workshops/templatetags/training_progress.py\n--- a/amy/workshops/templatetags/training_progress.py\n+++ b/amy/workshops/templatetags/training_progress.py\n@@ -18,7 +18,7 @@\n switch = {\n \"n\": \"warning\",\n ...
801
128
gh_patches_debug_34161
rasdani/github-patches
git_diff
ytdl-org__youtube-dl-3042
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- youtube-dl bug due to new ARD layout youtube-dl --verbose http://www.ardmediathek.de/tv/14-Tageb%C3%BCcher-des-Ersten-Weltkriegs/Folge-4-Die-Entscheidung/Das-Erste/Video?documentId=21568646&bcastId=20282330 ...
diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py --- a/youtube_dl/extractor/ard.py +++ b/youtube_dl/extractor/ard.py @@ -39,16 +39,18 @@ title = self._html_search_regex( [r'<h1(?:\s+class="boxTopHeadline")?>(.*?)</h1>', + r'<meta name="dcterms.title" content="(....
{"golden_diff": "diff --git a/youtube_dl/extractor/ard.py b/youtube_dl/extractor/ard.py\n--- a/youtube_dl/extractor/ard.py\n+++ b/youtube_dl/extractor/ard.py\n@@ -39,16 +39,18 @@\n \n title = self._html_search_regex(\n [r'<h1(?:\\s+class=\"boxTopHeadline\")?>(.*?)</h1>',\n+ r'<meta name=...
2,039
591
gh_patches_debug_11216
rasdani/github-patches
git_diff
OCA__server-tools-75
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [7.0] [base_optional_quick_create] AttributeError: 'NoneType' object has no attribute 'name_create' Error at starting before a migration if a model has been removed --- END ISSUE --- Below are some code se...
diff --git a/base_optional_quick_create/model.py b/base_optional_quick_create/model.py --- a/base_optional_quick_create/model.py +++ b/base_optional_quick_create/model.py @@ -44,7 +44,7 @@ if model.avoid_quick_create: model_name = model.model model_obj = self.pool.get(mode...
{"golden_diff": "diff --git a/base_optional_quick_create/model.py b/base_optional_quick_create/model.py\n--- a/base_optional_quick_create/model.py\n+++ b/base_optional_quick_create/model.py\n@@ -44,7 +44,7 @@\n if model.avoid_quick_create:\n model_name = model.model\n model_o...
962
132
gh_patches_debug_53573
rasdani/github-patches
git_diff
yt-project__yt-2663
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- RecursionError while loading enzo_p dataset with cosmology ### Bug report **Bug summary** Loading a cosmological Enzo_p dataset raises `RecursionError` **Code for reproduction** ```python from yt...
diff --git a/yt/frontends/enzo_p/fields.py b/yt/frontends/enzo_p/fields.py --- a/yt/frontends/enzo_p/fields.py +++ b/yt/frontends/enzo_p/fields.py @@ -69,7 +69,7 @@ val = constants[names.index("mass")][2] val = self.ds.quan(val, self.ds.mass_unit) if self.ds.cosmological_simulatio...
{"golden_diff": "diff --git a/yt/frontends/enzo_p/fields.py b/yt/frontends/enzo_p/fields.py\n--- a/yt/frontends/enzo_p/fields.py\n+++ b/yt/frontends/enzo_p/fields.py\n@@ -69,7 +69,7 @@\n val = constants[names.index(\"mass\")][2]\n val = self.ds.quan(val, self.ds.mass_unit)\n if self....
1,941
145
gh_patches_debug_33358
rasdani/github-patches
git_diff
vaexio__vaex-1299
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Displaying full integers instead of scientific notiation when printing out Vaex HDF5 data Hi, Can you help me: my code: `myfile = vaex.open('myfile.hdf5')` `myfile['customer_id']` output: `Length: 4,2...
diff --git a/packages/vaex-core/vaex/formatting.py b/packages/vaex-core/vaex/formatting.py --- a/packages/vaex-core/vaex/formatting.py +++ b/packages/vaex-core/vaex/formatting.py @@ -8,25 +8,32 @@ MAX_LENGTH = 50 +def _trim_string(value): + if len(value) > MAX_LENGTH: + value = repr(value[:MAX_LENGTH-3])...
{"golden_diff": "diff --git a/packages/vaex-core/vaex/formatting.py b/packages/vaex-core/vaex/formatting.py\n--- a/packages/vaex-core/vaex/formatting.py\n+++ b/packages/vaex-core/vaex/formatting.py\n@@ -8,25 +8,32 @@\n MAX_LENGTH = 50\n \n \n+def _trim_string(value):\n+ if len(value) > MAX_LENGTH:\n+ value = ...
926
562
gh_patches_debug_26582
rasdani/github-patches
git_diff
akvo__akvo-rsr-1741
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Prevent automatic publishing of projects ## Test plan GIVEN a project that is going to be published WHEN the project is published THEN a notification mail will be sent to Kasper ## Issue description Somehow...
diff --git a/akvo/rsr/models/publishing_status.py b/akvo/rsr/models/publishing_status.py --- a/akvo/rsr/models/publishing_status.py +++ b/akvo/rsr/models/publishing_status.py @@ -4,8 +4,12 @@ # See more details in the license.txt file located at the root folder of the Akvo RSR module. # For additional details on the ...
{"golden_diff": "diff --git a/akvo/rsr/models/publishing_status.py b/akvo/rsr/models/publishing_status.py\n--- a/akvo/rsr/models/publishing_status.py\n+++ b/akvo/rsr/models/publishing_status.py\n@@ -4,8 +4,12 @@\n # See more details in the license.txt file located at the root folder of the Akvo RSR module.\n # For addi...
1,697
351
gh_patches_debug_4692
rasdani/github-patches
git_diff
watchdogpolska__feder-322
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- brak zapytań w zakładce SQL w Django debug toolbar ![image](https://user-images.githubusercontent.com/1237985/30499623-9559ddcc-9a5b-11e7-8225-0d7f6786960b.png) --- END ISSUE --- Below are some code segm...
diff --git a/config/settings/local.py b/config/settings/local.py --- a/config/settings/local.py +++ b/config/settings/local.py @@ -40,7 +40,7 @@ # django-debug-toolbar # ------------------------------------------------------------------------------ -MIDDLEWARE_CLASSES += ('debug_toolbar.middleware.DebugToolbarMiddl...
{"golden_diff": "diff --git a/config/settings/local.py b/config/settings/local.py\n--- a/config/settings/local.py\n+++ b/config/settings/local.py\n@@ -40,7 +40,7 @@\n \n # django-debug-toolbar\n # ------------------------------------------------------------------------------\n-MIDDLEWARE_CLASSES += ('debug_toolbar.midd...
919
111
gh_patches_debug_1380
rasdani/github-patches
git_diff
alltheplaces__alltheplaces-4633
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Dunelm spider output is missing 41 branches (dunelm_gb) The Dunelm spider dunelm_gb is consistently returning 138 branches for the last few weeks. However, Dunelm's own online store-finder at https://www.dune...
diff --git a/locations/spiders/dunelm_gb.py b/locations/spiders/dunelm_gb.py --- a/locations/spiders/dunelm_gb.py +++ b/locations/spiders/dunelm_gb.py @@ -37,7 +37,6 @@ item["opening_hours"] = oh.as_opening_hours() - item["email"] = store["email"] item["extras"] = {"storeType": ...
{"golden_diff": "diff --git a/locations/spiders/dunelm_gb.py b/locations/spiders/dunelm_gb.py\n--- a/locations/spiders/dunelm_gb.py\n+++ b/locations/spiders/dunelm_gb.py\n@@ -37,7 +37,6 @@\n \n item[\"opening_hours\"] = oh.as_opening_hours()\n \n- item[\"email\"] = store[\"email\"]\n ...
1,132
107
gh_patches_debug_23682
rasdani/github-patches
git_diff
sunpy__sunpy-3960
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Remove sunpy.instr.aia.aiaprep The `aiaprep` function should be removed from the `sunpy.instr` subpackage. Any AIA specific functionality should transition to the new [`aiapy` package](https://gitlab.com/LMSA...
diff --git a/sunpy/instr/aia.py b/sunpy/instr/aia.py --- a/sunpy/instr/aia.py +++ b/sunpy/instr/aia.py @@ -7,10 +7,13 @@ import astropy.units as u from sunpy.map.sources.sdo import AIAMap, HMIMap +from sunpy.util.decorators import deprecated __all__ = ['aiaprep'] +@deprecated("2.0", alternative="`register` i...
{"golden_diff": "diff --git a/sunpy/instr/aia.py b/sunpy/instr/aia.py\n--- a/sunpy/instr/aia.py\n+++ b/sunpy/instr/aia.py\n@@ -7,10 +7,13 @@\n import astropy.units as u\n \n from sunpy.map.sources.sdo import AIAMap, HMIMap\n+from sunpy.util.decorators import deprecated\n \n __all__ = ['aiaprep']\n \n \n+@deprecated(\"2...
1,251
329
gh_patches_debug_1436
rasdani/github-patches
git_diff
microsoft__botbuilder-python-1303
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Bump azure-cosmos to v3.2.0 **Is your feature request related to a problem? Please describe.** We're currently on `azure-cosmos` v3.1.2. Not a ton of changes in 3.2.0, but it looks like it will be their la...
diff --git a/libraries/botbuilder-azure/setup.py b/libraries/botbuilder-azure/setup.py --- a/libraries/botbuilder-azure/setup.py +++ b/libraries/botbuilder-azure/setup.py @@ -5,7 +5,7 @@ from setuptools import setup REQUIRES = [ - "azure-cosmos==3.1.2", + "azure-cosmos==3.2.0", "azure-storage-blob==2.1.0...
{"golden_diff": "diff --git a/libraries/botbuilder-azure/setup.py b/libraries/botbuilder-azure/setup.py\n--- a/libraries/botbuilder-azure/setup.py\n+++ b/libraries/botbuilder-azure/setup.py\n@@ -5,7 +5,7 @@\n from setuptools import setup\n \n REQUIRES = [\n- \"azure-cosmos==3.1.2\",\n+ \"azure-cosmos==3.2.0\",\n ...
908
135
gh_patches_debug_18572
rasdani/github-patches
git_diff
bookwyrm-social__bookwyrm-2130
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- should be able to see logged-in user's following/followers **Describe the bug** if i click on the following users (https://ziurkes.group.lt/user/athinkingmeat/following) - i get 403 page, which is not expect...
diff --git a/bookwyrm/views/user.py b/bookwyrm/views/user.py --- a/bookwyrm/views/user.py +++ b/bookwyrm/views/user.py @@ -106,7 +106,7 @@ if is_api_request(request): return ActivitypubResponse(user.to_followers_activity(**request.GET)) - if user.hide_follows: + if user.hide_follow...
{"golden_diff": "diff --git a/bookwyrm/views/user.py b/bookwyrm/views/user.py\n--- a/bookwyrm/views/user.py\n+++ b/bookwyrm/views/user.py\n@@ -106,7 +106,7 @@\n if is_api_request(request):\n return ActivitypubResponse(user.to_followers_activity(**request.GET))\n \n- if user.hide_follows:\n+ ...
1,949
190
gh_patches_debug_365
rasdani/github-patches
git_diff
pypa__pipenv-5495
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Include missing package data for Safety ### The issue #5491 ### The fix Include the missing package data for Safety. ### The checklist * [ ] Build wheels and test if it is working fine. <!-...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ "w32.exe", "w64.exe", ], + "pipenv.vendor.ruamel": ["yaml"], }, python_requires=">=3.7", zip_safe=True,
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -67,6 +67,7 @@\n \"w32.exe\",\n \"w64.exe\",\n ],\n+ \"pipenv.vendor.ruamel\": [\"yaml\"],\n },\n python_requires=\">=3.7\",\n zip_safe=True,\n", "issue": "Include missing package dat...
1,346
76
gh_patches_debug_2459
rasdani/github-patches
git_diff
microsoft__botbuilder-python-1190
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- No module named 'botbuilder.ai.qna.dialogs' - Python QnA Sample 49 ## Version botbuilder-ai - 4.9.1 ## Describe the bug I was trying out the QnA Maker Sample - 49.qnamaker-all-features . I've configured ...
diff --git a/libraries/botbuilder-ai/setup.py b/libraries/botbuilder-ai/setup.py --- a/libraries/botbuilder-ai/setup.py +++ b/libraries/botbuilder-ai/setup.py @@ -39,6 +39,7 @@ "botbuilder.ai.luis", "botbuilder.ai.qna.models", "botbuilder.ai.qna.utils", + "botbuilder.ai.qna.dialogs", ...
{"golden_diff": "diff --git a/libraries/botbuilder-ai/setup.py b/libraries/botbuilder-ai/setup.py\n--- a/libraries/botbuilder-ai/setup.py\n+++ b/libraries/botbuilder-ai/setup.py\n@@ -39,6 +39,7 @@\n \"botbuilder.ai.luis\",\n \"botbuilder.ai.qna.models\",\n \"botbuilder.ai.qna.utils\",\n+ ...
987
120
gh_patches_debug_60755
rasdani/github-patches
git_diff
MTES-MCT__aides-territoires-174
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Mauvais article et mauvaise casse pour message d'erreur sur adresse mail Sur la page `/comptes/connexion/`, on voit : ``` Saisissez un Adresse e-mail… ``` Alors que l'on devrait avoir : ``` Sais...
diff --git a/src/accounts/forms.py b/src/accounts/forms.py --- a/src/accounts/forms.py +++ b/src/accounts/forms.py @@ -39,6 +39,13 @@ class LoginForm(AuthenticationForm): + error_messages = { + 'invalid_login': _( + 'Please enter a correct email address and password.' + ), + 'ina...
{"golden_diff": "diff --git a/src/accounts/forms.py b/src/accounts/forms.py\n--- a/src/accounts/forms.py\n+++ b/src/accounts/forms.py\n@@ -39,6 +39,13 @@\n \n \n class LoginForm(AuthenticationForm):\n+ error_messages = {\n+ 'invalid_login': _(\n+ 'Please enter a correct email address and password.'...
1,682
110
gh_patches_debug_35502
rasdani/github-patches
git_diff
rasterio__rasterio-457
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Add a function to easily display a matotlib histogram in rio-insp See #455 for background Might be useful to surface this both in `rio insp` and as `rasterio.show_histogram()`. --- END ISSUE --- Below ar...
diff --git a/rasterio/tool.py b/rasterio/tool.py --- a/rasterio/tool.py +++ b/rasterio/tool.py @@ -11,6 +11,7 @@ import numpy import rasterio +from rasterio.five import zip_longest logger = logging.getLogger('rasterio') @@ -48,6 +49,76 @@ return Stats(numpy.min(arr), numpy.max(arr), numpy.mean(arr)) +...
{"golden_diff": "diff --git a/rasterio/tool.py b/rasterio/tool.py\n--- a/rasterio/tool.py\n+++ b/rasterio/tool.py\n@@ -11,6 +11,7 @@\n import numpy\n \n import rasterio\n+from rasterio.five import zip_longest\n \n \n logger = logging.getLogger('rasterio')\n@@ -48,6 +49,76 @@\n return Stats(numpy.min(arr), numpy.max...
802
745
gh_patches_debug_36267
rasdani/github-patches
git_diff
liberapay__liberapay.com-129
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Fix sign-in We seem to have a problem with old cookies from a different account preventing log in. Goal page is not accessible once connected "405 Method Not Allowed" on this page https://liberapay.com/unis...
diff --git a/liberapay/security/authentication.py b/liberapay/security/authentication.py --- a/liberapay/security/authentication.py +++ b/liberapay/security/authentication.py @@ -19,12 +19,15 @@ ANON = _ANON() -def sign_in(request, state): +def sign_in_with_form_data(request, state): try: body = requ...
{"golden_diff": "diff --git a/liberapay/security/authentication.py b/liberapay/security/authentication.py\n--- a/liberapay/security/authentication.py\n+++ b/liberapay/security/authentication.py\n@@ -19,12 +19,15 @@\n ANON = _ANON()\n \n \n-def sign_in(request, state):\n+def sign_in_with_form_data(request, state):\n ...
1,276
564
gh_patches_debug_18954
rasdani/github-patches
git_diff
conan-io__conan-center-index-9784
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [request] imgui/any. "Docking" feature ### Package Details * Package Name/Version: **imgui/any** * Homepage: **https://github.com/ocornut/imgui** There is a feature "Docking" in this library that liv...
diff --git a/recipes/imgui/all/conanfile.py b/recipes/imgui/all/conanfile.py --- a/recipes/imgui/all/conanfile.py +++ b/recipes/imgui/all/conanfile.py @@ -1,5 +1,6 @@ from conans import ConanFile, CMake, tools import os +import re required_conan_version = ">=1.33.0" @@ -55,9 +56,11 @@ def package(self): ...
{"golden_diff": "diff --git a/recipes/imgui/all/conanfile.py b/recipes/imgui/all/conanfile.py\n--- a/recipes/imgui/all/conanfile.py\n+++ b/recipes/imgui/all/conanfile.py\n@@ -1,5 +1,6 @@\n from conans import ConanFile, CMake, tools\n import os\n+import re\n \n required_conan_version = \">=1.33.0\"\n \n@@ -55,9 +56,11 @...
1,128
264
gh_patches_debug_26771
rasdani/github-patches
git_diff
searx__searx-3472
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- remove distutils usage In Python 3.10 and 3.11, distutils has been formally marked as deprecated. Code that imports distutils will no longer work from Python 3.12. `searx_extra/update/update_firefox_versio...
diff --git a/searx_extra/update/update_firefox_version.py b/searx_extra/update/update_firefox_version.py --- a/searx_extra/update/update_firefox_version.py +++ b/searx_extra/update/update_firefox_version.py @@ -5,7 +5,7 @@ import re from os.path import dirname, join from urllib.parse import urlparse, urljoin -from d...
{"golden_diff": "diff --git a/searx_extra/update/update_firefox_version.py b/searx_extra/update/update_firefox_version.py\n--- a/searx_extra/update/update_firefox_version.py\n+++ b/searx_extra/update/update_firefox_version.py\n@@ -5,7 +5,7 @@\n import re\n from os.path import dirname, join\n from urllib.parse import ur...
1,021
304
gh_patches_debug_60668
rasdani/github-patches
git_diff
hydroshare__hydroshare-2260
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Rename userInfo/ API endpoint to user/ Placeholder ticket --- END ISSUE --- Below are some code segments, each from a relevant file. One or more of these files may contain bugs. --- BEGIN FILES --- Path: `h...
diff --git a/hs_rest_api/urls.py b/hs_rest_api/urls.py --- a/hs_rest_api/urls.py +++ b/hs_rest_api/urls.py @@ -119,6 +119,9 @@ views.resource_rest_api.CheckTaskStatus.as_view(), name='get_task_status'), + url(r'^user/$', + views.user_rest_api.UserInfo.as_view(), name='get_logged_in_user_in...
{"golden_diff": "diff --git a/hs_rest_api/urls.py b/hs_rest_api/urls.py\n--- a/hs_rest_api/urls.py\n+++ b/hs_rest_api/urls.py\n@@ -119,6 +119,9 @@\n views.resource_rest_api.CheckTaskStatus.as_view(),\n name='get_task_status'),\n \n+ url(r'^user/$',\n+ views.user_rest_api.UserInfo.as_view(), na...
1,820
124
gh_patches_debug_22803
rasdani/github-patches
git_diff
python-poetry__poetry-6191
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Include strtobool in utils.extras to speed up the shell command # Pull Request Check List <!-- This is just a reminder about the most common mistakes. Please make sure that you tick all *appropriate* boxes...
diff --git a/src/poetry/console/commands/shell.py b/src/poetry/console/commands/shell.py --- a/src/poetry/console/commands/shell.py +++ b/src/poetry/console/commands/shell.py @@ -2,7 +2,6 @@ import sys -from distutils.util import strtobool from os import environ from typing import TYPE_CHECKING from typing impo...
{"golden_diff": "diff --git a/src/poetry/console/commands/shell.py b/src/poetry/console/commands/shell.py\n--- a/src/poetry/console/commands/shell.py\n+++ b/src/poetry/console/commands/shell.py\n@@ -2,7 +2,6 @@\n \n import sys\n \n-from distutils.util import strtobool\n from os import environ\n from typing import TYPE_...
1,052
297
gh_patches_debug_59502
rasdani/github-patches
git_diff
Lightning-AI__pytorch-lightning-579
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Using print_nan_grads in the Trainer results in an error **Describe the bug** When using ``` print_nan_grads=True ``` in the Trainer, I am getting the error below. trainer.fit(lstm_model) File "/U...
diff --git a/pytorch_lightning/trainer/training_tricks_mixin.py b/pytorch_lightning/trainer/training_tricks_mixin.py --- a/pytorch_lightning/trainer/training_tricks_mixin.py +++ b/pytorch_lightning/trainer/training_tricks_mixin.py @@ -13,7 +13,7 @@ def print_nan_gradients(self): model = self.get_model() ...
{"golden_diff": "diff --git a/pytorch_lightning/trainer/training_tricks_mixin.py b/pytorch_lightning/trainer/training_tricks_mixin.py\n--- a/pytorch_lightning/trainer/training_tricks_mixin.py\n+++ b/pytorch_lightning/trainer/training_tricks_mixin.py\n@@ -13,7 +13,7 @@\n def print_nan_gradients(self):\n mode...
920
148
gh_patches_debug_33388
rasdani/github-patches
git_diff
goauthentik__authentik-5153
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Celery CPU usage 100% on new install **Describe the bug** I'm using the attached docker-compose and env file (don't worry about the secrets in the env file). [env.txt](https://github.com/goauthentik/aut...
diff --git a/authentik/root/celery.py b/authentik/root/celery.py --- a/authentik/root/celery.py +++ b/authentik/root/celery.py @@ -2,9 +2,12 @@ import os from contextvars import ContextVar from logging.config import dictConfig +from pathlib import Path +from tempfile import gettempdir from typing import Callable ...
{"golden_diff": "diff --git a/authentik/root/celery.py b/authentik/root/celery.py\n--- a/authentik/root/celery.py\n+++ b/authentik/root/celery.py\n@@ -2,9 +2,12 @@\n import os\n from contextvars import ContextVar\n from logging.config import dictConfig\n+from pathlib import Path\n+from tempfile import gettempdir\n from...
1,568
510
gh_patches_debug_17928
rasdani/github-patches
git_diff
openvinotoolkit__datumaro-1109
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Error installing via pip Greetings. recently I tried to install datumaro via pip on Windows 10. I tried to do it on two devices and in both cases an error occured during installation due to encoding issues...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ file_path = osp.join(project_dir, "datumaro", "version.py") - with open(file_path, "r") as version_file: + with open(file_path, "r", encoding="utf-8") as version_file: version_text = version_file.read() # PEP...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -19,7 +19,7 @@\n \n file_path = osp.join(project_dir, \"datumaro\", \"version.py\")\n \n- with open(file_path, \"r\") as version_file:\n+ with open(file_path, \"r\", encoding=\"utf-8\") as version_file:\n version_tex...
1,527
226
gh_patches_debug_25967
rasdani/github-patches
git_diff
google__turbinia-524
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Turbinia's setup.py seems to be broken with the latest version of pip Turbinia can't be isntalled with the latest version of `pip`. (20.1) ``` Collecting pip Downloading pip-20.1-py2.py3-none-any.whl (...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -25,11 +25,6 @@ from setuptools import find_packages from setuptools import setup -try: # for pip >= 10 - from pip._internal.req import parse_requirements -except ImportError: # for pip <= 9.0.3 - from pip.req import parse_requirements - # mak...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -25,11 +25,6 @@\n from setuptools import find_packages\n from setuptools import setup\n \n-try: # for pip >= 10\n- from pip._internal.req import parse_requirements\n-except ImportError: # for pip <= 9.0.3\n- from pip.req import pa...
1,560
331
gh_patches_debug_64426
rasdani/github-patches
git_diff
pwndbg__pwndbg-1619
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Disable search-memory-packet back only on broken GDB version Tl;dr: Use the workaround from https://github.com/pwndbg/pwndbg/pull/322/files only for broken gdb versions Disable search-memory-packet back only ...
diff --git a/pwndbg/__init__.py b/pwndbg/__init__.py --- a/pwndbg/__init__.py +++ b/pwndbg/__init__.py @@ -54,6 +54,10 @@ pwndbg.ui.get_window_size()[1] ) +# See https://github.com/pwndbg/pwndbg/issues/808 +if int(getattr(gdb, "VERSION", "0.0").split(".")[0]) <= 9: + pre_commands += "\nset remote search-memo...
{"golden_diff": "diff --git a/pwndbg/__init__.py b/pwndbg/__init__.py\n--- a/pwndbg/__init__.py\n+++ b/pwndbg/__init__.py\n@@ -54,6 +54,10 @@\n pwndbg.ui.get_window_size()[1]\n )\n \n+# See https://github.com/pwndbg/pwndbg/issues/808\n+if int(getattr(gdb, \"VERSION\", \"0.0\").split(\".\")[0]) <= 9:\n+ pre_comma...
963
140
gh_patches_debug_8240
rasdani/github-patches
git_diff
scoutapp__scout_apm_python-329
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Metadata should have language / language_version fields Standardizing metadata between the various agents - put a fixed `python` string in `language`, and the version (`3.4.1` or whatever) in `language_versi...
diff --git a/src/scout_apm/core/metadata.py b/src/scout_apm/core/metadata.py --- a/src/scout_apm/core/metadata.py +++ b/src/scout_apm/core/metadata.py @@ -29,6 +29,8 @@ try: data = { "language": "python", + "language_version": "{}.{}.{}".format(*sys.version_info[:3]...
{"golden_diff": "diff --git a/src/scout_apm/core/metadata.py b/src/scout_apm/core/metadata.py\n--- a/src/scout_apm/core/metadata.py\n+++ b/src/scout_apm/core/metadata.py\n@@ -29,6 +29,8 @@\n try:\n data = {\n \"language\": \"python\",\n+ \"language_version\": \"{}.{}.{...
884
146
gh_patches_debug_13083
rasdani/github-patches
git_diff
NVIDIA__NeMo-5260
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Fix links to speaker identification notebook # What does this PR do ? Fixes #5258 **Collection**: [Note which collection this PR will affect] # Changelog - Add specific line by line info of high le...
diff --git a/examples/speaker_tasks/recognition/speaker_reco.py b/examples/speaker_tasks/recognition/speaker_reco.py --- a/examples/speaker_tasks/recognition/speaker_reco.py +++ b/examples/speaker_tasks/recognition/speaker_reco.py @@ -37,7 +37,7 @@ exp_manager.name=$EXP_NAME +exp_manager.use_datetime_version=False...
{"golden_diff": "diff --git a/examples/speaker_tasks/recognition/speaker_reco.py b/examples/speaker_tasks/recognition/speaker_reco.py\n--- a/examples/speaker_tasks/recognition/speaker_reco.py\n+++ b/examples/speaker_tasks/recognition/speaker_reco.py\n@@ -37,7 +37,7 @@\n exp_manager.name=$EXP_NAME +exp_manager.use_d...
1,505
195
gh_patches_debug_31535
rasdani/github-patches
git_diff
liqd__adhocracy4-1155
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- No Validation or Error when Phases in Dashboard are set in Illogical Order URL: https://meinberlin-dev.liqd.net/projekte/module/burgerinnenhaushalt-2-phasen/?mode=list user: Project initiator expected behav...
diff --git a/adhocracy4/phases/forms.py b/adhocracy4/phases/forms.py --- a/adhocracy4/phases/forms.py +++ b/adhocracy4/phases/forms.py @@ -4,9 +4,7 @@ class PhaseInlineFormSet(BaseInlineFormSet): def clean(self): - """ - Make sure phases of the same module don't overlap. - """ + """M...
{"golden_diff": "diff --git a/adhocracy4/phases/forms.py b/adhocracy4/phases/forms.py\n--- a/adhocracy4/phases/forms.py\n+++ b/adhocracy4/phases/forms.py\n@@ -4,9 +4,7 @@\n \n class PhaseInlineFormSet(BaseInlineFormSet):\n def clean(self):\n- \"\"\"\n- Make sure phases of the same module don't overlap...
848
354
gh_patches_debug_2292
rasdani/github-patches
git_diff
ipython__ipython-10213
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- remove usage of backports.shutil_get_terminal_size This is for pre-3.3 Python. Pretty easy it should only require deleting lines. Maybe a few need to be dedented. --- END ISSUE --- Below are some code ...
diff --git a/IPython/utils/terminal.py b/IPython/utils/terminal.py --- a/IPython/utils/terminal.py +++ b/IPython/utils/terminal.py @@ -15,11 +15,7 @@ import os import sys import warnings -try: - from shutil import get_terminal_size as _get_terminal_size -except ImportError: - # use backport on Python 2 - fr...
{"golden_diff": "diff --git a/IPython/utils/terminal.py b/IPython/utils/terminal.py\n--- a/IPython/utils/terminal.py\n+++ b/IPython/utils/terminal.py\n@@ -15,11 +15,7 @@\n import os\n import sys\n import warnings\n-try:\n- from shutil import get_terminal_size as _get_terminal_size\n-except ImportError:\n- # use b...
1,302
130
gh_patches_debug_879
rasdani/github-patches
git_diff
getpelican__pelican-1507
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- abbr support doesn't work for multiline Eg: ``` rst this is an :abbr:`TLA (Three Letter Abbreviation)` ``` will output `<abbr>TLA (Three Letter Abbreviation)</abbr>` instead of `<abbr title="Three Letter A...
diff --git a/pelican/rstdirectives.py b/pelican/rstdirectives.py --- a/pelican/rstdirectives.py +++ b/pelican/rstdirectives.py @@ -70,7 +70,7 @@ directives.register_directive('sourcecode', Pygments) -_abbr_re = re.compile('\((.*)\)$') +_abbr_re = re.compile('\((.*)\)$', re.DOTALL) class abbreviation(nodes.Inl...
{"golden_diff": "diff --git a/pelican/rstdirectives.py b/pelican/rstdirectives.py\n--- a/pelican/rstdirectives.py\n+++ b/pelican/rstdirectives.py\n@@ -70,7 +70,7 @@\n directives.register_directive('sourcecode', Pygments)\n \n \n-_abbr_re = re.compile('\\((.*)\\)$')\n+_abbr_re = re.compile('\\((.*)\\)$', re.DOTALL)\n \n...
1,300
108
gh_patches_debug_602
rasdani/github-patches
git_diff
pex-tool__pex-1844
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Release 2.1.97 On the docket: + [x] Avoid ENOEXEC for Pex internal --venvs. #1843 --- END ISSUE --- Below are some code segments, each from a relevant file. One or more of these files may contain bugs. -...
diff --git a/pex/version.py b/pex/version.py --- a/pex/version.py +++ b/pex/version.py @@ -1,4 +1,4 @@ # Copyright 2015 Pants project contributors (see CONTRIBUTORS.md). # Licensed under the Apache License, Version 2.0 (see LICENSE). -__version__ = "2.1.96" +__version__ = "2.1.97"
{"golden_diff": "diff --git a/pex/version.py b/pex/version.py\n--- a/pex/version.py\n+++ b/pex/version.py\n@@ -1,4 +1,4 @@\n # Copyright 2015 Pants project contributors (see CONTRIBUTORS.md).\n # Licensed under the Apache License, Version 2.0 (see LICENSE).\n \n-__version__ = \"2.1.96\"\n+__version__ = \"2.1.97\"\n", "...
344
96
gh_patches_debug_1026
rasdani/github-patches
git_diff
pytorch__ignite-1365
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- MyPy: improve ignite.base module ## 🚀 Feature Currently, mypy ignores all errors for all modules. We have to rework our typing such that mypy checks the code. In this issue, let's improve https://github....
diff --git a/ignite/base/mixins.py b/ignite/base/mixins.py --- a/ignite/base/mixins.py +++ b/ignite/base/mixins.py @@ -4,8 +4,8 @@ class Serializable: - _state_dict_all_req_keys = () - _state_dict_one_of_opt_keys = () + _state_dict_all_req_keys = () # type: tuple + _state_dict_one_of_opt_keys = () # ...
{"golden_diff": "diff --git a/ignite/base/mixins.py b/ignite/base/mixins.py\n--- a/ignite/base/mixins.py\n+++ b/ignite/base/mixins.py\n@@ -4,8 +4,8 @@\n \n class Serializable:\n \n- _state_dict_all_req_keys = ()\n- _state_dict_one_of_opt_keys = ()\n+ _state_dict_all_req_keys = () # type: tuple\n+ _state_di...
698
121
gh_patches_debug_19753
rasdani/github-patches
git_diff
lk-geimfari__mimesis-323
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Change how works generating data by schema The current design is bad for following reasons: `Field` is an object which can represent any method of any provider and it's mean that is data provider which sho...
diff --git a/mimesis/providers/development.py b/mimesis/providers/development.py --- a/mimesis/providers/development.py +++ b/mimesis/providers/development.py @@ -16,16 +16,28 @@ """ return self.random.choice(LICENSES) - def version(self, pre_release: bool = False) -> str: + def version(self, ...
{"golden_diff": "diff --git a/mimesis/providers/development.py b/mimesis/providers/development.py\n--- a/mimesis/providers/development.py\n+++ b/mimesis/providers/development.py\n@@ -16,16 +16,28 @@\n \"\"\"\n return self.random.choice(LICENSES)\n \n- def version(self, pre_release: bool = False) -> s...
1,563
286
gh_patches_debug_60161
rasdani/github-patches
git_diff
conan-io__conan-center-index-1706
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [odbc] CMake module name odbc/2.3.7 According to CMake module, it should use capital letters: https://cmake.org/cmake/help/v3.12/module/FindODBC.html --- END ISSUE --- Below are some code segments, each ...
diff --git a/recipes/odbc/all/conanfile.py b/recipes/odbc/all/conanfile.py --- a/recipes/odbc/all/conanfile.py +++ b/recipes/odbc/all/conanfile.py @@ -60,6 +60,9 @@ self.copy('COPYING', src=self._source_subfolder, dst="licenses") def package_info(self): + self.cpp_info.names["cmake_find_package"]...
{"golden_diff": "diff --git a/recipes/odbc/all/conanfile.py b/recipes/odbc/all/conanfile.py\n--- a/recipes/odbc/all/conanfile.py\n+++ b/recipes/odbc/all/conanfile.py\n@@ -60,6 +60,9 @@\n self.copy('COPYING', src=self._source_subfolder, dst=\"licenses\")\n \n def package_info(self):\n+ self.cpp_info.n...
1,182
167
gh_patches_debug_32339
rasdani/github-patches
git_diff
pypa__pip-6678
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- pip._internal.utils.glibc_version_string() can use os.confstr('CS_GNU_LIBC_VERSION') to avoid ctypes Currently, the pip._internal.utils.glibc_version_string() function is implemented with ctypes to access gnu...
diff --git a/src/pip/_internal/utils/glibc.py b/src/pip/_internal/utils/glibc.py --- a/src/pip/_internal/utils/glibc.py +++ b/src/pip/_internal/utils/glibc.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -import ctypes +import os import re import warnings @@ -13,6 +13,33 @@ def glibc_version_string():...
{"golden_diff": "diff --git a/src/pip/_internal/utils/glibc.py b/src/pip/_internal/utils/glibc.py\n--- a/src/pip/_internal/utils/glibc.py\n+++ b/src/pip/_internal/utils/glibc.py\n@@ -1,6 +1,6 @@\n from __future__ import absolute_import\n \n-import ctypes\n+import os\n import re\n import warnings\n \n@@ -13,6 +13,33 @@\...
1,744
560
gh_patches_debug_5336
rasdani/github-patches
git_diff
openstates__openstates-scrapers-1441
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- MA: Where are the Republicans? All state legislators in MA are in either the Democratic party or Other. It's a nice fantasy but it's not reality! --- END ISSUE --- Below are some code segments, each from...
diff --git a/openstates/ma/legislators.py b/openstates/ma/legislators.py --- a/openstates/ma/legislators.py +++ b/openstates/ma/legislators.py @@ -78,9 +78,9 @@ party = party.strip() district = clean_district(district.strip()) - if party == 'Democrat': + if party in ('D', 'Democrat', '...
{"golden_diff": "diff --git a/openstates/ma/legislators.py b/openstates/ma/legislators.py\n--- a/openstates/ma/legislators.py\n+++ b/openstates/ma/legislators.py\n@@ -78,9 +78,9 @@\n party = party.strip()\n district = clean_district(district.strip())\n \n- if party == 'Democrat':\n+ if par...
1,707
140
gh_patches_debug_34695
rasdani/github-patches
git_diff
numpy__numpy-7952
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Building Numpy package fails with TypeError: __init__() takes from 3 to 4 positional arguments but 13 were given I'm trying in build Numpy on Ubuntu Server Xenial (Armbian 5.14). I have installed `libexpat1-d...
diff --git a/numpy/distutils/extension.py b/numpy/distutils/extension.py --- a/numpy/distutils/extension.py +++ b/numpy/distutils/extension.py @@ -20,36 +20,39 @@ fortran_pyf_ext_re = re.compile(r'.*[.](f90|f95|f77|for|ftn|f|pyf)\Z', re.I).match class Extension(old_Extension): - def __init__ (self, name, sources...
{"golden_diff": "diff --git a/numpy/distutils/extension.py b/numpy/distutils/extension.py\n--- a/numpy/distutils/extension.py\n+++ b/numpy/distutils/extension.py\n@@ -20,36 +20,39 @@\n fortran_pyf_ext_re = re.compile(r'.*[.](f90|f95|f77|for|ftn|f|pyf)\\Z', re.I).match\n \n class Extension(old_Extension):\n- def __in...
1,746
544
gh_patches_debug_24249
rasdani/github-patches
git_diff
lutris__lutris-1232
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- latest version 0.4.21 thinks i don't have a vulkan loader Got the new message pop up to say I don't have a Vulkan loader installed. This is on an Ubuntu 18.10 fresh upgrade. I do: > liam@liam-main:~$ su...
diff --git a/lutris/util/vulkan.py b/lutris/util/vulkan.py --- a/lutris/util/vulkan.py +++ b/lutris/util/vulkan.py @@ -1,6 +1,7 @@ """Vulkan helper module""" import os import re +import subprocess from enum import Enum class vulkan_available(Enum): @@ -9,22 +10,16 @@ SIXTY_FOUR = 2 ALL = 3 -def searc...
{"golden_diff": "diff --git a/lutris/util/vulkan.py b/lutris/util/vulkan.py\n--- a/lutris/util/vulkan.py\n+++ b/lutris/util/vulkan.py\n@@ -1,6 +1,7 @@\n \"\"\"Vulkan helper module\"\"\"\n import os\n import re\n+import subprocess\n from enum import Enum\n \n class vulkan_available(Enum):\n@@ -9,22 +10,16 @@\n SIXTY...
839
431
gh_patches_debug_2132
rasdani/github-patches
git_diff
marshmallow-code__webargs-414
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Schema factory only variable fail - can't pass list type Looking at the [schema factory docs](https://webargs.readthedocs.io/en/latest/advanced.html#schema-factories), I'm interested in trying the ``` # Fil...
diff --git a/examples/schema_example.py b/examples/schema_example.py --- a/examples/schema_example.py +++ b/examples/schema_example.py @@ -89,9 +89,6 @@ first_name = fields.Str() last_name = fields.Str() - class Meta: - strict = True - @post_dump(pass_many=True) def wrap_with_envelope(se...
{"golden_diff": "diff --git a/examples/schema_example.py b/examples/schema_example.py\n--- a/examples/schema_example.py\n+++ b/examples/schema_example.py\n@@ -89,9 +89,6 @@\n first_name = fields.Str()\n last_name = fields.Str()\n \n- class Meta:\n- strict = True\n-\n @post_dump(pass_many=True)\n ...
1,771
97
gh_patches_debug_793
rasdani/github-patches
git_diff
scrapy__scrapy-742
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Sort spider names on 'scrapy list' command Hey there, i think the spider names on the `scrapy list` command should be order by name in the console output. --- END ISSUE --- Below are some code segments,...
diff --git a/scrapy/commands/list.py b/scrapy/commands/list.py --- a/scrapy/commands/list.py +++ b/scrapy/commands/list.py @@ -11,5 +11,5 @@ def run(self, args, opts): crawler = self.crawler_process.create_crawler() - for s in crawler.spiders.list(): + for s in sorted(crawler.spiders.list(...
{"golden_diff": "diff --git a/scrapy/commands/list.py b/scrapy/commands/list.py\n--- a/scrapy/commands/list.py\n+++ b/scrapy/commands/list.py\n@@ -11,5 +11,5 @@\n \n def run(self, args, opts):\n crawler = self.crawler_process.create_crawler()\n- for s in crawler.spiders.list():\n+ for s in sor...
411
95
gh_patches_debug_12216
rasdani/github-patches
git_diff
liqd__a4-meinberlin-563
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Making messages for translation has system dependent output When calling `make makemessages` the output of the generated "djangojs.po" is dependent on the system configuration. For example in my case it ins...
diff --git a/apps/contrib/management/commands/makemessages.py b/apps/contrib/management/commands/makemessages.py --- a/apps/contrib/management/commands/makemessages.py +++ b/apps/contrib/management/commands/makemessages.py @@ -21,9 +21,9 @@ return super().handle(*args, **options) def find_files(self, ro...
{"golden_diff": "diff --git a/apps/contrib/management/commands/makemessages.py b/apps/contrib/management/commands/makemessages.py\n--- a/apps/contrib/management/commands/makemessages.py\n+++ b/apps/contrib/management/commands/makemessages.py\n@@ -21,9 +21,9 @@\n return super().handle(*args, **options)\n \n ...
658
206
gh_patches_debug_11453
rasdani/github-patches
git_diff
saleor__saleor-3535
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Attribute filters are not available in subcategories ### What I'm trying to achieve I'm trying to filter products in subcategories by attributes of this products ### Steps to reproduce the problem 1. ...
diff --git a/saleor/product/filters.py b/saleor/product/filters.py --- a/saleor/product/filters.py +++ b/saleor/product/filters.py @@ -88,10 +88,12 @@ super().__init__(*args, **kwargs) def _get_product_attributes_lookup(self): - return Q(product_type__products__category=self.category) + ca...
{"golden_diff": "diff --git a/saleor/product/filters.py b/saleor/product/filters.py\n--- a/saleor/product/filters.py\n+++ b/saleor/product/filters.py\n@@ -88,10 +88,12 @@\n super().__init__(*args, **kwargs)\n \n def _get_product_attributes_lookup(self):\n- return Q(product_type__products__category=se...
1,567
176
gh_patches_debug_35909
rasdani/github-patches
git_diff
conan-io__conan-center-index-2521
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [request] pcre/8.44 ### Package Details * Package Name/Version: **pcre/8.44** * Changelog: **http://www.pcre.org/original/changelog.txt** The above mentioned version is newly released by the upstre...
diff --git a/recipes/pcre/all/conanfile.py b/recipes/pcre/all/conanfile.py --- a/recipes/pcre/all/conanfile.py +++ b/recipes/pcre/all/conanfile.py @@ -23,9 +23,25 @@ "with_utf": [True, False], "with_unicode_properties": [True, False] } - default_options = {'shared': False, 'fPIC': True, 'with_...
{"golden_diff": "diff --git a/recipes/pcre/all/conanfile.py b/recipes/pcre/all/conanfile.py\n--- a/recipes/pcre/all/conanfile.py\n+++ b/recipes/pcre/all/conanfile.py\n@@ -23,9 +23,25 @@\n \"with_utf\": [True, False],\n \"with_unicode_properties\": [True, False]\n }\n- default_options = {'shared':...
1,567
642
gh_patches_debug_4701
rasdani/github-patches
git_diff
pypi__warehouse-7327
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- WebAuthN user verification flag should be set to discouraged The current setting on the Pypi site is to ignore the UserVerificationOption setting in the `navigator.credentials.create()` call. Based on [this c...
diff --git a/warehouse/utils/webauthn.py b/warehouse/utils/webauthn.py --- a/warehouse/utils/webauthn.py +++ b/warehouse/utils/webauthn.py @@ -80,7 +80,14 @@ on the client side. """ options = pywebauthn.WebAuthnMakeCredentialOptions( - challenge, rp_name, rp_id, str(user.id), user.username, user.n...
{"golden_diff": "diff --git a/warehouse/utils/webauthn.py b/warehouse/utils/webauthn.py\n--- a/warehouse/utils/webauthn.py\n+++ b/warehouse/utils/webauthn.py\n@@ -80,7 +80,14 @@\n on the client side.\n \"\"\"\n options = pywebauthn.WebAuthnMakeCredentialOptions(\n- challenge, rp_name, rp_id, str(user...
1,884
149
gh_patches_debug_37341
rasdani/github-patches
git_diff
python__mypy-440
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Refactor overloads away in 'random' stubs It seems that all the `@overload` decorators in `stubs/3.2/random.py` could be represented without overloading, such as by using union types. --- END ISSUE --- Bel...
diff --git a/stubs/3.2/random.py b/stubs/3.2/random.py --- a/stubs/3.2/random.py +++ b/stubs/3.2/random.py @@ -8,7 +8,7 @@ import _random from typing import ( - Any, overload, typevar, Sequence, List, Function, AbstractSet + Any, typevar, Sequence, List, Function, AbstractSet, Union ) t = typevar('t') @@ ...
{"golden_diff": "diff --git a/stubs/3.2/random.py b/stubs/3.2/random.py\n--- a/stubs/3.2/random.py\n+++ b/stubs/3.2/random.py\n@@ -8,7 +8,7 @@\n \n import _random\n from typing import (\n- Any, overload, typevar, Sequence, List, Function, AbstractSet\n+ Any, typevar, Sequence, List, Function, AbstractSet, Union\n...
1,613
843
gh_patches_debug_5826
rasdani/github-patches
git_diff
voxel51__fiftyone-2588
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [BUG] Sorting by similarity does not work on develop On `develop`, nothing happens when clicking `Apply` below to sort by similarity in the App: ```py import fiftyone as fo import fiftyone.brain as fob ...
diff --git a/fiftyone/server/routes/sort.py b/fiftyone/server/routes/sort.py --- a/fiftyone/server/routes/sort.py +++ b/fiftyone/server/routes/sort.py @@ -24,9 +24,7 @@ dataset_name = data.get("dataset", None) filters = data.get("filters", {}) stages = data.get("view", None) - extended...
{"golden_diff": "diff --git a/fiftyone/server/routes/sort.py b/fiftyone/server/routes/sort.py\n--- a/fiftyone/server/routes/sort.py\n+++ b/fiftyone/server/routes/sort.py\n@@ -24,9 +24,7 @@\n dataset_name = data.get(\"dataset\", None)\n filters = data.get(\"filters\", {})\n stages = data.get(\"vi...
965
125
gh_patches_debug_26138
rasdani/github-patches
git_diff
bridgecrewio__checkov-4504
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Some ansible playbooks cause checkov crash Continuation of #4471 The following playbook (probably because of missing tasks) still causes checkov to crash: ```yaml - name: Sample play hosts: - ...
diff --git a/checkov/ansible/graph_builder/local_graph.py b/checkov/ansible/graph_builder/local_graph.py --- a/checkov/ansible/graph_builder/local_graph.py +++ b/checkov/ansible/graph_builder/local_graph.py @@ -42,11 +42,11 @@ if not task or not isinstance(task, dict): return - if "block"...
{"golden_diff": "diff --git a/checkov/ansible/graph_builder/local_graph.py b/checkov/ansible/graph_builder/local_graph.py\n--- a/checkov/ansible/graph_builder/local_graph.py\n+++ b/checkov/ansible/graph_builder/local_graph.py\n@@ -42,11 +42,11 @@\n if not task or not isinstance(task, dict):\n return...
1,832
293
gh_patches_debug_61235
rasdani/github-patches
git_diff
facebookresearch__CompilerGym-548
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Improve examples documentation to make it clear that they are standalone ## 🚀 Feature Tangentially to #532, I think it would be good to add a "Usage" section to examples/README.md that makes it clear that...
diff --git a/examples/setup.py b/examples/setup.py --- a/examples/setup.py +++ b/examples/setup.py @@ -13,6 +13,8 @@ version = f.read().strip() with open("requirements.txt") as f: requirements = [ln.split("#")[0].rstrip() for ln in f.readlines()] +with open("../tests/requirements.txt") as f: + requirement...
{"golden_diff": "diff --git a/examples/setup.py b/examples/setup.py\n--- a/examples/setup.py\n+++ b/examples/setup.py\n@@ -13,6 +13,8 @@\n version = f.read().strip()\n with open(\"requirements.txt\") as f:\n requirements = [ln.split(\"#\")[0].rstrip() for ln in f.readlines()]\n+with open(\"../tests/requirements...
659
114
gh_patches_debug_23256
rasdani/github-patches
git_diff
deepset-ai__haystack-3901
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Better model security with new PyTorch version When loading PyTorch models from the modelhub, arbitrary code can be executed. See [here.](https://huggingface.co/docs/hub/security-pickle#pickle-scanning) Se...
diff --git a/haystack/__init__.py b/haystack/__init__.py --- a/haystack/__init__.py +++ b/haystack/__init__.py @@ -20,6 +20,8 @@ from haystack.schema import Document, Answer, Label, MultiLabel, Span, EvaluationResult from haystack.nodes.base import BaseComponent from haystack.pipelines.base import Pipeline +from hay...
{"golden_diff": "diff --git a/haystack/__init__.py b/haystack/__init__.py\n--- a/haystack/__init__.py\n+++ b/haystack/__init__.py\n@@ -20,6 +20,8 @@\n from haystack.schema import Document, Answer, Label, MultiLabel, Span, EvaluationResult\n from haystack.nodes.base import BaseComponent\n from haystack.pipelines.base im...
1,373
355
gh_patches_debug_1621
rasdani/github-patches
git_diff
mathesar-foundation__mathesar-1707
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Explorations should not auto-save New Explorations are currently persistent, any change made immediately saves the exploration. This behaviour is not preferred since we'd like the user to be able to run and d...
diff --git a/mathesar/views.py b/mathesar/views.py --- a/mathesar/views.py +++ b/mathesar/views.py @@ -42,7 +42,7 @@ if schema is None: return [] query_serializer = QuerySerializer( - UIQuery.objects.all(), + UIQuery.objects.filter(base_table__schema=schema), many=True, ...
{"golden_diff": "diff --git a/mathesar/views.py b/mathesar/views.py\n--- a/mathesar/views.py\n+++ b/mathesar/views.py\n@@ -42,7 +42,7 @@\n if schema is None:\n return []\n query_serializer = QuerySerializer(\n- UIQuery.objects.all(),\n+ UIQuery.objects.filter(base_table__schema=schema),\n ...
1,661
89
gh_patches_debug_11719
rasdani/github-patches
git_diff
streamlit__streamlit-7306
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- CachedStFunctionWarning with st.code ### Checklist - [X] I have searched the [existing issues](https://github.com/streamlit/streamlit/issues) for similar issues. - [X] I added a very descriptive title to ...
diff --git a/lib/streamlit/elements/__init__.py b/lib/streamlit/elements/__init__.py --- a/lib/streamlit/elements/__init__.py +++ b/lib/streamlit/elements/__init__.py @@ -46,6 +46,7 @@ "balloons", "bar_chart", "bokeh_chart", + "code", "data_frame", "dataframe_selector", "deck_gl_json_ch...
{"golden_diff": "diff --git a/lib/streamlit/elements/__init__.py b/lib/streamlit/elements/__init__.py\n--- a/lib/streamlit/elements/__init__.py\n+++ b/lib/streamlit/elements/__init__.py\n@@ -46,6 +46,7 @@\n \"balloons\",\n \"bar_chart\",\n \"bokeh_chart\",\n+ \"code\",\n \"data_frame\",\n \"dataf...
1,809
186
gh_patches_debug_18470
rasdani/github-patches
git_diff
getnikola__nikola-1664
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- nikola bootswatch_theme paper installs slate I seem to be getting an issue when I try to install the [paper](https://bootswatch.com/paper/) theme from bootswatch by running `nikola bootswatch_theme paper`, it...
diff --git a/nikola/plugins/command/bootswatch_theme.py b/nikola/plugins/command/bootswatch_theme.py --- a/nikola/plugins/command/bootswatch_theme.py +++ b/nikola/plugins/command/bootswatch_theme.py @@ -26,6 +26,7 @@ from __future__ import print_function import os +import sys try: import requests @@ -57,7 +...
{"golden_diff": "diff --git a/nikola/plugins/command/bootswatch_theme.py b/nikola/plugins/command/bootswatch_theme.py\n--- a/nikola/plugins/command/bootswatch_theme.py\n+++ b/nikola/plugins/command/bootswatch_theme.py\n@@ -26,6 +26,7 @@\n \n from __future__ import print_function\n import os\n+import sys\n \n try:\n ...
1,920
220
gh_patches_debug_19645
rasdani/github-patches
git_diff
Nitrate__Nitrate-607
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Abstract jQuery.ajax calls Lots of jQuery.ajax calls in JavaScript code, that repeat same structure and part of the same request arguments. --- END ISSUE --- Below are some code segments, each from a releva...
diff --git a/src/tcms/comments/views.py b/src/tcms/comments/views.py --- a/src/tcms/comments/views.py +++ b/src/tcms/comments/views.py @@ -5,7 +5,6 @@ from django.conf import settings from django.contrib.auth.mixins import PermissionRequiredMixin from django.http import JsonResponse -from django.shortcuts import ren...
{"golden_diff": "diff --git a/src/tcms/comments/views.py b/src/tcms/comments/views.py\n--- a/src/tcms/comments/views.py\n+++ b/src/tcms/comments/views.py\n@@ -5,7 +5,6 @@\n from django.conf import settings\n from django.contrib.auth.mixins import PermissionRequiredMixin\n from django.http import JsonResponse\n-from dja...
730
204
gh_patches_debug_30601
rasdani/github-patches
git_diff
wagtail__wagtail-1888
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Errors from embed chooser are not reported back to the user It seems that embed functionality of wagtail hello.js editor is not working. I tried to embed a link, modal comes up, everything is fine but when I ...
diff --git a/wagtail/wagtailembeds/format.py b/wagtail/wagtailembeds/format.py --- a/wagtail/wagtailembeds/format.py +++ b/wagtail/wagtailembeds/format.py @@ -21,17 +21,15 @@ 'ratio': ratio, }) except embeds.EmbedException: + # silently ignore failed embeds, rather than letting them cr...
{"golden_diff": "diff --git a/wagtail/wagtailembeds/format.py b/wagtail/wagtailembeds/format.py\n--- a/wagtail/wagtailembeds/format.py\n+++ b/wagtail/wagtailembeds/format.py\n@@ -21,17 +21,15 @@\n 'ratio': ratio,\n })\n except embeds.EmbedException:\n+ # silently ignore failed embeds, rat...
1,695
568
gh_patches_debug_16372
rasdani/github-patches
git_diff
sanic-org__sanic-2595
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Auto reloader consumes full CPU core **Describe the bug** Enabling the auto reloader (`auto_reload=True` or `--auto-reload`) will consume a full CPU core, because it is looping over all files in all loaded...
diff --git a/sanic/worker/reloader.py b/sanic/worker/reloader.py --- a/sanic/worker/reloader.py +++ b/sanic/worker/reloader.py @@ -9,6 +9,7 @@ from pathlib import Path from signal import SIGINT, SIGTERM from signal import signal as signal_func +from time import sleep from typing import Dict, Set from sanic.serve...
{"golden_diff": "diff --git a/sanic/worker/reloader.py b/sanic/worker/reloader.py\n--- a/sanic/worker/reloader.py\n+++ b/sanic/worker/reloader.py\n@@ -9,6 +9,7 @@\n from pathlib import Path\n from signal import SIGINT, SIGTERM\n from signal import signal as signal_func\n+from time import sleep\n from typing import Dict...
1,725
162
gh_patches_debug_825
rasdani/github-patches
git_diff
bridgecrewio__checkov-1905
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Bump boto3 to the latest version **Describe the bug** I am trying to installing checkov and the latest boto3 version within an environment. However, checkov depends on version 1.17.* Could you please bu...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ "junit-xml>=1.9", "dpath>=1.5.0,<2", "pyyaml>=5.4.1", - "boto3==1.17.*", + "boto3>=1.17", "GitPython", "jmespath", "tqdm",
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -42,7 +42,7 @@\n \"junit-xml>=1.9\",\n \"dpath>=1.5.0,<2\",\n \"pyyaml>=5.4.1\",\n- \"boto3==1.17.*\",\n+ \"boto3>=1.17\",\n \"GitPython\",\n \"jmespath\",\n \"tqdm\",\n", ...
1,169
109
gh_patches_debug_16881
rasdani/github-patches
git_diff
facebookresearch__CompilerGym-160
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Add support for Python 3.9 ## 🚀 Feature Add support for python 3.9. This shouldn't require any code changes, but the dependencies may not updating. --- END ISSUE --- Below are some code segments, each f...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -84,11 +84,16 @@ include_package_data=True, python_requires=">=3.6", classifiers=[ - "Development Status :: 2 - Pre-Alpha", + "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -84,11 +84,16 @@\n include_package_data=True,\n python_requires=\">=3.6\",\n classifiers=[\n- \"Development Status :: 2 - Pre-Alpha\",\n+ \"Development Status :: 3 - Alpha\",\n \"Environment :: Consol...
1,257
196