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_7175
rasdani/github-patches
git_diff
RedHatInsights__insights-core-2743
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Remove defunct entry_points These scripts no longer exist. We should remove the entry_points. * [insights.tools.generate_api_config](https://github.com/RedHatInsights/insights-core/blob/master/setup.py#L23...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -20,8 +20,6 @@ 'insights-inspect = insights.tools.insights_inspect:main', 'insights-info = insights.tools.query:main', 'insights-ocpshell= insights.ocpshell:main', - 'gen_api = insights.tools.generate_api_config:main', -...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -20,8 +20,6 @@\n 'insights-inspect = insights.tools.insights_inspect:main',\n 'insights-info = insights.tools.query:main',\n 'insights-ocpshell= insights.ocpshell:main',\n- 'gen_api = insights.tools.gene...
1,680
128
gh_patches_debug_26911
rasdani/github-patches
git_diff
pyca__cryptography-1424
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Need zope.interface.verify.verifyObject for ABCs. Every object that claims to provide some interface should then use it in a unit test. --- END ISSUE --- Below are some code segments, each from a relevant ...
diff --git a/cryptography/utils.py b/cryptography/utils.py --- a/cryptography/utils.py +++ b/cryptography/utils.py @@ -13,6 +13,8 @@ from __future__ import absolute_import, division, print_function +import abc +import inspect import sys @@ -21,6 +23,7 @@ def register_interface(iface): def register_dec...
{"golden_diff": "diff --git a/cryptography/utils.py b/cryptography/utils.py\n--- a/cryptography/utils.py\n+++ b/cryptography/utils.py\n@@ -13,6 +13,8 @@\n \n from __future__ import absolute_import, division, print_function\n \n+import abc\n+import inspect\n import sys\n \n \n@@ -21,6 +23,7 @@\n \n def register_interfac...
595
357
gh_patches_debug_3588
rasdani/github-patches
git_diff
akvo__akvo-rsr-3753
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Show only relevant updates in typeahead on Akvo pages Currently, all updates can be searched for on partner site updates typeahead. --- END ISSUE --- Below are some code segments, each from a relevant file...
diff --git a/akvo/rest/views/typeahead.py b/akvo/rest/views/typeahead.py --- a/akvo/rest/views/typeahead.py +++ b/akvo/rest/views/typeahead.py @@ -134,7 +134,8 @@ @api_view(['GET']) def typeahead_projectupdate(request): - updates = ProjectUpdate.objects.all() + page = request.rsr_page + updates = page.upda...
{"golden_diff": "diff --git a/akvo/rest/views/typeahead.py b/akvo/rest/views/typeahead.py\n--- a/akvo/rest/views/typeahead.py\n+++ b/akvo/rest/views/typeahead.py\n@@ -134,7 +134,8 @@\n \n @api_view(['GET'])\n def typeahead_projectupdate(request):\n- updates = ProjectUpdate.objects.all()\n+ page = request.rsr_page...
1,605
129
gh_patches_debug_31114
rasdani/github-patches
git_diff
bridgecrewio__checkov-2154
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- CKV_AWS_174 incorrect reporting CKV_AWS_174 is being triggered in our terraform code even though we have the viewer certificate set to use TLSv.1.2. Snippet of our code here: viewer_certificate { acm_c...
diff --git a/checkov/terraform/checks/resource/aws/CloudfrontTLS12.py b/checkov/terraform/checks/resource/aws/CloudfrontTLS12.py --- a/checkov/terraform/checks/resource/aws/CloudfrontTLS12.py +++ b/checkov/terraform/checks/resource/aws/CloudfrontTLS12.py @@ -12,18 +12,18 @@ def scan_resource_conf(self, conf): ...
{"golden_diff": "diff --git a/checkov/terraform/checks/resource/aws/CloudfrontTLS12.py b/checkov/terraform/checks/resource/aws/CloudfrontTLS12.py\n--- a/checkov/terraform/checks/resource/aws/CloudfrontTLS12.py\n+++ b/checkov/terraform/checks/resource/aws/CloudfrontTLS12.py\n@@ -12,18 +12,18 @@\n \n def scan_resourc...
930
551
gh_patches_debug_5802
rasdani/github-patches
git_diff
akvo__akvo-rsr-4094
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Investigate creation of duplicate user accounts with differently cased emails - [ ] Verify that lookups using email are using `__iexact` or something like that. - [ ] Figure out a plan for existing duplicate...
diff --git a/akvo/rest/views/utils.py b/akvo/rest/views/utils.py --- a/akvo/rest/views/utils.py +++ b/akvo/rest/views/utils.py @@ -63,7 +63,7 @@ User = get_user_model() # Check if the user already exists, based on the email address try: - invited_user = User.objects.get(email=email) + invit...
{"golden_diff": "diff --git a/akvo/rest/views/utils.py b/akvo/rest/views/utils.py\n--- a/akvo/rest/views/utils.py\n+++ b/akvo/rest/views/utils.py\n@@ -63,7 +63,7 @@\n User = get_user_model()\n # Check if the user already exists, based on the email address\n try:\n- invited_user = User.objects.get(ema...
1,028
124
gh_patches_debug_7429
rasdani/github-patches
git_diff
cloudtools__troposphere-457
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Elasticsearch Domain DomainName shouldn't be required According to the CF documentation, `DomainName` isn't required: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-elasticsearch-d...
diff --git a/troposphere/elasticsearch.py b/troposphere/elasticsearch.py --- a/troposphere/elasticsearch.py +++ b/troposphere/elasticsearch.py @@ -61,7 +61,7 @@ props = { 'AccessPolicies': (policytypes, False), 'AdvancedOptions': (dict, False), - 'DomainName': (basestring, True), + ...
{"golden_diff": "diff --git a/troposphere/elasticsearch.py b/troposphere/elasticsearch.py\n--- a/troposphere/elasticsearch.py\n+++ b/troposphere/elasticsearch.py\n@@ -61,7 +61,7 @@\n props = {\n 'AccessPolicies': (policytypes, False),\n 'AdvancedOptions': (dict, False),\n- 'DomainName': (base...
960
139
gh_patches_debug_6167
rasdani/github-patches
git_diff
mesonbuild__meson-2462
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- MSI installed meson fails to rerun in visual studio Initially, I ran `meson build` from the source code directory `xxx` to create the build directory. Later, if any `meson.build` files are modified, Visual s...
diff --git a/mesonbuild/scripts/regen_checker.py b/mesonbuild/scripts/regen_checker.py --- a/mesonbuild/scripts/regen_checker.py +++ b/mesonbuild/scripts/regen_checker.py @@ -32,9 +32,11 @@ return False def regen(regeninfo, mesonscript, backend): - cmd = [sys.executable, - mesonscript, - ...
{"golden_diff": "diff --git a/mesonbuild/scripts/regen_checker.py b/mesonbuild/scripts/regen_checker.py\n--- a/mesonbuild/scripts/regen_checker.py\n+++ b/mesonbuild/scripts/regen_checker.py\n@@ -32,9 +32,11 @@\n return False\n \n def regen(regeninfo, mesonscript, backend):\n- cmd = [sys.executable,\n- ...
1,510
167
gh_patches_debug_5400
rasdani/github-patches
git_diff
alltheplaces__alltheplaces-2874
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Spider tgifridays is broken During the global build at 2021-05-26-14-42-23, spider **tgifridays** failed with **0 features** and **0 errors**. Here's [the log](https://data.alltheplaces.xyz/runs/2021-05-26-1...
diff --git a/locations/spiders/tgifridays.py b/locations/spiders/tgifridays.py --- a/locations/spiders/tgifridays.py +++ b/locations/spiders/tgifridays.py @@ -32,9 +32,9 @@ opening_hours = OpeningHours() for hour in hours: - if hour["opens"] == "Closed": + if hour["opens"] in (...
{"golden_diff": "diff --git a/locations/spiders/tgifridays.py b/locations/spiders/tgifridays.py\n--- a/locations/spiders/tgifridays.py\n+++ b/locations/spiders/tgifridays.py\n@@ -32,9 +32,9 @@\n opening_hours = OpeningHours()\n \n for hour in hours:\n- if hour[\"opens\"] == \"Closed\":\n+ ...
1,164
139
gh_patches_debug_30186
rasdani/github-patches
git_diff
sunpy__sunpy-5968
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- IRIS SJI maps call undefined header in self.wavelength ### Describe the bug When creating SJI maps by feeding data and header separately into a Map() and then doing a plot, this causes an error because it ca...
diff --git a/sunpy/map/sources/iris.py b/sunpy/map/sources/iris.py --- a/sunpy/map/sources/iris.py +++ b/sunpy/map/sources/iris.py @@ -26,10 +26,6 @@ IRIS was launched into a Sun-synchronous orbit on 27 June 2013. - .. warning:: - - This object can only handle level 1 SJI files. - References ...
{"golden_diff": "diff --git a/sunpy/map/sources/iris.py b/sunpy/map/sources/iris.py\n--- a/sunpy/map/sources/iris.py\n+++ b/sunpy/map/sources/iris.py\n@@ -26,10 +26,6 @@\n \n IRIS was launched into a Sun-synchronous orbit on 27 June 2013.\n \n- .. warning::\n-\n- This object can only handle level 1 SJI fi...
1,923
442
gh_patches_debug_20993
rasdani/github-patches
git_diff
dask__distributed-779
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- distributed-1.15.0rc1 seems wrongly requiring "futures" from a Python-3.6 installation Collecting futures (from distributed>=1.14; extra == "complete"->dask[complete]->-r C:\Winpython\basedir36 --- END ISSUE...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -6,6 +6,18 @@ import versioneer requires = open('requirements.txt').read().strip().split('\n') +install_requires = [] +extras_require = {} +for r in requires: + if ';' in r: + # requirements.txt conditional dependencies need to be reformatt...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -6,6 +6,18 @@\n import versioneer\n \n requires = open('requirements.txt').read().strip().split('\\n')\n+install_requires = []\n+extras_require = {}\n+for r in requires:\n+ if ';' in r:\n+ # requirements.txt conditional depe...
699
249
gh_patches_debug_13258
rasdani/github-patches
git_diff
lutris__lutris-2955
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- PCSX2 Runner: Add config path/file options (Feature request) It would be nice to have a way to specify a config file as for example some games run better with a multi-threaded microVU than others. It would al...
diff --git a/lutris/runners/pcsx2.py b/lutris/runners/pcsx2.py --- a/lutris/runners/pcsx2.py +++ b/lutris/runners/pcsx2.py @@ -62,9 +62,9 @@ if self.runner_config.get("nogui"): arguments.append("--nogui") if self.runner_config.get("config_file"): - arguments.append("--cfg=%s", ...
{"golden_diff": "diff --git a/lutris/runners/pcsx2.py b/lutris/runners/pcsx2.py\n--- a/lutris/runners/pcsx2.py\n+++ b/lutris/runners/pcsx2.py\n@@ -62,9 +62,9 @@\n if self.runner_config.get(\"nogui\"):\n arguments.append(\"--nogui\")\n if self.runner_config.get(\"config_file\"):\n- ...
1,018
190
gh_patches_debug_2941
rasdani/github-patches
git_diff
learningequality__kolibri-10078
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Kolibri 0.16 - Resources of type HTML5 and exercises are not displayed ## Observed behavior This is a follow up to https://github.com/learningequality/kolibri/pull/9724#issuecomment-1408889097 In the late...
diff --git a/kolibri/deployment/default/alt_wsgi.py b/kolibri/deployment/default/alt_wsgi.py --- a/kolibri/deployment/default/alt_wsgi.py +++ b/kolibri/deployment/default/alt_wsgi.py @@ -32,7 +32,7 @@ (alt_content_path, content_dir) for content_dir in content_dirs ] + [(paths.zip_content_...
{"golden_diff": "diff --git a/kolibri/deployment/default/alt_wsgi.py b/kolibri/deployment/default/alt_wsgi.py\n--- a/kolibri/deployment/default/alt_wsgi.py\n+++ b/kolibri/deployment/default/alt_wsgi.py\n@@ -32,7 +32,7 @@\n (alt_content_path, content_dir) for content_dir in content_dirs\n ]\n ...
1,797
125
gh_patches_debug_2612
rasdani/github-patches
git_diff
scikit-hep__pyhf-307
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Add --version flag to pyhf CLI # Description As [suggested by Lukas](https://github.com/diana-hep/pyhf/pull/304#issuecomment-428856809), adding a `--version` flag to the pyhf CLI could be useful. --- END ...
diff --git a/pyhf/commandline.py b/pyhf/commandline.py --- a/pyhf/commandline.py +++ b/pyhf/commandline.py @@ -12,9 +12,11 @@ from . import writexml from .utils import runOnePoint from .pdf import Model +from .version import __version__ @click.group(context_settings=dict(help_option_names=['-h', '--help'])) +@c...
{"golden_diff": "diff --git a/pyhf/commandline.py b/pyhf/commandline.py\n--- a/pyhf/commandline.py\n+++ b/pyhf/commandline.py\n@@ -12,9 +12,11 @@\n from . import writexml\n from .utils import runOnePoint\n from .pdf import Model\n+from .version import __version__\n \n \n @click.group(context_settings=dict(help_option_n...
1,453
107
gh_patches_debug_33199
rasdani/github-patches
git_diff
python-poetry__poetry-1395
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- poetry shell does not activate virtualenv <!-- Checked checkbox should look like this: [x] --> - [x] I am on the [latest](https://github.com/sdispater/poetry/releases/latest) Poetry version. - [x] I have s...
diff --git a/poetry/console/commands/shell.py b/poetry/console/commands/shell.py --- a/poetry/console/commands/shell.py +++ b/poetry/console/commands/shell.py @@ -36,5 +36,5 @@ # Setting this to avoid spawning unnecessary nested shells environ["POETRY_ACTIVE"] = "1" shell = Shell.get() - ...
{"golden_diff": "diff --git a/poetry/console/commands/shell.py b/poetry/console/commands/shell.py\n--- a/poetry/console/commands/shell.py\n+++ b/poetry/console/commands/shell.py\n@@ -36,5 +36,5 @@\n # Setting this to avoid spawning unnecessary nested shells\n environ[\"POETRY_ACTIVE\"] = \"1\"\n ...
1,351
623
gh_patches_debug_10279
rasdani/github-patches
git_diff
streamlit__streamlit-8497
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Altair support - Layer charts, `.resolve_scale` dont appear to work # Summary Altair appears to work just fine inside streamlit, but I have problems getting layer charts to work. Note - Concat (vert/horizo...
diff --git a/e2e_playwright/st_altair_chart.py b/e2e_playwright/st_altair_chart.py --- a/e2e_playwright/st_altair_chart.py +++ b/e2e_playwright/st_altair_chart.py @@ -116,3 +116,20 @@ c2 = alt.Chart(df1).mark_line().encode(alt.X("x"), alt.Y("y2")) st.altair_chart(c1 & c2, use_container_width=True) + +from altair.ex...
{"golden_diff": "diff --git a/e2e_playwright/st_altair_chart.py b/e2e_playwright/st_altair_chart.py\n--- a/e2e_playwright/st_altair_chart.py\n+++ b/e2e_playwright/st_altair_chart.py\n@@ -116,3 +116,20 @@\n c2 = alt.Chart(df1).mark_line().encode(alt.X(\"x\"), alt.Y(\"y2\"))\n \n st.altair_chart(c1 & c2, use_container_wi...
1,934
298
gh_patches_debug_15549
rasdani/github-patches
git_diff
freedomofpress__securedrop-5674
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Dual distro support broke "securedrop-admin verify" ## Description When adding support for Focal to the configuration tests in #5529, a check of the `MOLECULE_SCENARIO_NAME` environment variable broke `sec...
diff --git a/molecule/testinfra/conftest.py b/molecule/testinfra/conftest.py --- a/molecule/testinfra/conftest.py +++ b/molecule/testinfra/conftest.py @@ -28,7 +28,16 @@ with io.open(filepath, 'r') as f: hostvars = yaml.safe_load(f) - if os.environ.get("MOLECULE_SCENARIO_NAME").endswith("focal"): + ...
{"golden_diff": "diff --git a/molecule/testinfra/conftest.py b/molecule/testinfra/conftest.py\n--- a/molecule/testinfra/conftest.py\n+++ b/molecule/testinfra/conftest.py\n@@ -28,7 +28,16 @@\n with io.open(filepath, 'r') as f:\n hostvars = yaml.safe_load(f)\n \n- if os.environ.get(\"MOLECULE_SCENARIO_NAME...
1,159
276
gh_patches_debug_1314
rasdani/github-patches
git_diff
apache__airflow-9699
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- TimeSensor triggers immediately when used over midnight (UTC) <!-- Welcome to Apache Airflow! For a smooth issue process, try to answer the following questions. Don't worry if they're not all applicable;...
diff --git a/airflow/sensors/time_sensor.py b/airflow/sensors/time_sensor.py --- a/airflow/sensors/time_sensor.py +++ b/airflow/sensors/time_sensor.py @@ -36,4 +36,4 @@ def poke(self, context): self.log.info('Checking if the time (%s) has come', self.target_time) - return timezone.utcnow().time()...
{"golden_diff": "diff --git a/airflow/sensors/time_sensor.py b/airflow/sensors/time_sensor.py\n--- a/airflow/sensors/time_sensor.py\n+++ b/airflow/sensors/time_sensor.py\n@@ -36,4 +36,4 @@\n \n def poke(self, context):\n self.log.info('Checking if the time (%s) has come', self.target_time)\n- return ...
1,200
114
gh_patches_debug_6124
rasdani/github-patches
git_diff
conan-io__conan-3087
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- package_id() regression bug in conan 1.4.x? Consider the following `conanfile.py`: ```python from conans import ConanFile class TestConan(ConanFile): name = "Test" version = "0.0.1" settin...
diff --git a/conans/client/graph/printer.py b/conans/client/graph/printer.py --- a/conans/client/graph/printer.py +++ b/conans/client/graph/printer.py @@ -7,7 +7,7 @@ all_nodes = [] ids = set() for node in sorted(n for n in deps_graph.nodes if n.conan_ref): - package_id = PackageReference(node.con...
{"golden_diff": "diff --git a/conans/client/graph/printer.py b/conans/client/graph/printer.py\n--- a/conans/client/graph/printer.py\n+++ b/conans/client/graph/printer.py\n@@ -7,7 +7,7 @@\n all_nodes = []\n ids = set()\n for node in sorted(n for n in deps_graph.nodes if n.conan_ref):\n- package_id = P...
1,372
137
gh_patches_debug_25780
rasdani/github-patches
git_diff
pre-commit__pre-commit-1382
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- No colors when hooks are run by a git commit Hi, I use pre-commit at home on linux which works perfect. But at work I have a windows pc. Here I have problems with the colorfull output. When the hooks are...
diff --git a/pre_commit/color.py b/pre_commit/color.py --- a/pre_commit/color.py +++ b/pre_commit/color.py @@ -11,7 +11,7 @@ from ctypes.wintypes import DWORD from ctypes.wintypes import HANDLE - STD_OUTPUT_HANDLE = -11 + STD_ERROR_HANDLE = -12 ENABLE_VIRTUAL_TERMINAL_PROCESSI...
{"golden_diff": "diff --git a/pre_commit/color.py b/pre_commit/color.py\n--- a/pre_commit/color.py\n+++ b/pre_commit/color.py\n@@ -11,7 +11,7 @@\n from ctypes.wintypes import DWORD\n from ctypes.wintypes import HANDLE\n \n- STD_OUTPUT_HANDLE = -11\n+ STD_ERROR_HANDLE = -12\n ENABLE...
1,331
304
gh_patches_debug_27472
rasdani/github-patches
git_diff
liqd__a4-meinberlin-2899
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- voting in brainstorming the votings are shown on pop up for ideas within brainstorming although there is no voting. <img width="332" alt="bildschirmfoto 2019-02-05 um 15 01 57" src="https://user-images.git...
diff --git a/meinberlin/apps/newsletters/emails.py b/meinberlin/apps/newsletters/emails.py --- a/meinberlin/apps/newsletters/emails.py +++ b/meinberlin/apps/newsletters/emails.py @@ -50,5 +50,6 @@ def get_receivers(self): return User.objects\ + .filter(get_newsletters=True)\ .fil...
{"golden_diff": "diff --git a/meinberlin/apps/newsletters/emails.py b/meinberlin/apps/newsletters/emails.py\n--- a/meinberlin/apps/newsletters/emails.py\n+++ b/meinberlin/apps/newsletters/emails.py\n@@ -50,5 +50,6 @@\n \n def get_receivers(self):\n return User.objects\\\n+ .filter(get_newsletters...
1,236
401
gh_patches_debug_20696
rasdani/github-patches
git_diff
DataDog__dd-trace-py-887
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- tests.internal.runtime.test_runtime_metrics.TestRuntimeWorker.test_worker_metrics fails randomly ``` def test_worker_metrics(self): self.tracer.configure(collect_metrics=True) wit...
diff --git a/ddtrace/internal/runtime/runtime_metrics.py b/ddtrace/internal/runtime/runtime_metrics.py --- a/ddtrace/internal/runtime/runtime_metrics.py +++ b/ddtrace/internal/runtime/runtime_metrics.py @@ -60,10 +60,10 @@ FLUSH_INTERVAL = 10 - def __init__(self, statsd_client, flush_interval=None): + de...
{"golden_diff": "diff --git a/ddtrace/internal/runtime/runtime_metrics.py b/ddtrace/internal/runtime/runtime_metrics.py\n--- a/ddtrace/internal/runtime/runtime_metrics.py\n+++ b/ddtrace/internal/runtime/runtime_metrics.py\n@@ -60,10 +60,10 @@\n \n FLUSH_INTERVAL = 10\n \n- def __init__(self, statsd_client, flush...
1,384
253
gh_patches_debug_14602
rasdani/github-patches
git_diff
akvo__akvo-rsr-3173
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Error in disaggregation view The PGView for disaggregation is incorrect. It includes data from all updates rather than just approved updates. --- END ISSUE --- Below are some code segments, each from a rele...
diff --git a/akvo/rsr/models/result/indicator_period_aggregation.py b/akvo/rsr/models/result/indicator_period_aggregation.py --- a/akvo/rsr/models/result/indicator_period_aggregation.py +++ b/akvo/rsr/models/result/indicator_period_aggregation.py @@ -52,12 +52,16 @@ DISAGG_SQL = """ WITH aggregated_disaggs AS ( ...
{"golden_diff": "diff --git a/akvo/rsr/models/result/indicator_period_aggregation.py b/akvo/rsr/models/result/indicator_period_aggregation.py\n--- a/akvo/rsr/models/result/indicator_period_aggregation.py\n+++ b/akvo/rsr/models/result/indicator_period_aggregation.py\n@@ -52,12 +52,16 @@\n DISAGG_SQL = \"\"\"\n WITH ...
1,312
293
gh_patches_debug_15246
rasdani/github-patches
git_diff
open-telemetry__opentelemetry-python-1194
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Update baggage header name As per the spec, baggage propagation must use the header as specified in the w3c baggage specification https://github.com/open-telemetry/opentelemetry-specification/blob/master/spec...
diff --git a/opentelemetry-api/src/opentelemetry/baggage/propagation/__init__.py b/opentelemetry-api/src/opentelemetry/baggage/propagation/__init__.py --- a/opentelemetry-api/src/opentelemetry/baggage/propagation/__init__.py +++ b/opentelemetry-api/src/opentelemetry/baggage/propagation/__init__.py @@ -25,7 +25,7 @@ ...
{"golden_diff": "diff --git a/opentelemetry-api/src/opentelemetry/baggage/propagation/__init__.py b/opentelemetry-api/src/opentelemetry/baggage/propagation/__init__.py\n--- a/opentelemetry-api/src/opentelemetry/baggage/propagation/__init__.py\n+++ b/opentelemetry-api/src/opentelemetry/baggage/propagation/__init__.py\n@...
1,295
260
gh_patches_debug_456
rasdani/github-patches
git_diff
dbt-labs__dbt-core-2537
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Python 3.6.2 doesn't work with dbt 0.17.0 ### Describe the bug Running dbt on python <= 3.6.2 results in an error that `name 'TimestampSnapshotConfig' is not defined`. 3.6.3 is unaffected. ### Steps To Re...
diff --git a/core/setup.py b/core/setup.py --- a/core/setup.py +++ b/core/setup.py @@ -86,5 +86,5 @@ 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', ], - python_requires=">=3.6.2", + python_requires=">=3.6.3", )
{"golden_diff": "diff --git a/core/setup.py b/core/setup.py\n--- a/core/setup.py\n+++ b/core/setup.py\n@@ -86,5 +86,5 @@\n 'Programming Language :: Python :: 3.7',\n 'Programming Language :: Python :: 3.8',\n ],\n- python_requires=\">=3.6.2\",\n+ python_requires=\">=3.6.3\",\n )\n", "issue": "...
1,329
87
gh_patches_debug_31382
rasdani/github-patches
git_diff
alltheplaces__alltheplaces-2814
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Spider pricerite is broken During the global build at 2021-05-26-14-42-23, spider **pricerite** failed with **0 features** and **2 errors**. Here's [the log](https://data.alltheplaces.xyz/runs/2021-05-26-14-...
diff --git a/locations/spiders/pricerite.py b/locations/spiders/pricerite.py --- a/locations/spiders/pricerite.py +++ b/locations/spiders/pricerite.py @@ -5,32 +5,36 @@ import scrapy from locations.items import GeojsonPointItem -from locations.hours import OpeningHours class PriceRiteSpider(scrapy.Spider): ...
{"golden_diff": "diff --git a/locations/spiders/pricerite.py b/locations/spiders/pricerite.py\n--- a/locations/spiders/pricerite.py\n+++ b/locations/spiders/pricerite.py\n@@ -5,32 +5,36 @@\n import scrapy\n \n from locations.items import GeojsonPointItem\n-from locations.hours import OpeningHours\n \n \n class PriceRit...
758
489
gh_patches_debug_64324
rasdani/github-patches
git_diff
pex-tool__pex-630
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Release 1.6.0 On the docket: + (longterm fix) unhandled AttributeError during pex bootstrapping with PEX_PATH #598 + Vendor setuptools / wheel. #607 --- END ISSUE --- Below are some code segments, each fr...
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__ = '1.5.3' +__version__ = '1.6.0'
{"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__ = '1.5.3'\n+__version__ = '1.6.0'\n", "issue"...
354
94
gh_patches_debug_692
rasdani/github-patches
git_diff
hylang__hy-2312
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- New release It's time for a new release soon. Here are the things I'd like to get done, or at least try to get done, first. If you think you'll make a PR soon that you'd also like to get in for this release, ...
diff --git a/docs/conf.py b/docs/conf.py --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,7 @@ html_show_sphinx = False html_context = dict( - hy_descriptive_version=hy_descriptive_version, - has_active_alpha=True, -) + hy_descriptive_version=hy_descriptive_version) highlight_language = "clojure"
{"golden_diff": "diff --git a/docs/conf.py b/docs/conf.py\n--- a/docs/conf.py\n+++ b/docs/conf.py\n@@ -61,9 +61,7 @@\n html_show_sphinx = False\n \n html_context = dict(\n- hy_descriptive_version=hy_descriptive_version,\n- has_active_alpha=True,\n-)\n+ hy_descriptive_version=hy_descriptive_version)\n \n highli...
1,780
89
gh_patches_debug_28222
rasdani/github-patches
git_diff
scikit-hep__awkward-1650
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- ak.fields (v2) passes a RecordArray's internal fields by reference Okay, so I hadn't noticed that Awkward v2's fields are passed by reference, which exposes them to the danger that someone might modify them d...
diff --git a/src/awkward/_v2/operations/ak_fields.py b/src/awkward/_v2/operations/ak_fields.py --- a/src/awkward/_v2/operations/ak_fields.py +++ b/src/awkward/_v2/operations/ak_fields.py @@ -27,4 +27,4 @@ def _impl(array): layout = ak._v2.operations.to_layout(array, allow_record=True, allow_other=False) - re...
{"golden_diff": "diff --git a/src/awkward/_v2/operations/ak_fields.py b/src/awkward/_v2/operations/ak_fields.py\n--- a/src/awkward/_v2/operations/ak_fields.py\n+++ b/src/awkward/_v2/operations/ak_fields.py\n@@ -27,4 +27,4 @@\n \n def _impl(array):\n layout = ak._v2.operations.to_layout(array, allow_record=True, all...
1,562
428
gh_patches_debug_7366
rasdani/github-patches
git_diff
aws-cloudformation__cfn-lint-2665
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- cfn-lint throws error when !ToJsonString contains int value ### CloudFormation Lint Version 0.76.2 ### What operating system are you using? Ubuntu ### Describe the bug Unexpected internal error during li...
diff --git a/src/cfnlint/languageExtensions.py b/src/cfnlint/languageExtensions.py --- a/src/cfnlint/languageExtensions.py +++ b/src/cfnlint/languageExtensions.py @@ -29,7 +29,11 @@ ): if isinstance(fn_object_val, dict): ref = "Ref" - ref_list = [val[ref] for key, val in fn_object_...
{"golden_diff": "diff --git a/src/cfnlint/languageExtensions.py b/src/cfnlint/languageExtensions.py\n--- a/src/cfnlint/languageExtensions.py\n+++ b/src/cfnlint/languageExtensions.py\n@@ -29,7 +29,11 @@\n ):\n if isinstance(fn_object_val, dict):\n ref = \"Ref\"\n- ref_list = [val[ref] ...
1,760
154
gh_patches_debug_3322
rasdani/github-patches
git_diff
holoviz__panel-3100
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Django autoload_handle broken #### ALL software version info Panel = 0.13.0a25 Bokeh = 2.4.2 Django = 2.2.14 When loading a Panel app embedded in Django, the `AutoloadJsConsumer` call just hangs. Afte...
diff --git a/panel/io/django.py b/panel/io/django.py --- a/panel/io/django.py +++ b/panel/io/django.py @@ -34,7 +34,7 @@ server_url = None resources = self.resources(server_url) - js = autoload_js_script(resources, session.token, element_id, app_path, absolute_url) + js = autoload_js_script(sessio...
{"golden_diff": "diff --git a/panel/io/django.py b/panel/io/django.py\n--- a/panel/io/django.py\n+++ b/panel/io/django.py\n@@ -34,7 +34,7 @@\n server_url = None\n \n resources = self.resources(server_url)\n- js = autoload_js_script(resources, session.token, element_id, app_path, absolute_url)\n+ js = ...
994
124
gh_patches_debug_875
rasdani/github-patches
git_diff
dbt-labs__dbt-core-5507
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [CT-876] Could we also now remove our upper bound on `MarkupSafe`, which we put in place earlier this year due to incompatibility with Jinja2? Remove our upper bound on `MarkupSafe`, which we put in place ear...
diff --git a/core/setup.py b/core/setup.py --- a/core/setup.py +++ b/core/setup.py @@ -49,7 +49,6 @@ }, install_requires=[ "Jinja2==3.1.2", - "MarkupSafe>=0.23,<2.1", "agate>=1.6,<1.6.4", "click>=7.0,<9", "colorama>=0.3.9,<0.4.6",
{"golden_diff": "diff --git a/core/setup.py b/core/setup.py\n--- a/core/setup.py\n+++ b/core/setup.py\n@@ -49,7 +49,6 @@\n },\n install_requires=[\n \"Jinja2==3.1.2\",\n- \"MarkupSafe>=0.23,<2.1\",\n \"agate>=1.6,<1.6.4\",\n \"click>=7.0,<9\",\n \"colorama>=0.3.9,<0.4.6\",...
1,343
110
gh_patches_debug_29931
rasdani/github-patches
git_diff
deepset-ai__haystack-5811
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Change `SentenceTransformersTextEmbedder` to non-batch mode --- END ISSUE --- Below are some code segments, each from a relevant file. One or more of these files may contain bugs. --- BEGIN FILES --- Path:...
diff --git a/haystack/preview/components/embedders/sentence_transformers_text_embedder.py b/haystack/preview/components/embedders/sentence_transformers_text_embedder.py --- a/haystack/preview/components/embedders/sentence_transformers_text_embedder.py +++ b/haystack/preview/components/embedders/sentence_transformers_te...
{"golden_diff": "diff --git a/haystack/preview/components/embedders/sentence_transformers_text_embedder.py b/haystack/preview/components/embedders/sentence_transformers_text_embedder.py\n--- a/haystack/preview/components/embedders/sentence_transformers_text_embedder.py\n+++ b/haystack/preview/components/embedders/sente...
1,367
412
gh_patches_debug_6558
rasdani/github-patches
git_diff
strawberry-graphql__strawberry-615
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- strawberry.utils.typing.get_optional_annotation fails when provided an `Optional[Union]` `strawberry.utils.typing.get_optional_annotation` fails when provided an `Optional[Union]` ```pycon >>> from typing...
diff --git a/strawberry/utils/typing.py b/strawberry/utils/typing.py --- a/strawberry/utils/typing.py +++ b/strawberry/utils/typing.py @@ -42,7 +42,14 @@ def get_optional_annotation(annotation: Type) -> Type: types = annotation.__args__ - non_none_types = [x for x in types if x != None.__class__] # noqa:E71...
{"golden_diff": "diff --git a/strawberry/utils/typing.py b/strawberry/utils/typing.py\n--- a/strawberry/utils/typing.py\n+++ b/strawberry/utils/typing.py\n@@ -42,7 +42,14 @@\n \n def get_optional_annotation(annotation: Type) -> Type:\n types = annotation.__args__\n- non_none_types = [x for x in types if x != Non...
1,526
194
gh_patches_debug_32082
rasdani/github-patches
git_diff
aws__aws-cli-900
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Provide better error message for invalid endpoint urls The error message could provide more context about what exactly went wrong with the request. For example: ``` $ aws s3api list-buckets --endpoint-url e...
diff --git a/awscli/compat.py b/awscli/compat.py --- a/awscli/compat.py +++ b/awscli/compat.py @@ -15,6 +15,7 @@ if six.PY3: import locale + import urllib.parse as urlparse def get_stdout_text_writer(): return sys.stdout @@ -38,6 +39,7 @@ import codecs import locale import io +...
{"golden_diff": "diff --git a/awscli/compat.py b/awscli/compat.py\n--- a/awscli/compat.py\n+++ b/awscli/compat.py\n@@ -15,6 +15,7 @@\n \n if six.PY3:\n import locale\n+ import urllib.parse as urlparse\n \n def get_stdout_text_writer():\n return sys.stdout\n@@ -38,6 +39,7 @@\n import codecs\n ...
1,648
440
gh_patches_debug_7632
rasdani/github-patches
git_diff
aws__aws-cli-4308
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- aws emr create-cluster help command returns error how to reproduce 1. upgrade to awscli 1.16.190 or 1.16.194 or 1.16.196 at the moment it's enough to install via pip either on macOS(1.16.194) or on linux...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -54,6 +54,7 @@ 'bin/aws_bash_completer'], packages=find_packages(exclude=['tests*']), package_data={'awscli': ['data/*.json', 'examples/*/*.rst', + 'examples/*/*.txt', 'examples/*/*/*.txt', ...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -54,6 +54,7 @@\n 'bin/aws_bash_completer'],\n packages=find_packages(exclude=['tests*']),\n package_data={'awscli': ['data/*.json', 'examples/*/*.rst',\n+ 'examples/*/*.txt', 'examples/...
1,723
110
gh_patches_debug_6935
rasdani/github-patches
git_diff
googleapis__google-auth-library-python-51
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Create system tests for service account-based credentials --- END ISSUE --- Below are some code segments, each from a relevant file. One or more of these files may contain bugs. --- BEGIN FILES --- Path: `...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ description='Google Authentication Library', long_description=long_description, url='https://github.com/GoogleCloudPlatform/google-auth-library-python', - packages=find_packages(exclude='tests'), + packages=find_packag...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -35,7 +35,7 @@\n description='Google Authentication Library',\n long_description=long_description,\n url='https://github.com/GoogleCloudPlatform/google-auth-library-python',\n- packages=find_packages(exclude='tests'),\n...
834
109
gh_patches_debug_18389
rasdani/github-patches
git_diff
akvo__akvo-rsr-1829
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- IATI import ## Test plan 1. Take any IATI file from the [IATI registry](http://iatiregistry.org) 2. Make sure the reporting organisation is in RSR, with the correct IATI Organisation ID and 'Reportable' set t...
diff --git a/akvo/rsr/migrations/0032_auto_20151001_0956.py b/akvo/rsr/migrations/0032_auto_20151001_0956.py --- a/akvo/rsr/migrations/0032_auto_20151001_0956.py +++ b/akvo/rsr/migrations/0032_auto_20151001_0956.py @@ -116,4 +116,10 @@ field=models.DecimalField(decimal_places=2, max_digits=14, blank=True, ...
{"golden_diff": "diff --git a/akvo/rsr/migrations/0032_auto_20151001_0956.py b/akvo/rsr/migrations/0032_auto_20151001_0956.py\n--- a/akvo/rsr/migrations/0032_auto_20151001_0956.py\n+++ b/akvo/rsr/migrations/0032_auto_20151001_0956.py\n@@ -116,4 +116,10 @@\n field=models.DecimalField(decimal_places=2, max_di...
2,020
374
gh_patches_debug_40166
rasdani/github-patches
git_diff
learningequality__kolibri-2092
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Setup wizard is broken ## Summary * Submitting the setup wizard returns `{language_code: ["This field is required."]}` ## System information - Version: 0.6 ## How to reproduce 1. Go through se...
diff --git a/kolibri/core/device/migrations/0001_initial.py b/kolibri/core/device/migrations/0001_initial.py --- a/kolibri/core/device/migrations/0001_initial.py +++ b/kolibri/core/device/migrations/0001_initial.py @@ -29,7 +29,7 @@ fields=[ ('id', models.AutoField(auto_created=True, prima...
{"golden_diff": "diff --git a/kolibri/core/device/migrations/0001_initial.py b/kolibri/core/device/migrations/0001_initial.py\n--- a/kolibri/core/device/migrations/0001_initial.py\n+++ b/kolibri/core/device/migrations/0001_initial.py\n@@ -29,7 +29,7 @@\n fields=[\n ('id', models.AutoField(au...
1,679
718
gh_patches_debug_24573
rasdani/github-patches
git_diff
TabbycatDebate__tabbycat-1258
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Error message for BP voting ballots crashes with 500 Sentry Issue: [BACKEND-2BV](https://sentry.io/organizations/tabbycat/issues/1252961179/?referrer=github_integration) ``` AttributeError: 'tuple' object ha...
diff --git a/tabbycat/options/views.py b/tabbycat/options/views.py --- a/tabbycat/options/views.py +++ b/tabbycat/options/views.py @@ -40,13 +40,13 @@ if t.pref('teams_in_debate') == 'bp': if t.pref('ballots_per_debate_prelim') == 'per-adj' or \ t.pref('ballots_per_debate_elim') ==...
{"golden_diff": "diff --git a/tabbycat/options/views.py b/tabbycat/options/views.py\n--- a/tabbycat/options/views.py\n+++ b/tabbycat/options/views.py\n@@ -40,13 +40,13 @@\n if t.pref('teams_in_debate') == 'bp':\n if t.pref('ballots_per_debate_prelim') == 'per-adj' or \\\n t.pref('ball...
1,823
296
gh_patches_debug_21936
rasdani/github-patches
git_diff
beeware__toga-1373
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Use Alpha Version of Pythonnet **Description** Pythonnet has released a few days ago an [alpha version](https://pypi.org/project/pythonnet/3.0.0a1/) of Pythonnet 3.0. ATM we use a hashed version (8d93c39d) ...
diff --git a/src/winforms/setup.py b/src/winforms/setup.py --- a/src/winforms/setup.py +++ b/src/winforms/setup.py @@ -24,14 +24,11 @@ # and their development effort seems to be focussed on the 3.X branch; # they've indicated they're not planning to make the 2.X branch compatible # with Pytho...
{"golden_diff": "diff --git a/src/winforms/setup.py b/src/winforms/setup.py\n--- a/src/winforms/setup.py\n+++ b/src/winforms/setup.py\n@@ -24,14 +24,11 @@\n # and their development effort seems to be focussed on the 3.X branch;\n # they've indicated they're not planning to make the 2.X branch compatible...
918
381
gh_patches_debug_26975
rasdani/github-patches
git_diff
inventree__InvenTree-4151
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [FR] :checkered_flag: Simple API endpoint to change user metadata ### Please verify that this feature request has NOT been suggested before. - [X] I checked and didn't find similar feature request ### Probl...
diff --git a/InvenTree/users/api.py b/InvenTree/users/api.py --- a/InvenTree/users/api.py +++ b/InvenTree/users/api.py @@ -10,7 +10,7 @@ from rest_framework.response import Response from rest_framework.views import APIView -from InvenTree.mixins import ListAPI, RetrieveAPI +from InvenTree.mixins import ListAPI, Ret...
{"golden_diff": "diff --git a/InvenTree/users/api.py b/InvenTree/users/api.py\n--- a/InvenTree/users/api.py\n+++ b/InvenTree/users/api.py\n@@ -10,7 +10,7 @@\n from rest_framework.response import Response\n from rest_framework.views import APIView\n \n-from InvenTree.mixins import ListAPI, RetrieveAPI\n+from InvenTree.m...
1,948
321
gh_patches_debug_23370
rasdani/github-patches
git_diff
python-gitlab__python-gitlab-1373
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Cannot list package files ## Description of the problem, including code/CLI snippet [Listing package files](https://docs.gitlab.com/ee/api/packages.html#list-package-files) appears to be unsupported. The A...
diff --git a/gitlab/v4/objects/packages.py b/gitlab/v4/objects/packages.py --- a/gitlab/v4/objects/packages.py +++ b/gitlab/v4/objects/packages.py @@ -1,12 +1,13 @@ from gitlab.base import RESTManager, RESTObject from gitlab.mixins import DeleteMixin, GetMixin, ListMixin, ObjectDeleteMixin - __all__ = [ "Grou...
{"golden_diff": "diff --git a/gitlab/v4/objects/packages.py b/gitlab/v4/objects/packages.py\n--- a/gitlab/v4/objects/packages.py\n+++ b/gitlab/v4/objects/packages.py\n@@ -1,12 +1,13 @@\n from gitlab.base import RESTManager, RESTObject\n from gitlab.mixins import DeleteMixin, GetMixin, ListMixin, ObjectDeleteMixin\n \n-...
713
293
gh_patches_debug_29144
rasdani/github-patches
git_diff
qtile__qtile-2235
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- No filename provided Image widget causes QTile to crash. # The issue When no filename argument, OR an invalid filename is provided for the Image widget, Qtile seems to crash, and needs to be killed to restar...
diff --git a/libqtile/widget/image.py b/libqtile/widget/image.py --- a/libqtile/widget/image.py +++ b/libqtile/widget/image.py @@ -53,14 +53,17 @@ def _configure(self, qtile, bar): base._Widget._configure(self, qtile, bar) + self.img = None if not self.filename: - raise Valu...
{"golden_diff": "diff --git a/libqtile/widget/image.py b/libqtile/widget/image.py\n--- a/libqtile/widget/image.py\n+++ b/libqtile/widget/image.py\n@@ -53,14 +53,17 @@\n \n def _configure(self, qtile, bar):\n base._Widget._configure(self, qtile, bar)\n+ self.img = None\n \n if not self.filenam...
1,608
319
gh_patches_debug_2346
rasdani/github-patches
git_diff
mesonbuild__meson-10268
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- -Dbuildtype=release fails on CompCert **Describe the bug** Building with CompCert on release mode fails. The error message is as follows: ``` ccomp: error: Unknown option `-03' ``` Note that this unkno...
diff --git a/mesonbuild/compilers/mixins/compcert.py b/mesonbuild/compilers/mixins/compcert.py --- a/mesonbuild/compilers/mixins/compcert.py +++ b/mesonbuild/compilers/mixins/compcert.py @@ -32,7 +32,7 @@ 'plain': [''], 'debug': ['-O0', '-g'], 'debugoptimized': ['-O0', '-g'], - 'release': ['-03'], + ...
{"golden_diff": "diff --git a/mesonbuild/compilers/mixins/compcert.py b/mesonbuild/compilers/mixins/compcert.py\n--- a/mesonbuild/compilers/mixins/compcert.py\n+++ b/mesonbuild/compilers/mixins/compcert.py\n@@ -32,7 +32,7 @@\n 'plain': [''],\n 'debug': ['-O0', '-g'],\n 'debugoptimized': ['-O0', '-g'],\n- ...
1,916
153
gh_patches_debug_37602
rasdani/github-patches
git_diff
arviz-devs__arviz-625
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Remove load_data and save_data functions before 0.4 `load_data` and `save_data` are currently deprecated (after 0.3.1 release). They need to be removed after 0.4 (assuming next release is going to be 0.3.2). ...
diff --git a/arviz/data/__init__.py b/arviz/data/__init__.py --- a/arviz/data/__init__.py +++ b/arviz/data/__init__.py @@ -1,6 +1,6 @@ """Code for loading and manipulating data structures.""" from .inference_data import InferenceData, concat -from .io_netcdf import from_netcdf, to_netcdf, load_data, save_data +from ....
{"golden_diff": "diff --git a/arviz/data/__init__.py b/arviz/data/__init__.py\n--- a/arviz/data/__init__.py\n+++ b/arviz/data/__init__.py\n@@ -1,6 +1,6 @@\n \"\"\"Code for loading and manipulating data structures.\"\"\"\n from .inference_data import InferenceData, concat\n-from .io_netcdf import from_netcdf, to_netcdf,...
1,590
782
gh_patches_debug_21489
rasdani/github-patches
git_diff
pyinstaller__pyinstaller-3106
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- OS X ImportError: _sysconfigdata_m_darwin_ not found # Description When running a standalone executable that was built with PyInstaller on OS X, I receive the following error: ``` [7943] LOADER: Running py...
diff --git a/PyInstaller/hooks/hook-sysconfig.py b/PyInstaller/hooks/hook-sysconfig.py --- a/PyInstaller/hooks/hook-sysconfig.py +++ b/PyInstaller/hooks/hook-sysconfig.py @@ -17,7 +17,7 @@ import os from PyInstaller.utils.hooks import relpath_to_config_or_make -from PyInstaller.compat import is_py36, is_win +from P...
{"golden_diff": "diff --git a/PyInstaller/hooks/hook-sysconfig.py b/PyInstaller/hooks/hook-sysconfig.py\n--- a/PyInstaller/hooks/hook-sysconfig.py\n+++ b/PyInstaller/hooks/hook-sysconfig.py\n@@ -17,7 +17,7 @@\n import os\n \n from PyInstaller.utils.hooks import relpath_to_config_or_make\n-from PyInstaller.compat import...
1,775
293
gh_patches_debug_15681
rasdani/github-patches
git_diff
TheAlgorithms__Python-1461
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- DIRECTORY.md not being updated by TravisCI - [x] .travis.yml isn't updating DIRECTORY.md automatically as it should - [x] scripts/build_directory_md.py needs can have some minor changes too. #1461 --- END ...
diff --git a/scripts/build_directory_md.py b/scripts/build_directory_md.py --- a/scripts/build_directory_md.py +++ b/scripts/build_directory_md.py @@ -17,7 +17,7 @@ def md_prefix(i): - return f"{i * ' '}*" if i else "##" + return f"{i * ' '}*" if i else "\n##" def print_path(old_path: str, new_path: s...
{"golden_diff": "diff --git a/scripts/build_directory_md.py b/scripts/build_directory_md.py\n--- a/scripts/build_directory_md.py\n+++ b/scripts/build_directory_md.py\n@@ -17,7 +17,7 @@\n \n \n def md_prefix(i):\n- return f\"{i * ' '}*\" if i else \"##\"\n+ return f\"{i * ' '}*\" if i else \"\\n##\"\n \n \n def ...
796
213
gh_patches_debug_28663
rasdani/github-patches
git_diff
ray-project__ray-8177
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Ray async api is not working with uvloop. <!--Please include [tune], [rllib], [autoscaler] etc. in the issue title if relevant--> ### What is the problem? Current Ray async api uses asyncio event loop's...
diff --git a/python/ray/experimental/async_api.py b/python/ray/experimental/async_api.py --- a/python/ray/experimental/async_api.py +++ b/python/ray/experimental/async_api.py @@ -1,7 +1,4 @@ -# Note: asyncio is only compatible with Python 3 - import asyncio -import threading import ray from ray.experimental.async_...
{"golden_diff": "diff --git a/python/ray/experimental/async_api.py b/python/ray/experimental/async_api.py\n--- a/python/ray/experimental/async_api.py\n+++ b/python/ray/experimental/async_api.py\n@@ -1,7 +1,4 @@\n-# Note: asyncio is only compatible with Python 3\n-\n import asyncio\n-import threading\n \n import ray\n f...
1,449
399
gh_patches_debug_27254
rasdani/github-patches
git_diff
nextcloud__appstore-272
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Create documentation section for explaining certificates, signing and how it all works together App devs need a very quick tutorial/walkthrough in the docs on how to generate a new certificate pair, request t...
diff --git a/nextcloudappstore/core/forms.py b/nextcloudappstore/core/forms.py --- a/nextcloudappstore/core/forms.py +++ b/nextcloudappstore/core/forms.py @@ -13,15 +13,32 @@ class AppReleaseUploadForm(Form): download = CharField(label=_('Download link (tar.gz)'), max_length=256) - signature = CharField(widg...
{"golden_diff": "diff --git a/nextcloudappstore/core/forms.py b/nextcloudappstore/core/forms.py\n--- a/nextcloudappstore/core/forms.py\n+++ b/nextcloudappstore/core/forms.py\n@@ -13,15 +13,32 @@\n \n class AppReleaseUploadForm(Form):\n download = CharField(label=_('Download link (tar.gz)'), max_length=256)\n- si...
828
438
gh_patches_debug_26500
rasdani/github-patches
git_diff
pypa__setuptools-555
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- upload command doesn't prompt for password; raises TypeError # Problem statement If the `~/.pypirc` file does not contain a password like so: ``` ini [distutils] index-servers = pypitest [pypitest] re...
diff --git a/setuptools/command/upload.py b/setuptools/command/upload.py --- a/setuptools/command/upload.py +++ b/setuptools/command/upload.py @@ -3,13 +3,18 @@ class upload(orig.upload): """ - Override default upload behavior to look up password - in the keyring if available. + Override default upload...
{"golden_diff": "diff --git a/setuptools/command/upload.py b/setuptools/command/upload.py\n--- a/setuptools/command/upload.py\n+++ b/setuptools/command/upload.py\n@@ -3,13 +3,18 @@\n \n class upload(orig.upload):\n \"\"\"\n- Override default upload behavior to look up password\n- in the keyring if available.\...
1,059
353
gh_patches_debug_15619
rasdani/github-patches
git_diff
readthedocs__readthedocs.org-7002
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Better pattern to use PYTEST_OPTIONS In #4095 we incorporate the usage of `PYTEST_OPTIONS` to define a set of options to be environment-dependent. This way, we can extend/override these options used only in t...
diff --git a/readthedocs/conftest.py b/readthedocs/conftest.py --- a/readthedocs/conftest.py +++ b/readthedocs/conftest.py @@ -1,32 +1,6 @@ import pytest from rest_framework.test import APIClient - -try: - # TODO: this file is read/executed even when called from ``readthedocsinc``, - # so it's overriding the ...
{"golden_diff": "diff --git a/readthedocs/conftest.py b/readthedocs/conftest.py\n--- a/readthedocs/conftest.py\n+++ b/readthedocs/conftest.py\n@@ -1,32 +1,6 @@\n import pytest\n from rest_framework.test import APIClient\n \n-\n-try:\n- # TODO: this file is read/executed even when called from ``readthedocsinc``,\n- ...
664
263
gh_patches_debug_5965
rasdani/github-patches
git_diff
wagtail__wagtail-940
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Dropping Python 3.2 support Python 3.2 is quite old and many projects are dropping support for it (`libsass` and `treebeard` both have already). Should we consider dropping support as well? --- END ISSUE --...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -71,7 +71,6 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python ::...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -71,7 +71,6 @@\n 'Programming Language :: Python :: 2',\n 'Programming Language :: Python :: 2.7',\n 'Programming Language :: Python :: 3',\n- 'Programming Language :: Python :: 3.2',\n 'Programm...
1,110
107
gh_patches_debug_8392
rasdani/github-patches
git_diff
PokemonGoF__PokemonGo-Bot-5122
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Incense being used when false ### Expected Behavior Don't use Incense when set to false in config ### Actual Behavior Bot using incense when set to false in config ### Your FULL config.json (remove your use...
diff --git a/pokemongo_bot/cell_workers/use_incense.py b/pokemongo_bot/cell_workers/use_incense.py --- a/pokemongo_bot/cell_workers/use_incense.py +++ b/pokemongo_bot/cell_workers/use_incense.py @@ -42,7 +42,10 @@ def _has_count(self): return self.incense_ordinary_count > 0 or self.incense_spicy_count > 0 o...
{"golden_diff": "diff --git a/pokemongo_bot/cell_workers/use_incense.py b/pokemongo_bot/cell_workers/use_incense.py\n--- a/pokemongo_bot/cell_workers/use_incense.py\n+++ b/pokemongo_bot/cell_workers/use_incense.py\n@@ -42,7 +42,10 @@\n def _has_count(self):\n return self.incense_ordinary_count > 0 or self.inc...
1,378
177
gh_patches_debug_32415
rasdani/github-patches
git_diff
vllm-project__vllm-4368
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [Feature]: Cannot use FlashAttention backend for Volta and Turing GPUs. (but FlashAttention v1.0.9 supports Turing GPU.) ### 🚀 The feature, motivation and pitch Turing GPU can use FlashAttention v1.0.9 wh...
diff --git a/vllm/attention/selector.py b/vllm/attention/selector.py --- a/vllm/attention/selector.py +++ b/vllm/attention/selector.py @@ -25,7 +25,7 @@ def get_attn_backend(dtype: torch.dtype) -> Type[AttentionBackend]: backend = _which_attn_to_use(dtype) if backend == _Backend.FLASH_ATTN: - logger.i...
{"golden_diff": "diff --git a/vllm/attention/selector.py b/vllm/attention/selector.py\n--- a/vllm/attention/selector.py\n+++ b/vllm/attention/selector.py\n@@ -25,7 +25,7 @@\n def get_attn_backend(dtype: torch.dtype) -> Type[AttentionBackend]:\n backend = _which_attn_to_use(dtype)\n if backend == _Backend.FLASH_...
1,268
426
gh_patches_debug_22037
rasdani/github-patches
git_diff
netbox-community__netbox-9826
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Add Contacts field to Virtual Machines table view ### NetBox version v3.2.7 ### Feature type Change to existing functionality ### Proposed functionality I would suggest to add contacts field to Virtual M...
diff --git a/netbox/virtualization/tables/virtualmachines.py b/netbox/virtualization/tables/virtualmachines.py --- a/netbox/virtualization/tables/virtualmachines.py +++ b/netbox/virtualization/tables/virtualmachines.py @@ -48,6 +48,9 @@ order_by=('primary_ip4', 'primary_ip6'), verbose_name='IP Address...
{"golden_diff": "diff --git a/netbox/virtualization/tables/virtualmachines.py b/netbox/virtualization/tables/virtualmachines.py\n--- a/netbox/virtualization/tables/virtualmachines.py\n+++ b/netbox/virtualization/tables/virtualmachines.py\n@@ -48,6 +48,9 @@\n order_by=('primary_ip4', 'primary_ip6'),\n ve...
1,539
296
gh_patches_debug_26762
rasdani/github-patches
git_diff
pytorch__ignite-1312
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Improve Canberra metric ## 🚀 Feature Actual implementation of Canberra metric does not use absolute value on terms in denominator. Moreover, `sklearn` can be used in test. See https://arxiv.org/pdf/141...
diff --git a/ignite/contrib/metrics/regression/canberra_metric.py b/ignite/contrib/metrics/regression/canberra_metric.py --- a/ignite/contrib/metrics/regression/canberra_metric.py +++ b/ignite/contrib/metrics/regression/canberra_metric.py @@ -7,16 +7,19 @@ r""" Calculates the Canberra Metric. - :math:`\t...
{"golden_diff": "diff --git a/ignite/contrib/metrics/regression/canberra_metric.py b/ignite/contrib/metrics/regression/canberra_metric.py\n--- a/ignite/contrib/metrics/regression/canberra_metric.py\n+++ b/ignite/contrib/metrics/regression/canberra_metric.py\n@@ -7,16 +7,19 @@\n r\"\"\"\n Calculates the Canberra...
691
506
gh_patches_debug_27545
rasdani/github-patches
git_diff
encode__uvicorn-227
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Error integrating with Channels if 'lifespan' is not specified in router I'm not entirely sure if I should be posting this here or on `channels`. I'm using v0.3.12 which I believe has already introduced th...
diff --git a/uvicorn/middleware/message_logger.py b/uvicorn/middleware/message_logger.py --- a/uvicorn/middleware/message_logger.py +++ b/uvicorn/middleware/message_logger.py @@ -36,20 +36,27 @@ class MessageLoggerResponder: def __init__(self, scope, app, logger, task_counter): self.scope = scope - ...
{"golden_diff": "diff --git a/uvicorn/middleware/message_logger.py b/uvicorn/middleware/message_logger.py\n--- a/uvicorn/middleware/message_logger.py\n+++ b/uvicorn/middleware/message_logger.py\n@@ -36,20 +36,27 @@\n class MessageLoggerResponder:\n def __init__(self, scope, app, logger, task_counter):\n sel...
1,285
389
gh_patches_debug_2522
rasdani/github-patches
git_diff
googleapis__python-bigquery-189
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Packaging: prep for 1.0.0 release of `google-resumable-media-python`. See: https://github.com/googleapis/google-resumable-media-python/issues/138 --- END ISSUE --- Below are some code segments, each from a ...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ 'enum34; python_version < "3.4"', "google-api-core >= 1.21.0, < 2.0dev", "google-cloud-core >= 1.1.0, < 2.0dev", - "google-resumable-media >= 0.5.0, < 0.6dev", + "google-resumable-media >= 0.5.0, < 2.0dev", "six >...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -32,7 +32,7 @@\n 'enum34; python_version < \"3.4\"',\n \"google-api-core >= 1.21.0, < 2.0dev\",\n \"google-cloud-core >= 1.1.0, < 2.0dev\",\n- \"google-resumable-media >= 0.5.0, < 0.6dev\",\n+ \"google-resumable-medi...
1,780
156
gh_patches_debug_6181
rasdani/github-patches
git_diff
scrapy__scrapy-2816
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- DNSCACHE_ENABLED=False not working Originally reported by @softwarevamp on [StackOverflow](https://stackoverflow.com/questions/44877296/scrapy-with-dnscache-enabled-false-not-working): > When i run scrapy ...
diff --git a/scrapy/resolver.py b/scrapy/resolver.py --- a/scrapy/resolver.py +++ b/scrapy/resolver.py @@ -22,7 +22,8 @@ # to enforce Scrapy's DNS_TIMEOUT setting's value timeout = (self.timeout,) d = super(CachingThreadedResolver, self).getHostByName(name, timeout) - d.addCallback(sel...
{"golden_diff": "diff --git a/scrapy/resolver.py b/scrapy/resolver.py\n--- a/scrapy/resolver.py\n+++ b/scrapy/resolver.py\n@@ -22,7 +22,8 @@\n # to enforce Scrapy's DNS_TIMEOUT setting's value\n timeout = (self.timeout,)\n d = super(CachingThreadedResolver, self).getHostByName(name, timeout)\n- ...
1,334
130
gh_patches_debug_24499
rasdani/github-patches
git_diff
pre-commit__pre-commit-797
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- python_venv language fails to use python3 interpreter and is using python2.7 instead Apparently pre-commit failed to use python3 interpreter when I tried to add a hook and thus failed because venv module was ...
diff --git a/pre_commit/languages/python_venv.py b/pre_commit/languages/python_venv.py --- a/pre_commit/languages/python_venv.py +++ b/pre_commit/languages/python_venv.py @@ -1,6 +1,7 @@ from __future__ import unicode_literals import os.path +import sys from pre_commit.languages import python from pre_commit.ut...
{"golden_diff": "diff --git a/pre_commit/languages/python_venv.py b/pre_commit/languages/python_venv.py\n--- a/pre_commit/languages/python_venv.py\n+++ b/pre_commit/languages/python_venv.py\n@@ -1,6 +1,7 @@\n from __future__ import unicode_literals\n \n import os.path\n+import sys\n \n from pre_commit.languages import ...
1,195
288
gh_patches_debug_18504
rasdani/github-patches
git_diff
open-mmlab__mmdetection-2296
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- ImportError: cannot import name 'CARAFENAIVE' from 'mmdet.ops.carafe' The module name 'CARAFENAIVE' in file 'mmdet.ops.carafe.grad_check.py' shoud be 'CARAFENaive'. When I run this command 'python mmdet/ops/c...
diff --git a/mmdet/ops/carafe/grad_check.py b/mmdet/ops/carafe/grad_check.py --- a/mmdet/ops/carafe/grad_check.py +++ b/mmdet/ops/carafe/grad_check.py @@ -6,9 +6,8 @@ from torch.autograd import gradcheck sys.path.append(osp.abspath(osp.join(__file__, '../../'))) -from mmdet.ops.carafe import CARAFENAIVE # noqa: E4...
{"golden_diff": "diff --git a/mmdet/ops/carafe/grad_check.py b/mmdet/ops/carafe/grad_check.py\n--- a/mmdet/ops/carafe/grad_check.py\n+++ b/mmdet/ops/carafe/grad_check.py\n@@ -6,9 +6,8 @@\n from torch.autograd import gradcheck\n \n sys.path.append(osp.abspath(osp.join(__file__, '../../')))\n-from mmdet.ops.carafe import...
1,191
381
gh_patches_debug_19435
rasdani/github-patches
git_diff
Pylons__pyramid-3457
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- pyramid.exceptions.ConfigurationConflictError: <exception str() failed> **Describe the bug** While building an app I caused an error who's traceback ending the the following line: ``` pyramid.exceptions.Co...
diff --git a/src/pyramid/exceptions.py b/src/pyramid/exceptions.py --- a/src/pyramid/exceptions.py +++ b/src/pyramid/exceptions.py @@ -3,8 +3,6 @@ NotFound = HTTPNotFound # bw compat Forbidden = HTTPForbidden # bw compat -CR = '\n' - class BadCSRFOrigin(HTTPBadRequest): """ @@ -92,14 +90,13 @@ def ...
{"golden_diff": "diff --git a/src/pyramid/exceptions.py b/src/pyramid/exceptions.py\n--- a/src/pyramid/exceptions.py\n+++ b/src/pyramid/exceptions.py\n@@ -3,8 +3,6 @@\n NotFound = HTTPNotFound # bw compat\n Forbidden = HTTPForbidden # bw compat\n \n-CR = '\\n'\n-\n \n class BadCSRFOrigin(HTTPBadRequest):\n \"\"\"...
1,953
229
gh_patches_debug_9269
rasdani/github-patches
git_diff
autogluon__autogluon-2915
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Update scikit-learn-intelex version - [ ] Check if scikit-learn-intelex can be upgraded. --- END ISSUE --- Below are some code segments, each from a relevant file. One or more of these files may contain bug...
diff --git a/tabular/setup.py b/tabular/setup.py --- a/tabular/setup.py +++ b/tabular/setup.py @@ -50,7 +50,8 @@ f'{ag.PACKAGE_NAME}.core[all]=={version}', ], 'skex': [ - 'scikit-learn-intelex>=2021.6,<2021.8', + # Note: 2021.7 released on Sep 2022, version 2022.x doesn't exist (went di...
{"golden_diff": "diff --git a/tabular/setup.py b/tabular/setup.py\n--- a/tabular/setup.py\n+++ b/tabular/setup.py\n@@ -50,7 +50,8 @@\n f'{ag.PACKAGE_NAME}.core[all]=={version}',\n ],\n 'skex': [\n- 'scikit-learn-intelex>=2021.6,<2021.8',\n+ # Note: 2021.7 released on Sep 2022, version 2022...
1,462
237
gh_patches_debug_2274
rasdani/github-patches
git_diff
svthalia__concrexit-1844
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Event (registration) status message in the API ### Is your feature request related to a problem? Please describe. Currently, the event status messages (like 'you cannot cancel your registration without havin...
diff --git a/website/events/api/v2/serializers/event.py b/website/events/api/v2/serializers/event.py --- a/website/events/api/v2/serializers/event.py +++ b/website/events/api/v2/serializers/event.py @@ -32,6 +32,7 @@ "num_participants", "max_participants", "no_registration_message...
{"golden_diff": "diff --git a/website/events/api/v2/serializers/event.py b/website/events/api/v2/serializers/event.py\n--- a/website/events/api/v2/serializers/event.py\n+++ b/website/events/api/v2/serializers/event.py\n@@ -32,6 +32,7 @@\n \"num_participants\",\n \"max_participants\",\n ...
1,077
111
gh_patches_debug_28
rasdani/github-patches
git_diff
open-telemetry__opentelemetry-python-1889
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Run tests on Windows in CI --- END ISSUE --- Below are some code segments, each from a relevant file. One or more of these files may contain bugs. --- BEGIN FILES --- Path: `docs/getting_started/flask_exam...
diff --git a/docs/getting_started/flask_example.py b/docs/getting_started/flask_example.py --- a/docs/getting_started/flask_example.py +++ b/docs/getting_started/flask_example.py @@ -44,4 +44,4 @@ return "hello" -app.run(debug=True, port=5000) +app.run(port=5000)
{"golden_diff": "diff --git a/docs/getting_started/flask_example.py b/docs/getting_started/flask_example.py\n--- a/docs/getting_started/flask_example.py\n+++ b/docs/getting_started/flask_example.py\n@@ -44,4 +44,4 @@\n return \"hello\"\n \n \n-app.run(debug=True, port=5000)\n+app.run(port=5000)\n", "issue": "Run te...
672
84
gh_patches_debug_11592
rasdani/github-patches
git_diff
opsdroid__opsdroid-184
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- API.AI Error when network is disconnected The following error should be caught and warned about cleanly. ``` ERROR asyncio: Task exception was never retrieved future: <Task finished coro=<parse_apiai() d...
diff --git a/opsdroid/parsers/apiai.py b/opsdroid/parsers/apiai.py --- a/opsdroid/parsers/apiai.py +++ b/opsdroid/parsers/apiai.py @@ -38,8 +38,11 @@ # halt the application. If a skill throws an exception it just doesn't # give a response to the user, so an error response should be given. if 'access-toke...
{"golden_diff": "diff --git a/opsdroid/parsers/apiai.py b/opsdroid/parsers/apiai.py\n--- a/opsdroid/parsers/apiai.py\n+++ b/opsdroid/parsers/apiai.py\n@@ -38,8 +38,11 @@\n # halt the application. If a skill throws an exception it just doesn't\n # give a response to the user, so an error response should be given...
1,862
193
gh_patches_debug_9216
rasdani/github-patches
git_diff
interlegis__sapl-2102
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Audiências Públicas sem possibilidade de Edição Ao criar uma Audiência Pública e salva-la, não aparecem os metadados da matéria legislativa inseridas no preenchimento. Ao clicar em Editar, só aparece o tít...
diff --git a/sapl/audiencia/forms.py b/sapl/audiencia/forms.py --- a/sapl/audiencia/forms.py +++ b/sapl/audiencia/forms.py @@ -77,9 +77,11 @@ msg = _('A hora de fim não pode ser anterior a hora de ínicio') raise ValidationError(msg) - return self.cleaned_data + ...
{"golden_diff": "diff --git a/sapl/audiencia/forms.py b/sapl/audiencia/forms.py\n--- a/sapl/audiencia/forms.py\n+++ b/sapl/audiencia/forms.py\n@@ -77,9 +77,11 @@\n msg = _('A hora de fim n\u00e3o pode ser anterior a hora de \u00ednicio')\n raise ValidationError(msg)\n \n- ...
1,188
169
gh_patches_debug_15313
rasdani/github-patches
git_diff
SciTools__cartopy-1027
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Doc: gallery code links don't need to be underlined As an example, https://2-5282596-gh.circle-artifacts.com/0/root/project/docs/build/html/gallery/miscellanea/star_shaped_boundary.html#sphx-glr-gallery-misce...
diff --git a/docs/source/sphinxext/pre_sphinx_gallery.py b/docs/source/sphinxext/pre_sphinx_gallery.py --- a/docs/source/sphinxext/pre_sphinx_gallery.py +++ b/docs/source/sphinxext/pre_sphinx_gallery.py @@ -47,13 +47,12 @@ for fname in sorted_listdir: fpath = os.path.join(src_dir, fname) - __tags...
{"golden_diff": "diff --git a/docs/source/sphinxext/pre_sphinx_gallery.py b/docs/source/sphinxext/pre_sphinx_gallery.py\n--- a/docs/source/sphinxext/pre_sphinx_gallery.py\n+++ b/docs/source/sphinxext/pre_sphinx_gallery.py\n@@ -47,13 +47,12 @@\n \n for fname in sorted_listdir:\n fpath = os.path.join(src_dir,...
2,027
179
gh_patches_debug_31210
rasdani/github-patches
git_diff
ansible__ansible-lint-480
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- E202 (no leading zero for octal permission) False positive # Issue Type - Bug report # Ansible and Ansible Lint details - ansible-lint installation method: Ansible Galaxy use of ansible-lint # Desir...
diff --git a/lib/ansiblelint/rules/OctalPermissionsRule.py b/lib/ansiblelint/rules/OctalPermissionsRule.py --- a/lib/ansiblelint/rules/OctalPermissionsRule.py +++ b/lib/ansiblelint/rules/OctalPermissionsRule.py @@ -19,13 +19,12 @@ # THE SOFTWARE. from ansiblelint import AnsibleLintRule -import re import six c...
{"golden_diff": "diff --git a/lib/ansiblelint/rules/OctalPermissionsRule.py b/lib/ansiblelint/rules/OctalPermissionsRule.py\n--- a/lib/ansiblelint/rules/OctalPermissionsRule.py\n+++ b/lib/ansiblelint/rules/OctalPermissionsRule.py\n@@ -19,13 +19,12 @@\n # THE SOFTWARE.\n \n from ansiblelint import AnsibleLintRule\n-impo...
1,661
398
gh_patches_debug_32269
rasdani/github-patches
git_diff
strawberry-graphql__strawberry-491
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Add mypy plugin for strawberry.union We have a function to create union types and also add name and description that are used when generating the GraphQL schema[1]. Unfortunately MyPy complains when using ...
diff --git a/strawberry/ext/mypy_plugin.py b/strawberry/ext/mypy_plugin.py --- a/strawberry/ext/mypy_plugin.py +++ b/strawberry/ext/mypy_plugin.py @@ -1,8 +1,23 @@ from typing import Callable, Optional -from mypy.plugin import AnalyzeTypeContext, ClassDefContext, Plugin +from mypy.nodes import ( + GDEF, + Expr...
{"golden_diff": "diff --git a/strawberry/ext/mypy_plugin.py b/strawberry/ext/mypy_plugin.py\n--- a/strawberry/ext/mypy_plugin.py\n+++ b/strawberry/ext/mypy_plugin.py\n@@ -1,8 +1,23 @@\n from typing import Callable, Optional\n \n-from mypy.plugin import AnalyzeTypeContext, ClassDefContext, Plugin\n+from mypy.nodes impor...
835
594
gh_patches_debug_4568
rasdani/github-patches
git_diff
medtagger__MedTagger-466
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Add information about Dataset to Tasks endpoint ## Current Behavior Tasks endpoint returns list of all Tasks **without** information about their Datasets. ## Expected Behavior Each Task returned by t...
diff --git a/backend/medtagger/api/tasks/serializers.py b/backend/medtagger/api/tasks/serializers.py --- a/backend/medtagger/api/tasks/serializers.py +++ b/backend/medtagger/api/tasks/serializers.py @@ -27,6 +27,7 @@ 'name': fields.String(), 'image_path': fields.String(), 'tags': fields.List(fields.Neste...
{"golden_diff": "diff --git a/backend/medtagger/api/tasks/serializers.py b/backend/medtagger/api/tasks/serializers.py\n--- a/backend/medtagger/api/tasks/serializers.py\n+++ b/backend/medtagger/api/tasks/serializers.py\n@@ -27,6 +27,7 @@\n 'name': fields.String(),\n 'image_path': fields.String(),\n 'tags': f...
750
140
gh_patches_debug_29120
rasdani/github-patches
git_diff
OCA__social-262
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [10.0] mail_sendrid, Error: No module named simplejson > File ".../addons/oca-social/mail_sendgrid/controllers/json_request.py", line 4, in <module> > import simplejson > ImportError: No module named si...
diff --git a/mail_sendgrid/__manifest__.py b/mail_sendgrid/__manifest__.py --- a/mail_sendgrid/__manifest__.py +++ b/mail_sendgrid/__manifest__.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -# Copyright 2015-2017 Compassion CH (http://www.compassion.ch) +# Copyright 2015-2018 Compassion CH (http://www.compassion.ch) # L...
{"golden_diff": "diff --git a/mail_sendgrid/__manifest__.py b/mail_sendgrid/__manifest__.py\n--- a/mail_sendgrid/__manifest__.py\n+++ b/mail_sendgrid/__manifest__.py\n@@ -1,9 +1,9 @@\n # -*- coding: utf-8 -*-\n-# Copyright 2015-2017 Compassion CH (http://www.compassion.ch)\n+# Copyright 2015-2018 Compassion CH (http://...
1,026
471
gh_patches_debug_27142
rasdani/github-patches
git_diff
Netflix__lemur-302
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Chain Certificate is not exporting Hi Team, While extracting .p12 formatted file (which was exported from Lemur) we cannot find the Chain file on the same. Could you please let us know if we need to perform ...
diff --git a/lemur/plugins/lemur_openssl/plugin.py b/lemur/plugins/lemur_openssl/plugin.py --- a/lemur/plugins/lemur_openssl/plugin.py +++ b/lemur/plugins/lemur_openssl/plugin.py @@ -33,11 +33,12 @@ raise Exception(stderr) -def create_pkcs12(cert, p12_tmp, key, alias, passphrase): +def create_pkcs12(cert, ...
{"golden_diff": "diff --git a/lemur/plugins/lemur_openssl/plugin.py b/lemur/plugins/lemur_openssl/plugin.py\n--- a/lemur/plugins/lemur_openssl/plugin.py\n+++ b/lemur/plugins/lemur_openssl/plugin.py\n@@ -33,11 +33,12 @@\n raise Exception(stderr)\n \n \n-def create_pkcs12(cert, p12_tmp, key, alias, passphrase):\n...
1,515
365
gh_patches_debug_21335
rasdani/github-patches
git_diff
bridgecrewio__checkov-5189
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [CKV_AZURE_6] AKS API Server White Tests Failing with Correct Code **Describe the issue** [CKV_AZURE_6](https://github.com/bridgecrewio/checkov/tree/master/checkov/arm/checks/resource/AKSApiServerAuthorizedI...
diff --git a/checkov/terraform/checks/resource/azure/AKSApiServerAuthorizedIpRanges.py b/checkov/terraform/checks/resource/azure/AKSApiServerAuthorizedIpRanges.py --- a/checkov/terraform/checks/resource/azure/AKSApiServerAuthorizedIpRanges.py +++ b/checkov/terraform/checks/resource/azure/AKSApiServerAuthorizedIpRanges....
{"golden_diff": "diff --git a/checkov/terraform/checks/resource/azure/AKSApiServerAuthorizedIpRanges.py b/checkov/terraform/checks/resource/azure/AKSApiServerAuthorizedIpRanges.py\n--- a/checkov/terraform/checks/resource/azure/AKSApiServerAuthorizedIpRanges.py\n+++ b/checkov/terraform/checks/resource/azure/AKSApiServer...
1,029
281
gh_patches_debug_48523
rasdani/github-patches
git_diff
meltano__meltano-6488
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Support Node v16 Currently building the Meltano UI with Node 16 results in a crash while building libsass. [That library is deprecated](https://sass-lang.com/blog/libsass-is-deprecated), so we should switch t...
diff --git a/scripts/alembic_freeze.py b/scripts/alembic_freeze.py --- a/scripts/alembic_freeze.py +++ b/scripts/alembic_freeze.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -"""Script to freeze the Meltano database - executed by the Makefile.""" +"""Script to freeze the Meltano database - executed by GitHub CI.""" f...
{"golden_diff": "diff --git a/scripts/alembic_freeze.py b/scripts/alembic_freeze.py\n--- a/scripts/alembic_freeze.py\n+++ b/scripts/alembic_freeze.py\n@@ -1,6 +1,6 @@\n #!/usr/bin/env python3\n \n-\"\"\"Script to freeze the Meltano database - executed by the Makefile.\"\"\"\n+\"\"\"Script to freeze the Meltano database...
458
103
gh_patches_debug_2696
rasdani/github-patches
git_diff
dbt-labs__dbt-core-7080
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [CT-2225] [Bug] Suddenly getting ModuleNotFoundError: No module named 'pytz' ### Is this a new bug in dbt-core? - [X] I believe this is a new bug in dbt-core - [X] I have searched the existing issues, and I ...
diff --git a/core/setup.py b/core/setup.py --- a/core/setup.py +++ b/core/setup.py @@ -65,6 +65,7 @@ "dbt-extractor~=0.4.1", "typing-extensions>=3.7.4", "werkzeug>=1,<3", + "pytz>=2015.7", # the following are all to match snowflake-connector-python "requests<3.0.0", ...
{"golden_diff": "diff --git a/core/setup.py b/core/setup.py\n--- a/core/setup.py\n+++ b/core/setup.py\n@@ -65,6 +65,7 @@\n \"dbt-extractor~=0.4.1\",\n \"typing-extensions>=3.7.4\",\n \"werkzeug>=1,<3\",\n+ \"pytz>=2015.7\",\n # the following are all to match snowflake-connector-py...
1,940
118
gh_patches_debug_1373
rasdani/github-patches
git_diff
ros__ros_comm-2007
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Rospy import * Hi, Doing ```python from rospy import * ``` raises the following exception : ``` Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: module 'r...
diff --git a/clients/rospy/src/rospy/__init__.py b/clients/rospy/src/rospy/__init__.py --- a/clients/rospy/src/rospy/__init__.py +++ b/clients/rospy/src/rospy/__init__.py @@ -113,7 +113,6 @@ 'logerr_once', 'logfatal_once', 'parse_rosrpc_uri', 'MasterProxy', - 'NodeProxy', 'ROSException', ...
{"golden_diff": "diff --git a/clients/rospy/src/rospy/__init__.py b/clients/rospy/src/rospy/__init__.py\n--- a/clients/rospy/src/rospy/__init__.py\n+++ b/clients/rospy/src/rospy/__init__.py\n@@ -113,7 +113,6 @@\n 'logerr_once', 'logfatal_once',\n 'parse_rosrpc_uri',\n 'MasterProxy',\n- 'NodeProxy', \n...
1,795
125
gh_patches_debug_2776
rasdani/github-patches
git_diff
sunpy__sunpy-1505
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- EIT data fails with wcsaxes The wcs information in the EIT header is not being identified as celestial axes by wcslib (inside astropy.wcs). This means that wcs is not detecting them as angular axes properly s...
diff --git a/sunpy/visualization/wcsaxes_compat.py b/sunpy/visualization/wcsaxes_compat.py --- a/sunpy/visualization/wcsaxes_compat.py +++ b/sunpy/visualization/wcsaxes_compat.py @@ -84,6 +84,11 @@ x.set_ticks_position('bl') y.set_ticks_position('bl') + if x.coord_type != 'longitude': + x.set_coor...
{"golden_diff": "diff --git a/sunpy/visualization/wcsaxes_compat.py b/sunpy/visualization/wcsaxes_compat.py\n--- a/sunpy/visualization/wcsaxes_compat.py\n+++ b/sunpy/visualization/wcsaxes_compat.py\n@@ -84,6 +84,11 @@\n x.set_ticks_position('bl')\n y.set_ticks_position('bl')\n \n+ if x.coord_type != 'longitu...
1,238
146
gh_patches_debug_29580
rasdani/github-patches
git_diff
mit-ll-responsible-ai__hydra-zen-175
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Inconsistent static analysis via pyright ```python x = [1, 2, 3] make_config(a=[1, 2, 3]) make_config(a=x) # pyright marks this as invalid based on our annotations ``` This seems like a pyright issue,...
diff --git a/src/hydra_zen/typing/_implementations.py b/src/hydra_zen/typing/_implementations.py --- a/src/hydra_zen/typing/_implementations.py +++ b/src/hydra_zen/typing/_implementations.py @@ -7,21 +7,19 @@ from typing import ( Any, Callable, - Counter, - Deque, Dict, FrozenSet, Generi...
{"golden_diff": "diff --git a/src/hydra_zen/typing/_implementations.py b/src/hydra_zen/typing/_implementations.py\n--- a/src/hydra_zen/typing/_implementations.py\n+++ b/src/hydra_zen/typing/_implementations.py\n@@ -7,21 +7,19 @@\n from typing import (\n Any,\n Callable,\n- Counter,\n- Deque,\n Dict,\n...
1,364
453
gh_patches_debug_44429
rasdani/github-patches
git_diff
pytorch__ignite-408
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Remove `activation` argument from AveragePrecision and ROC_AUC I propose to remove `activation` argument from `AveragePrecision` and `ROC_AUC`: https://github.com/pytorch/ignite/blob/862ab0073e461a32bf5b53fa...
diff --git a/ignite/contrib/metrics/average_precision.py b/ignite/contrib/metrics/average_precision.py --- a/ignite/contrib/metrics/average_precision.py +++ b/ignite/contrib/metrics/average_precision.py @@ -1,16 +1,13 @@ -from functools import partial from ignite.metrics import EpochMetric -def average_precision_c...
{"golden_diff": "diff --git a/ignite/contrib/metrics/average_precision.py b/ignite/contrib/metrics/average_precision.py\n--- a/ignite/contrib/metrics/average_precision.py\n+++ b/ignite/contrib/metrics/average_precision.py\n@@ -1,16 +1,13 @@\n-from functools import partial\n from ignite.metrics import EpochMetric\n \n \...
1,254
1,012
gh_patches_debug_21131
rasdani/github-patches
git_diff
pypi__warehouse-2023
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Search by topic broken ? Browsing packages, then choosing the Internet / WWW9HTTP / Browser topics gives no result: https://pypi.org/search/?q=&o=&c=Topic+%3A%3A+Internet+%3A%3A+WWW%2FHTTP+%3A%3A+Browsers ...
diff --git a/warehouse/cli/search/reindex.py b/warehouse/cli/search/reindex.py --- a/warehouse/cli/search/reindex.py +++ b/warehouse/cli/search/reindex.py @@ -70,6 +70,7 @@ random_token = binascii.hexlify(os.urandom(5)).decode("ascii") new_index_name = "{}-{}".format(index_base, random_token) doc_types =...
{"golden_diff": "diff --git a/warehouse/cli/search/reindex.py b/warehouse/cli/search/reindex.py\n--- a/warehouse/cli/search/reindex.py\n+++ b/warehouse/cli/search/reindex.py\n@@ -70,6 +70,7 @@\n random_token = binascii.hexlify(os.urandom(5)).decode(\"ascii\")\n new_index_name = \"{}-{}\".format(index_base, rand...
1,637
243
gh_patches_debug_29581
rasdani/github-patches
git_diff
svthalia__concrexit-2709
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Food API: AttributeError: 'Event' object has no attribute 'member_registration' Sentry Issue: [CONCREXIT-KG](https://sentry.io/organizations/thalia/issues/3768057031/?referrer=github_integration) ``` Attribu...
diff --git a/website/pizzas/api/v2/views.py b/website/pizzas/api/v2/views.py --- a/website/pizzas/api/v2/views.py +++ b/website/pizzas/api/v2/views.py @@ -1,3 +1,5 @@ +from django.db.models import Prefetch + from oauth2_provider.contrib.rest_framework import IsAuthenticatedOrTokenHasScope from rest_framework import f...
{"golden_diff": "diff --git a/website/pizzas/api/v2/views.py b/website/pizzas/api/v2/views.py\n--- a/website/pizzas/api/v2/views.py\n+++ b/website/pizzas/api/v2/views.py\n@@ -1,3 +1,5 @@\n+from django.db.models import Prefetch\n+\n from oauth2_provider.contrib.rest_framework import IsAuthenticatedOrTokenHasScope\n from...
1,675
325
gh_patches_debug_19964
rasdani/github-patches
git_diff
matrix-org__synapse-6151
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Uploading a too large file: wrong error code When uploading a too large file, synapse responds with a 413 (OK) but with errcode M_UNKNOWN. According to the [spec](https://matrix.org/docs/spec/client_server/la...
diff --git a/synapse/rest/media/v1/upload_resource.py b/synapse/rest/media/v1/upload_resource.py --- a/synapse/rest/media/v1/upload_resource.py +++ b/synapse/rest/media/v1/upload_resource.py @@ -17,7 +17,7 @@ from twisted.web.server import NOT_DONE_YET -from synapse.api.errors import SynapseError +from synapse.api...
{"golden_diff": "diff --git a/synapse/rest/media/v1/upload_resource.py b/synapse/rest/media/v1/upload_resource.py\n--- a/synapse/rest/media/v1/upload_resource.py\n+++ b/synapse/rest/media/v1/upload_resource.py\n@@ -17,7 +17,7 @@\n \n from twisted.web.server import NOT_DONE_YET\n \n-from synapse.api.errors import Synaps...
1,258
248
gh_patches_debug_5760
rasdani/github-patches
git_diff
NVIDIA__NVFlare-363
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Users are not warned when running poc command --- END ISSUE --- Below are some code segments, each from a relevant file. One or more of these files may contain bugs. --- BEGIN FILES --- Path: `nvflare/ligh...
diff --git a/nvflare/lighter/poc.py b/nvflare/lighter/poc.py --- a/nvflare/lighter/poc.py +++ b/nvflare/lighter/poc.py @@ -62,6 +62,7 @@ os.chmod(os.path.join(root, file), 0o755) clone_client(args.num_clients) print("Successfully creating poc folder. Please read poc/Readme.rst fo...
{"golden_diff": "diff --git a/nvflare/lighter/poc.py b/nvflare/lighter/poc.py\n--- a/nvflare/lighter/poc.py\n+++ b/nvflare/lighter/poc.py\n@@ -62,6 +62,7 @@\n os.chmod(os.path.join(root, file), 0o755)\n clone_client(args.num_clients)\n print(\"Successfully creating poc folder. Pleas...
1,053
134
gh_patches_debug_14571
rasdani/github-patches
git_diff
wagtail__wagtail-1811
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- wagtailsearch.views.frontend needs updating to use non-deprecated search method Currently using Page.search, which is deprecated in Wagtail 1.2 - should be updated to use the QuerySet-based mechanism instead....
diff --git a/wagtail/wagtailsearch/views/frontend.py b/wagtail/wagtailsearch/views/frontend.py --- a/wagtail/wagtailsearch/views/frontend.py +++ b/wagtail/wagtailsearch/views/frontend.py @@ -38,13 +38,18 @@ # Search if query_string != '': - search_results = models.Page.search( - query_stri...
{"golden_diff": "diff --git a/wagtail/wagtailsearch/views/frontend.py b/wagtail/wagtailsearch/views/frontend.py\n--- a/wagtail/wagtailsearch/views/frontend.py\n+++ b/wagtail/wagtailsearch/views/frontend.py\n@@ -38,13 +38,18 @@\n \n # Search\n if query_string != '':\n- search_results = models.Page.search(...
1,084
238
gh_patches_debug_61667
rasdani/github-patches
git_diff
pallets__click-2714
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Docs wrongly links PRs and Issues to flask ![image](https://github.com/pallets/click/assets/13086194/cc68ea55-7c69-4e24-a2dd-f296d54a9c61) Environment: - Python version: N/A - Click version: N/A Docs...
diff --git a/docs/conf.py b/docs/conf.py --- a/docs/conf.py +++ b/docs/conf.py @@ -23,8 +23,8 @@ autodoc_typehints = "description" autodoc_preserve_defaults = True extlinks = { - "issue": ("https://github.com/pallets/flask/issues/%s", "#%s"), - "pr": ("https://github.com/pallets/flask/pull/%s", "#%s"), + "i...
{"golden_diff": "diff --git a/docs/conf.py b/docs/conf.py\n--- a/docs/conf.py\n+++ b/docs/conf.py\n@@ -23,8 +23,8 @@\n autodoc_typehints = \"description\"\n autodoc_preserve_defaults = True\n extlinks = {\n- \"issue\": (\"https://github.com/pallets/flask/issues/%s\", \"#%s\"),\n- \"pr\": (\"https://github.com/pal...
998
173
gh_patches_debug_1188
rasdani/github-patches
git_diff
spack__spack-18268
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Installation issue: dbus (missing libsm dependency) <!-- Thanks for taking the time to report this build failure. To proceed with the report please: 1. Title the issue "Installation issue: <name-of-the-p...
diff --git a/var/spack/repos/builtin/packages/dbus/package.py b/var/spack/repos/builtin/packages/dbus/package.py --- a/var/spack/repos/builtin/packages/dbus/package.py +++ b/var/spack/repos/builtin/packages/dbus/package.py @@ -30,6 +30,7 @@ depends_on('pkgconfig', type='build') depends_on('expat') depend...
{"golden_diff": "diff --git a/var/spack/repos/builtin/packages/dbus/package.py b/var/spack/repos/builtin/packages/dbus/package.py\n--- a/var/spack/repos/builtin/packages/dbus/package.py\n+++ b/var/spack/repos/builtin/packages/dbus/package.py\n@@ -30,6 +30,7 @@\n depends_on('pkgconfig', type='build')\n depends_o...
1,756
114
gh_patches_debug_23335
rasdani/github-patches
git_diff
Cog-Creators__Red-DiscordBot-2919
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [Mod] Bot doesn't record name changes correctly # Other bugs #### What were you trying to do? Check past names using `[p]names` command #### What were you expecting to happen? Get past names ##...
diff --git a/redbot/cogs/mod/events.py b/redbot/cogs/mod/events.py --- a/redbot/cogs/mod/events.py +++ b/redbot/cogs/mod/events.py @@ -95,7 +95,7 @@ await self.check_mention_spam(message) @commands.Cog.listener() - async def on_member_update(self, before: discord.Member, after: discord.Member): +...
{"golden_diff": "diff --git a/redbot/cogs/mod/events.py b/redbot/cogs/mod/events.py\n--- a/redbot/cogs/mod/events.py\n+++ b/redbot/cogs/mod/events.py\n@@ -95,7 +95,7 @@\n await self.check_mention_spam(message)\n \n @commands.Cog.listener()\n- async def on_member_update(self, before: discord.Member, a...
1,470
255
gh_patches_debug_38252
rasdani/github-patches
git_diff
doccano__doccano-1261
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- No way to restrict text classification labels to exactly one label to assign Most classification tasks require exactly one label for each instance. This is also true for most text classification tasks, for ex...
diff --git a/app/api/views/annotation.py b/app/api/views/annotation.py --- a/app/api/views/annotation.py +++ b/app/api/views/annotation.py @@ -1,6 +1,5 @@ from django.shortcuts import get_object_or_404 from rest_framework import generics, status -from rest_framework.exceptions import ValidationError from rest_framew...
{"golden_diff": "diff --git a/app/api/views/annotation.py b/app/api/views/annotation.py\n--- a/app/api/views/annotation.py\n+++ b/app/api/views/annotation.py\n@@ -1,6 +1,5 @@\n from django.shortcuts import get_object_or_404\n from rest_framework import generics, status\n-from rest_framework.exceptions import Validation...
1,392
561
gh_patches_debug_380
rasdani/github-patches
git_diff
dotkom__onlineweb4-1931
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- SSO base template should extend the base template ## What kind of an issue is this? - [x] Bug report ## What is the expected behaviour? The template for the SSO app should extend the base template ...
diff --git a/apps/sso/views.py b/apps/sso/views.py --- a/apps/sso/views.py +++ b/apps/sso/views.py @@ -18,7 +18,7 @@ context = {} - return render(request, 'sso/index.html', context) + return render(request, 'sso/authorize.html', context) class AuthorizationView(DefaultAuthorizationView):
{"golden_diff": "diff --git a/apps/sso/views.py b/apps/sso/views.py\n--- a/apps/sso/views.py\n+++ b/apps/sso/views.py\n@@ -18,7 +18,7 @@\n \n context = {}\n \n- return render(request, 'sso/index.html', context)\n+ return render(request, 'sso/authorize.html', context)\n \n \n class AuthorizationView(DefaultAut...
523
87
gh_patches_debug_9208
rasdani/github-patches
git_diff
plotly__dash-1643
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Missing classifiers for Python 3.8/3.9 Python 3.8 and 3.9 are missing from the classifiers in `setup.py`: https://github.com/plotly/dash/blob/358c5089c929b2e99996f9d4ee6ec634f65437fe/setup.py#L55-L63 Bu...
diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -61,6 +61,8 @@ "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Pytho...
{"golden_diff": "diff --git a/setup.py b/setup.py\n--- a/setup.py\n+++ b/setup.py\n@@ -61,6 +61,8 @@\n \"Programming Language :: Python :: 3.5\",\n \"Programming Language :: Python :: 3.6\",\n \"Programming Language :: Python :: 3.7\",\n+ \"Programming Language :: Python :: 3.8\",\n+ ...
1,186
127
gh_patches_debug_13492
rasdani/github-patches
git_diff
alltheplaces__alltheplaces-2642
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Spider sheetz is broken During the global build at 2021-08-11-14-42-19, spider **sheetz** failed with **526 features** and **1 errors**. Here's [the log](https://data.alltheplaces.xyz/runs/2021-08-11-14-42-1...
diff --git a/locations/spiders/sheetz.py b/locations/spiders/sheetz.py --- a/locations/spiders/sheetz.py +++ b/locations/spiders/sheetz.py @@ -24,8 +24,8 @@ 'ref': store['storeNumber'], 'phone': store.get('phone'), 'website': 'https://orderz.sheetz.com/#/main/location/...
{"golden_diff": "diff --git a/locations/spiders/sheetz.py b/locations/spiders/sheetz.py\n--- a/locations/spiders/sheetz.py\n+++ b/locations/spiders/sheetz.py\n@@ -24,8 +24,8 @@\n 'ref': store['storeNumber'],\n 'phone': store.get('phone'),\n 'website': 'https://orderz.shee...
892
177
gh_patches_debug_5235
rasdani/github-patches
git_diff
rasterio__rasterio-618
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- YCbCr JPEG-in-TIFF breaks rio-info One creates a YCbCr JPEG-in-TIFF with GDAL using `photometric=YCbCr` and `compress=JPEG` options. But reading the TIFFs tags to get the compression method returns "YCbCr JPE...
diff --git a/rasterio/enums.py b/rasterio/enums.py --- a/rasterio/enums.py +++ b/rasterio/enums.py @@ -18,6 +18,9 @@ magenta=11 yellow=12 black=13 + Y=14 + Cb=15 + Cr=16 class Resampling(Enum): @@ -53,3 +56,14 @@ per_dataset=2 alpha=4 nodata=8 + + +class PhotometricInterp(Enu...
{"golden_diff": "diff --git a/rasterio/enums.py b/rasterio/enums.py\n--- a/rasterio/enums.py\n+++ b/rasterio/enums.py\n@@ -18,6 +18,9 @@\n magenta=11\n yellow=12\n black=13\n+ Y=14\n+ Cb=15\n+ Cr=16\n \n \n class Resampling(Enum):\n@@ -53,3 +56,14 @@\n per_dataset=2\n alpha=4\n nodata=8...
762
207
gh_patches_debug_19931
rasdani/github-patches
git_diff
CiviWiki__OpenCiviWiki-1089
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Migration of frontend_views ### Idea summary Elaboration of issue #1070 ### Further details As mentioned in issue #1070, we need to migrate from ```py url(r"^") ``` to ```py path() ``` And for fr...
diff --git a/project/frontend_views/urls.py b/project/frontend_views/urls.py --- a/project/frontend_views/urls.py +++ b/project/frontend_views/urls.py @@ -1,14 +1,13 @@ -from django.conf.urls import url -from . import views as v +from django.urls import path +from frontend_views import views urlpatterns = [ - url...
{"golden_diff": "diff --git a/project/frontend_views/urls.py b/project/frontend_views/urls.py\n--- a/project/frontend_views/urls.py\n+++ b/project/frontend_views/urls.py\n@@ -1,14 +1,13 @@\n-from django.conf.urls import url\n-from . import views as v\n+from django.urls import path\n+from frontend_views import views\n \...
663
419
gh_patches_debug_36414
rasdani/github-patches
git_diff
facebookresearch__hydra-1695
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- strict flag was removed from the compose API without a prior deprecation Strict config composition functionality has become the default in Hydra 1.0 (See https://hydra.cc/docs/upgrades/0.11_to_1.0/strict_mode...
diff --git a/hydra/compose.py b/hydra/compose.py --- a/hydra/compose.py +++ b/hydra/compose.py @@ -1,7 +1,9 @@ # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved +import warnings +from textwrap import dedent from typing import List, Optional -from omegaconf import DictConfig, open_dict +from ome...
{"golden_diff": "diff --git a/hydra/compose.py b/hydra/compose.py\n--- a/hydra/compose.py\n+++ b/hydra/compose.py\n@@ -1,7 +1,9 @@\n # Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved\n+import warnings\n+from textwrap import dedent\n from typing import List, Optional\n \n-from omegaconf import DictC...
985
582
gh_patches_debug_22393
rasdani/github-patches
git_diff
pyload__pyload-1508
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- [SkipRev] broken - cannot import name SkipDownload SkipRev plugin failed to import with following error: Errore durante l'importazione SkipRev: cannot import name SkipDownload I already tried following, with...
diff --git a/module/plugins/hooks/SkipRev.py b/module/plugins/hooks/SkipRev.py --- a/module/plugins/hooks/SkipRev.py +++ b/module/plugins/hooks/SkipRev.py @@ -8,13 +8,13 @@ from module.PyFile import PyFile from module.plugins.internal.Hook import Hook -from module.plugins.internal.Plugin import SkipDownload +from m...
{"golden_diff": "diff --git a/module/plugins/hooks/SkipRev.py b/module/plugins/hooks/SkipRev.py\n--- a/module/plugins/hooks/SkipRev.py\n+++ b/module/plugins/hooks/SkipRev.py\n@@ -8,13 +8,13 @@\n \n from module.PyFile import PyFile\n from module.plugins.internal.Hook import Hook\n-from module.plugins.internal.Plugin imp...
1,566
272
gh_patches_debug_19087
rasdani/github-patches
git_diff
cloudtools__troposphere-869
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Validation error in CodeCommit Trigger It appears that the validation for the CodeCommit Trigger class does not currently allow the use of any intrinsic functions for the `Events` property, and only accepts a...
diff --git a/troposphere/codecommit.py b/troposphere/codecommit.py --- a/troposphere/codecommit.py +++ b/troposphere/codecommit.py @@ -3,7 +3,7 @@ # # See LICENSE file for full license. -from . import AWSObject, AWSProperty +from . import AWSHelperFn, AWSObject, AWSProperty class Trigger(AWSProperty): @@ -23,1...
{"golden_diff": "diff --git a/troposphere/codecommit.py b/troposphere/codecommit.py\n--- a/troposphere/codecommit.py\n+++ b/troposphere/codecommit.py\n@@ -3,7 +3,7 @@\n #\n # See LICENSE file for full license.\n \n-from . import AWSObject, AWSProperty\n+from . import AWSHelperFn, AWSObject, AWSProperty\n \n \n class Tr...
884
209
gh_patches_debug_6298
rasdani/github-patches
git_diff
vispy__vispy-1389
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- Camera API documentation missing I could not find a list of available cameras in the docs: http://vispy.org/scene.html?highlight=cameras#module-vispy.scene.cameras --- END ISSUE --- Below are some code se...
diff --git a/vispy/scene/cameras/__init__.py b/vispy/scene/cameras/__init__.py --- a/vispy/scene/cameras/__init__.py +++ b/vispy/scene/cameras/__init__.py @@ -15,6 +15,9 @@ that a certain part of the scene is mapped to the bounding rectangle of the ViewBox. """ +__all__ = ['ArcballCamera', 'BaseCamera', 'FlyCamera'...
{"golden_diff": "diff --git a/vispy/scene/cameras/__init__.py b/vispy/scene/cameras/__init__.py\n--- a/vispy/scene/cameras/__init__.py\n+++ b/vispy/scene/cameras/__init__.py\n@@ -15,6 +15,9 @@\n that a certain part of the scene is mapped to the bounding rectangle of the \n ViewBox.\n \"\"\"\n+__all__ = ['ArcballCamera'...
602
168
gh_patches_debug_22907
rasdani/github-patches
git_diff
fedora-infra__bodhi-974
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- The non-NULL comment text migration needs to be inserted before 4df1fcd59050 This migration was developed against the develop branch, but I had forgotten that there was already a migration in the develop bran...
diff --git a/alembic/versions/37f38ddc4c8d_.py b/alembic/versions/37f38ddc4c8d_.py --- a/alembic/versions/37f38ddc4c8d_.py +++ b/alembic/versions/37f38ddc4c8d_.py @@ -1,7 +1,7 @@ """Do not allow NULL values in the text column of the comments table. Revision ID: 37f38ddc4c8d -Revises: 4df1fcd59050 +Revises: 3c72757f...
{"golden_diff": "diff --git a/alembic/versions/37f38ddc4c8d_.py b/alembic/versions/37f38ddc4c8d_.py\n--- a/alembic/versions/37f38ddc4c8d_.py\n+++ b/alembic/versions/37f38ddc4c8d_.py\n@@ -1,7 +1,7 @@\n \"\"\"Do not allow NULL values in the text column of the comments table.\n \n Revision ID: 37f38ddc4c8d\n-Revises: 4df1...
2,024
543
gh_patches_debug_34075
rasdani/github-patches
git_diff
scikit-hep__awkward-2102
We are currently solving the following issue within our repository. Here is the issue text: --- BEGIN ISSUE --- behaviors with decorated mixin methods cannot be pickled ### Version of Awkward Array main ### Description and code to reproduce The mixin machinery introduces a closure, which `pickle` can't serialise. -...
diff --git a/src/awkward/behaviors/mixins.py b/src/awkward/behaviors/mixins.py --- a/src/awkward/behaviors/mixins.py +++ b/src/awkward/behaviors/mixins.py @@ -1,6 +1,7 @@ # BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE +import functools import sys import awkward as ak @@...
{"golden_diff": "diff --git a/src/awkward/behaviors/mixins.py b/src/awkward/behaviors/mixins.py\n--- a/src/awkward/behaviors/mixins.py\n+++ b/src/awkward/behaviors/mixins.py\n@@ -1,6 +1,7 @@\n # BSD 3-Clause License; see https://github.com/scikit-hep/awkward-1.0/blob/main/LICENSE\n \n \n+import functools\n import sys\n...
1,280
460