Dataset Viewer
Auto-converted to Parquet Duplicate
in_source_id
stringlengths
13
58
issue
stringlengths
3
241k
before_files
listlengths
1
3
after_files
listlengths
1
3
pr_diff
stringlengths
202
107M
OpenEnergyPlatform__oeplatform-1353
Version in CITATION.cff is out of date ## Description of the issue We have introduced the citation.cff file, which also contains a version. This should be updated every time a release is made. It would be great if the version could be imported automatically from the VERSION file so we don't have to maintain multiple...
[ { "content": "", "path": "oeplatform/__init__.py" } ]
[ { "content": "__version__ = \"0.14.1\"\n", "path": "oeplatform/__init__.py" } ]
diff --git a/.bumpversion.cfg b/.bumpversion.cfg new file mode 100644 index 000000000..6e9ce9e69 --- /dev/null +++ b/.bumpversion.cfg @@ -0,0 +1,8 @@ +[bumpversion] +current_version = 0.14.1 + +[bumpversion:file:VERSION] + +[bumpversion:file:CITATION.cff] + +[bumpversion:file:oeplatform/__init__.py] diff --git ...
kartoza__prj.app-866
Only one organisation can be created per account It seems that only one organisation can be created from a login account. The folks at Camptocamp have two separate organisations (companies) and are unable to create the second organisation from their login.
[ { "content": "", "path": "django_project/core/settings/__init__.py" } ]
[ { "content": "# coding=utf-8\n", "path": "django_project/core/settings/__init__.py" } ]
diff --git a/django_project/base/tests/__init__.py b/django_project/base/tests/__init__.py index b979ed160..22d4b6542 100644 --- a/django_project/base/tests/__init__.py +++ b/django_project/base/tests/__init__.py @@ -1 +1,3 @@ +# coding=utf-8 +"""Test for base App.""" __author__ = 'timlinux' diff --git a/django_projec...
CTFd__CTFd-598
Docker startup getting stuck on mysqladmin ping **Environment**: - CTFd Version/Commit: ctfd/ctfd:latest from Docker hub (17 days old) - Operating System: Amazon Linux AMI 2017.09.j x86_64 ECS HVM GP2 - Web Browser and Version: N/A **What happened?** Trying to setup CTFd with AWS ECS and RDS Aurora. I...
[ { "content": "from CTFd import create_app\n\napp = create_app()\n", "path": "wsgi.py" } ]
[ { "content": null, "path": "wsgi.py" } ]
diff --git a/ctfd.ini b/ctfd.ini deleted file mode 100644 index 951cae856..000000000 --- a/ctfd.ini +++ /dev/null @@ -1,46 +0,0 @@ -# UWSGI Configuration File -# Install uwsgi (sudo apt-get install uwsgi), copy this file to -# /etc/uwsgi/apps-available and then link it in /etc/uwsgi/apps-enabled -# Only two lines below...
plotly__dash-2553
[BUG] Flask 2.2.3 dependency has HIGH security vulnerability (fixed in 2.2.5) Issue #2538 pinned the upper bound of the Flask dependency to 2.2.3. However Flask 2.2.3 is affected by a HIGH security vulnerability that is fixed in Flask 2.2.5. See https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-30861 Debian 11...
[ { "content": "__version__ = \"2.10.1\"\n", "path": "dash/version.py" } ]
[ { "content": "__version__ = \"2.10.2\"\n", "path": "dash/version.py" } ]
diff --git a/CHANGELOG.md b/CHANGELOG.md index 90844ed6ca..54c5b0714e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to `dash` will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/). +## [2.10.2] - 2023-05-31 + +## Changed + +- Set Flas...
horovod__horovod-1139
Replace .step(synchronize=False) with optimizer.skip_synchronize() NVIDIA AMP does not support passing additional flags to `optimizer.step()`, such as `optimizer.step(synchronize=False)`. This PR switches API to use context manager: ```python optimizer.synchronize() with optimizer.skip_synchronize(): optimiz...
[ { "content": "__version__ = '0.16.3'\n", "path": "horovod/__init__.py" } ]
[ { "content": "__version__ = '0.16.4'\n", "path": "horovod/__init__.py" } ]
diff --git a/horovod/__init__.py b/horovod/__init__.py index 66e314a006..538eb5d865 100644 --- a/horovod/__init__.py +++ b/horovod/__init__.py @@ -1 +1 @@ -__version__ = '0.16.3' +__version__ = '0.16.4'
freedomofpress__securedrop-1117
Update kernel module blacklist During an installation last week, we encountered an issue with the kernel module blacklist. The install was using the new generation of Intel NUCs ([NUC5i5RYK](http://www.amazon.com/dp/B00SD9ISIQ) and [NUC5i5RYH](http://www.amazon.com/dp/B00SD9IS1S/)). Unlike the previous generation of NU...
[ { "content": "__version__ = '0.3.4'\n", "path": "securedrop/version.py" } ]
[ { "content": "__version__ = '0.3.5'\n", "path": "securedrop/version.py" } ]
diff --git a/changelog.md b/changelog.md index 067f5d8e02..cbfd4c1003 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,16 @@ # Changelog +## 0.3.5 + +The issues for this release were tracked with the 0.3.5 milestone on Github: https://github.com/freedomofpress/securedrop/milestones/0.3.5 + +* Use certificate ...
cookiecutter__cookiecutter-1273
PEP257 docstrings for file "./docs/__init__.py" Cover `./docs/__init__.py` file with docstrings and follow [PEP257](https://www.python.org/dev/peps/pep-0257/). We use [pydocstyle](https://pypi.org/project/pydocstyle/) for validation. Current validation log: ``` ./docs/__init__.py:1 at module level: D104...
[ { "content": "", "path": "docs/__init__.py" } ]
[ { "content": "# -*- coding: utf-8 -*-\n\n\"\"\"Main package for docs.\"\"\"\n", "path": "docs/__init__.py" } ]
diff --git a/docs/__init__.py b/docs/__init__.py index e69de29bb..e7eaad7bd 100644 --- a/docs/__init__.py +++ b/docs/__init__.py @@ -0,0 +1,3 @@ +# -*- coding: utf-8 -*- + +"""Main package for docs."""
microsoft__Qcodes-4248
Filename collision due to case-sensitivity in Keysight folder When pulling the qcodes repository on Windows, there is a filename collision between the uppercase and lowercase Keysight folders. The error message is as follows: ```bash $ git clone https://github.com/QCoDeS/Qcodes.git Cloning into 'Qcodes'... remot...
[ { "content": "", "path": "qcodes/instrument_drivers/Keysight/__init__.py" } ]
[ { "content": "# Intentionally left blank\n", "path": "qcodes/instrument_drivers/Keysight/__init__.py" } ]
diff --git a/qcodes/instrument_drivers/Keysight/__init__.py b/qcodes/instrument_drivers/Keysight/__init__.py index e69de29bb2d..e484f8b84cd 100644 --- a/qcodes/instrument_drivers/Keysight/__init__.py +++ b/qcodes/instrument_drivers/Keysight/__init__.py @@ -0,0 +1 @@ +# Intentionally left blank diff --git a/qcodes/instr...
kivy__python-for-android-2797
Python exception when using colorlog due to incomplete IO implementation in sys.stderr I am attempting to run a program which uses `TTYColoredFormatter` from [colorlog](https://pypi.org/project/colorlog/). This class formats log messages, adding ANSI escape codes _only_ if the stream it is writing to returns `True` for...
[ { "content": "__version__ = '2023.02.10'\n", "path": "pythonforandroid/__init__.py" } ]
[ { "content": "__version__ = '2023.05.21'\n", "path": "pythonforandroid/__init__.py" } ]
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3724af62ab..98288f265d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,45 @@ # Changelog +## [v2023.05.21](https://github.com/kivy/python-for-android/tree/v2023.05.21) + +[Full Changelog](https://github.com/kivy/python-for-android/compare/v2023.02.10...v2023.05....
OCHA-DAP__hdx-ckan-1038
Update the version number on the logo and footer. For sprint 25, we will increment to 0.3.2
[ { "content": "hdx_version='v0.3.1'", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
[ { "content": "hdx_version='v0.3.2'", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
diff --git a/ckanext-hdx_theme/ckanext/hdx_theme/version.py b/ckanext-hdx_theme/ckanext/hdx_theme/version.py index 13e6c49927..a1e294d081 100644 --- a/ckanext-hdx_theme/ckanext/hdx_theme/version.py +++ b/ckanext-hdx_theme/ckanext/hdx_theme/version.py @@ -1 +1 @@ -hdx_version='v0.3.1' \ No newline at end of file +hdx_ve...
OCHA-DAP__hdx-ckan-770
remove text from home page Please remove this text from homepage 'This is an early version of the HDX Repository. Initially, you will be able to find global datasets relevant to humanitarian work as well as local datasets from our three pilot locations - Colombia, Kenya and Yemen. You can also create an account and ad...
[ { "content": "hdx_version='v0.2.6'", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
[ { "content": "hdx_version='v0.3.0'", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
diff --git a/ckanext-hdx_theme/ckanext/hdx_theme/public/hdx_theme.css b/ckanext-hdx_theme/ckanext/hdx_theme/public/hdx_theme.css index 3561f27e3b..428a547358 100644 --- a/ckanext-hdx_theme/ckanext/hdx_theme/public/hdx_theme.css +++ b/ckanext-hdx_theme/ckanext/hdx_theme/public/hdx_theme.css @@ -1014,6 +1014,7 @@ for exa...
OCHA-DAP__hdx-ckan-1082
Update version number Sprint 26 will be 0.3.3
[ { "content": "hdx_version='v0.3.2'", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
[ { "content": "hdx_version='v0.3.3'", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
diff --git a/ckanext-hdx_theme/ckanext/hdx_theme/version.py b/ckanext-hdx_theme/ckanext/hdx_theme/version.py index a1e294d081..a55927af9a 100644 --- a/ckanext-hdx_theme/ckanext/hdx_theme/version.py +++ b/ckanext-hdx_theme/ckanext/hdx_theme/version.py @@ -1 +1 @@ -hdx_version='v0.3.2' \ No newline at end of file +hdx_ve...
OCHA-DAP__hdx-ckan-1737
Shrink the map and related divs ![image](https://cloud.githubusercontent.com/assets/1654485/4994413/0a14a7e0-69b9-11e4-8329-f12ef8957fa6.png)
[ { "content": "hdx_version = 'v0.4.8'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
[ { "content": "hdx_version = 'v0.4.9'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
diff --git a/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/crisis-page.js b/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/crisis-page.js index 46f21c5eda..0a2fa32894 100644 --- a/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/crisis-page.js +++ b/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/crisis-page.js @@ -1,8 +1,7 ...
OCHA-DAP__hdx-ckan-1779
Ebola Page>Map: disable scroll wheel zoom CJ - The specific property is here: https://github.com/OCHA-DAP/hdx-design/blob/gh-pages/js/country.js line 111: map.scrollWheelZoom.disable();
[ { "content": "hdx_version = 'v0.5.1'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
[ { "content": "hdx_version = 'v0.5.2'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
diff --git a/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/crisis_page/crisis-page.js b/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/crisis_page/crisis-page.js index 561fb9369a..908fe8a3f0 100644 --- a/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/crisis_page/crisis-page.js +++ b/ckanext-hdx_theme/ckanext/hdx_theme/fa...
OCHA-DAP__hdx-ckan-2135
Browse Page Map: opening a country link has different behaviors From the map: open in new tab From the list: open in same tab We should make it the same: open in same tab (unless there was some specification that it should be a new tab that I'm not remembering. Graphic in Colombia page: instead of line (time-serie...
[ { "content": "hdx_version = 'v0.6.1'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
[ { "content": "hdx_version = 'v0.6.2'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
diff --git a/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/browse/browse.js b/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/browse/browse.js index f911871a34..db2258503f 100644 --- a/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/browse/browse.js +++ b/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/browse/browse.js @@ -5...
OCHA-DAP__hdx-ckan-1748
Shrink the spacing on the top line numbers Proposed spacings shown here: ![image](https://cloud.githubusercontent.com/assets/1654485/5008984/58c2d9f8-6a62-11e4-9827-75750791e7f9.png) modified css: .item-info { border-top: 1px solid #cccccc; border-bottom: 1px solid #cccccc; padding: 20px 0; margin-top: -1px; color: ...
[ { "content": "hdx_version = 'v0.4.9'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
[ { "content": "hdx_version = 'v0.4.10'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
diff --git a/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/css/crisis-page.css b/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/css/crisis-page.css index 7f4c17f9df..dcc221eba9 100644 --- a/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/css/crisis-page.css +++ b/ckanext-hdx_theme/ckanext/hdx_theme/fanstatic/css/crisis-pa...
OCHA-DAP__hdx-ckan-1401
The MailChimp subscribe field could use a little bit more padding-left Right now the input text is too close to the left border. It would be nice to add some padding there. ![screen shot 2014-10-01 at 10 23 58 am](https://cloud.githubusercontent.com/assets/953118/4476520/c03a50be-4976-11e4-9ea2-05e0d2a872f9.png)
[ { "content": "hdx_version = 'v0.3.9'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
[ { "content": "hdx_version = 'v0.3.10'\n", "path": "ckanext-hdx_theme/ckanext/hdx_theme/version.py" } ]
diff --git a/ckanext-hdx_theme/ckanext/hdx_theme/public/mailchimp.js b/ckanext-hdx_theme/ckanext/hdx_theme/public/mailchimp.js index 2375baeb2d..e6e0374755 100644 --- a/ckanext-hdx_theme/ckanext/hdx_theme/public/mailchimp.js +++ b/ckanext-hdx_theme/ckanext/hdx_theme/public/mailchimp.js @@ -44,7 +44,7 @@ function mce_in...
End of preview. Expand in Data Studio
# removed all repos of SWE-bench and RepoBench
repos = [
    "astropy",
    "django",
    "flask",
    "matplotlib",
    "seaborn",
    "requests",
    "xarray",
    "pylint",
    "pytest",
    "scikit-learn",
    "sphinx",
    "sympy",
]
Downloads last month
4