diff
stringlengths
139
3.65k
message
stringlengths
8
627
diff_languages
stringclasses
1 value
diff --git a/datapackage/datapackage.py b/datapackage/datapackage.py index <HASH>..<HASH> 100644 --- a/datapackage/datapackage.py +++ b/datapackage/datapackage.py @@ -235,5 +235,5 @@ class DataPackage(object): # For each row we yield it as a dictionary where keys are the field # names and the value th...
decode unicode - to make .data work for python <I>
py
diff --git a/tests/unit/test_udp.py b/tests/unit/test_udp.py index <HASH>..<HASH> 100644 --- a/tests/unit/test_udp.py +++ b/tests/unit/test_udp.py @@ -25,7 +25,7 @@ def test_core(): def test_send(): h = vanilla.Hub() - N = 100 + N = 5 serve = h.udp.listen() @h.spawn
ease up on udp test just for the moment
py
diff --git a/vcstool/commands/command.py b/vcstool/commands/command.py index <HASH>..<HASH> 100644 --- a/vcstool/commands/command.py +++ b/vcstool/commands/command.py @@ -23,7 +23,7 @@ def add_common_arguments(parser, skip_hide_empty=False, single_path=False, path_ group = parser.add_argument_group('Common paramet...
add short option for --hide-empty, use -s and --skip-empty as a synonym
py
diff --git a/src/psd_tools/reader/layers.py b/src/psd_tools/reader/layers.py index <HASH>..<HASH> 100644 --- a/src/psd_tools/reader/layers.py +++ b/src/psd_tools/reader/layers.py @@ -18,7 +18,7 @@ logger = logging.getLogger(__name__) _LayerRecord = collections.namedtuple('LayerRecord', [ 'top', 'left', 'bottom', ...
Typo is fixed. Thanks @oliverzheng. Fix #1.
py
diff --git a/nashvegas/management/commands/upgradedb.py b/nashvegas/management/commands/upgradedb.py index <HASH>..<HASH> 100644 --- a/nashvegas/management/commands/upgradedb.py +++ b/nashvegas/management/commands/upgradedb.py @@ -356,7 +356,8 @@ class Command(BaseCommand): if self.do_create_all: ...
--create can only work with a single database
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,6 @@ setup( author = 'Kirk Byers', install_requires = ['paramiko>=1.7.5'], description = 'Multi-vendor library to simplify Paramiko SSH connections to network devices', - packages ...
Missing HP package dependency in setup.py FIXES #<I>
py
diff --git a/varify/variants/translators.py b/varify/variants/translators.py index <HASH>..<HASH> 100644 --- a/varify/variants/translators.py +++ b/varify/variants/translators.py @@ -9,11 +9,19 @@ class AllowNullsTranslator(Translator): def translate(self, field, roperator, rvalue, tree, **kwargs): output...
Exclude nulls in translator when operator is range, gt, gte Previously, nulls were included in all cases making it appear that null was but 0 and infinity. Now, null is effectively treated as 0.
py
diff --git a/marabunta/database.py b/marabunta/database.py index <HASH>..<HASH> 100644 --- a/marabunta/database.py +++ b/marabunta/database.py @@ -10,11 +10,6 @@ import psycopg2 from collections import namedtuple from contextlib import contextmanager -if sys.version_info[0] == 3: - from urllib.parse import unquo...
Fix error with special chars in postgres dsn With unquote_plus, a password such as 'odoo+test' is modified as 'odoo test', there is no reason to use it. Besides, use kwargs instead of a string which is cleaner.
py
diff --git a/suds/version.py b/suds/version.py index <HASH>..<HASH> 100644 --- a/suds/version.py +++ b/suds/version.py @@ -22,5 +22,5 @@ See the setup.py script for more detailed information. """ -__version__ = "0.4.1 jurko 5 (development)" +__version__ = "0.4.1 jurko 5" __build__ = ""
Bumped up version information for the '<I> jurko 5' release.
py
diff --git a/lenses/ui/base.py b/lenses/ui/base.py index <HASH>..<HASH> 100644 --- a/lenses/ui/base.py +++ b/lenses/ui/base.py @@ -910,34 +910,3 @@ class BaseUiLens(Generic[S, T, A, B]): def __getitem__(self, name): # type: (Any) -> BaseUiLens[S, T, X, Y] return self.GetItem(name) - - both_ = ...
removed deprecated underscore methods from ui
py
diff --git a/src/arcrest/ags/_networkservice.py b/src/arcrest/ags/_networkservice.py index <HASH>..<HASH> 100644 --- a/src/arcrest/ags/_networkservice.py +++ b/src/arcrest/ags/_networkservice.py @@ -202,7 +202,8 @@ class NetworkLayer(BaseAGSServer): _hasZ = None _supportedTravelModes = None _serviceLimit...
added defaultTravelMode and trafficSupport props added defaultTravelMode and trafficSupport props to Network Layer
py
diff --git a/ssbio/protein/structure/properties/residues.py b/ssbio/protein/structure/properties/residues.py index <HASH>..<HASH> 100644 --- a/ssbio/protein/structure/properties/residues.py +++ b/ssbio/protein/structure/properties/residues.py @@ -57,8 +57,11 @@ def search_ss_bonds(model, threshold=3.0): bridges ...
Skip over CYS residues with no SG atoms in find_disulfide_bridges (cherry picked from commit d<I>cebe)
py
diff --git a/slave/buildslave/commands/fs.py b/slave/buildslave/commands/fs.py index <HASH>..<HASH> 100644 --- a/slave/buildslave/commands/fs.py +++ b/slave/buildslave/commands/fs.py @@ -67,6 +67,10 @@ class RemoveDirectory(base.Command): """ header = "rmdir" + + def setup(self,args): + self.l...
add logEnviron to fs build steps to fix broken tests
py
diff --git a/python/src/nnabla/parameter.py b/python/src/nnabla/parameter.py index <HASH>..<HASH> 100644 --- a/python/src/nnabla/parameter.py +++ b/python/src/nnabla/parameter.py @@ -195,7 +195,7 @@ def _create_parameter_by_initializer(initializer, shape, need_grad): if callable(initializer): assert shape...
fix support float outmap for PF.conv
py
diff --git a/kitty/data/report.py b/kitty/data/report.py index <HASH>..<HASH> 100644 --- a/kitty/data/report.py +++ b/kitty/data/report.py @@ -122,6 +122,8 @@ class Report(object): ''' res = {} for k, v in self._data_fields.items(): + if isinstance(v, unicode): + v =...
encode unicode strings in the report
py
diff --git a/test/unit/test_api_vrrp.py b/test/unit/test_api_vrrp.py index <HASH>..<HASH> 100644 --- a/test/unit/test_api_vrrp.py +++ b/test/unit/test_api_vrrp.py @@ -720,6 +720,9 @@ class TestApiVrrp(EapiConfigUnitTest): [{'name': 'Ethernet1', 'action': 'disable', 'amount': 10}], [{'name': 'E...
add negative key tests for set_tracks
py
diff --git a/lib/svtplay_dl/fetcher/rtmp.py b/lib/svtplay_dl/fetcher/rtmp.py index <HASH>..<HASH> 100644 --- a/lib/svtplay_dl/fetcher/rtmp.py +++ b/lib/svtplay_dl/fetcher/rtmp.py @@ -22,7 +22,9 @@ class RTMP(VideoRetriever): if self.options.resume: args.append("-e") - output(self.options,...
rtmp: need to return nothing when file exists. this fixes #<I>
py
diff --git a/fontbakery-check-ttf.py b/fontbakery-check-ttf.py index <HASH>..<HASH> 100755 --- a/fontbakery-check-ttf.py +++ b/fontbakery-check-ttf.py @@ -2406,7 +2406,10 @@ def main(): fontdir = os.path.dirname(font_file) metadata = os.path.join(fontdir, "METADATA.pb") - if not os.path.exists(metadata):...
Do not run METADATA.pb checks if user has requested to skip googlefonts-specific checks fixes issue #<I>
py
diff --git a/jumeaux/notification_handlers/slack.py b/jumeaux/notification_handlers/slack.py index <HASH>..<HASH> 100644 --- a/jumeaux/notification_handlers/slack.py +++ b/jumeaux/notification_handlers/slack.py @@ -35,7 +35,7 @@ class SlackNotificationHandler(NotificationHandler): "text": message, ...
:arrow_upper_right: No need to type `:` for `icon_emoji`
py
diff --git a/examples/control_test.py b/examples/control_test.py index <HASH>..<HASH> 100644 --- a/examples/control_test.py +++ b/examples/control_test.py @@ -215,7 +215,6 @@ class ControlExampleTest(jtu.JaxTestCase): self.assertAllClose(U[1:], np.zeros((T - 1, 2)), check_dtypes=True) - @jtu.skip_on_devices("...
try re-enabling control tests that trigger #<I>
py
diff --git a/tests/integration.py b/tests/integration.py index <HASH>..<HASH> 100644 --- a/tests/integration.py +++ b/tests/integration.py @@ -21,14 +21,14 @@ async def main(): response = await client.fetch_world_list() assert isinstance(response, tibiapy.TibiaResponse) assert isinstance(resp...
Fix integration tests breaking <I> compatibility
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -25,5 +25,6 @@ setup( 'Operating System :: OS Independent', 'Programming Language :: Python', 'Environment :: Web Environment', + 'Topic :: Text Processing :: Linguistic', ], )
[#<I>] Adding a category for PyPI
py
diff --git a/test.py b/test.py index <HASH>..<HASH> 100644 --- a/test.py +++ b/test.py @@ -1776,17 +1776,19 @@ exit(49) def test_cwd_fg(self): - td = tempfile.mkdtemp() + td = realpath(tempfile.mkdtemp()) py = create_tmp_test(""" import sh import os -orig = os.getcwd() +from os.path im...
must canonicalize path on macos for tempfiles
py
diff --git a/tests/laser/evm_testsuite/evm_test.py b/tests/laser/evm_testsuite/evm_test.py index <HASH>..<HASH> 100644 --- a/tests/laser/evm_testsuite/evm_test.py +++ b/tests/laser/evm_testsuite/evm_test.py @@ -16,11 +16,9 @@ def load_test_data(designation): return_data = [] for file_reference in (evm_test_...
Filter cases with exp for now, and make debugging easier
py
diff --git a/test/test_formatting.py b/test/test_formatting.py index <HASH>..<HASH> 100644 --- a/test/test_formatting.py +++ b/test/test_formatting.py @@ -19,9 +19,9 @@ class TestBasicFormatters(object): assert flatten(fragment('${"27"}')()) == "27\n" assert flatten(fragment('${"<html>"}')()) == "&lt;html&gt;\n" ...
Fixme fixed; blessed text can now start at the beginning of a line.
py
diff --git a/openquake/utils/db/loader.py b/openquake/utils/db/loader.py index <HASH>..<HASH> 100644 --- a/openquake/utils/db/loader.py +++ b/openquake/utils/db/loader.py @@ -158,10 +158,10 @@ def parse_mfd(fault, mfd_java_obj): min_mag = mfd_java_obj.getMinX() - (delta / 2) max_mag = mfd_java_obj.get...
fixed a minor bug with trying to use sqalchemy to insert numpy.float<I> type data the fix is a simple float cast
py
diff --git a/dist.py b/dist.py index <HASH>..<HASH> 100644 --- a/dist.py +++ b/dist.py @@ -534,10 +534,6 @@ class Distribution: objects. """ - if self.metadata.version is None: - raise DistutilsSetupError, \ - "No version number specified for distribution" - ...
Back out the requirement to supply a version number
py
diff --git a/src/pyctools/components/qt/qtdisplay.py b/src/pyctools/components/qt/qtdisplay.py index <HASH>..<HASH> 100644 --- a/src/pyctools/components/qt/qtdisplay.py +++ b/src/pyctools/components/qt/qtdisplay.py @@ -51,6 +51,7 @@ class QtDisplay(QtActorMixin, QtGui.QLabel, ConfigMixin): ConfigMixin.__init__...
Added an 'expand' option to Qt viewer
py
diff --git a/src/mattermostdriver/websocket.py b/src/mattermostdriver/websocket.py index <HASH>..<HASH> 100644 --- a/src/mattermostdriver/websocket.py +++ b/src/mattermostdriver/websocket.py @@ -55,7 +55,7 @@ class Websocket: except websockets.ConnectionClosedError: self.disconnect() break - excep...
Expanding `expect` clause to catch all exceptions
py
diff --git a/indra/statements.py b/indra/statements.py index <HASH>..<HASH> 100644 --- a/indra/statements.py +++ b/indra/statements.py @@ -2366,7 +2366,8 @@ class Influence(IncreaseAmount): def _influence_agent_str(agent, delta): if delta is not None: pol = delta.get('polarity') -...
Use positive/negative in Influence str
py
diff --git a/salt/states/pip_state.py b/salt/states/pip_state.py index <HASH>..<HASH> 100644 --- a/salt/states/pip_state.py +++ b/salt/states/pip_state.py @@ -58,13 +58,6 @@ if HAS_PIP is True: # pylint: enable=import-error - ver = pip.__version__.split('.') - pip_ver = tuple([int(x) for x in ver if x.isdigi...
Remove duplicated code. This check exists twice in the code. Once is good enough for anyone.
py
diff --git a/pbs.py b/pbs.py index <HASH>..<HASH> 100644 --- a/pbs.py +++ b/pbs.py @@ -211,12 +211,10 @@ class Command(object): return self.path def __enter__(self): - if self.call_args["with"]: - Command.prepend_stack.append([self.path]) + Command.prepend_stack.append([self.pat...
no need to check callargs on command object with context
py
diff --git a/salt/pillar/hiera.py b/salt/pillar/hiera.py index <HASH>..<HASH> 100644 --- a/salt/pillar/hiera.py +++ b/salt/pillar/hiera.py @@ -9,7 +9,7 @@ import logging # Import salt libs import salt.utils -from six import string_types +from salt.utils.six import string_types # Import third party libs import y...
Replaced module six in file /salt/pillar/hiera.py
py
diff --git a/test/test_replica_set_client.py b/test/test_replica_set_client.py index <HASH>..<HASH> 100644 --- a/test/test_replica_set_client.py +++ b/test/test_replica_set_client.py @@ -676,7 +676,7 @@ class TestReplicaSetClient(TestReplicaSetClientBase, TestRequestMixin): try: timeout.pymongo_te...
Fix rs network timeout test.
py
diff --git a/plaid/version.py b/plaid/version.py index <HASH>..<HASH> 100644 --- a/plaid/version.py +++ b/plaid/version.py @@ -1 +1 @@ -__version__ = '2.0.2' +__version__ = '2.0.3'
plaid-python@<I>
py
diff --git a/client/sources/ok_test/sqlite.py b/client/sources/ok_test/sqlite.py index <HASH>..<HASH> 100644 --- a/client/sources/ok_test/sqlite.py +++ b/client/sources/ok_test/sqlite.py @@ -115,11 +115,12 @@ class SqliteConsole(interpreter.Console): expected = expected.split('\n') actual = actual.spl...
Fix bug with duplicate and shuffled rows.
py
diff --git a/inquirer/render/console/_list.py b/inquirer/render/console/_list.py index <HASH>..<HASH> 100644 --- a/inquirer/render/console/_list.py +++ b/inquirer/render/console/_list.py @@ -21,10 +21,8 @@ class List(BaseConsoleRender): else: cchoices = choices - for choice in cchoices: -...
Fixing correct detection of curent option in List
py
diff --git a/tests/functional/test.py b/tests/functional/test.py index <HASH>..<HASH> 100755 --- a/tests/functional/test.py +++ b/tests/functional/test.py @@ -158,13 +158,13 @@ def is_same_file(fname1, fname2, ignore_regexp=None, replace_regexp=None, replac if not result: if diff is None: dif...
Update test tool Diff was not output correctly.
py
diff --git a/lib/svtplay_dl/__init__.py b/lib/svtplay_dl/__init__.py index <HASH>..<HASH> 100644 --- a/lib/svtplay_dl/__init__.py +++ b/lib/svtplay_dl/__init__.py @@ -14,7 +14,7 @@ from svtplay_dl.log import log from svtplay_dl.utils import decode_html_entities, filenamify, select_quality from svtplay_dl.service impo...
init: removing unused imports.
py
diff --git a/example/example/wsgi.py b/example/example/wsgi.py index <HASH>..<HASH> 100644 --- a/example/example/wsgi.py +++ b/example/example/wsgi.py @@ -19,7 +19,7 @@ import os # if running multiple sites in the same mod_wsgi process. To fix this, use # mod_wsgi daemon mode with each site in its own daemon process,...
Fix bug in wsgi file
py
diff --git a/sgqlc/types/__init__.py b/sgqlc/types/__init__.py index <HASH>..<HASH> 100644 --- a/sgqlc/types/__init__.py +++ b/sgqlc/types/__init__.py @@ -1312,9 +1312,6 @@ class EnumMeta(BaseMeta): 'meta class to set enumeration attributes, __contains__, __iter__...' def __init__(cls, name, bases, namespace)...
fix allow empty enums Seems shopify has it and we're failing. It was a "security measure", but not critical one. Fixes: #<I>
py
diff --git a/src/hdx/freshness/app/__main__.py b/src/hdx/freshness/app/__main__.py index <HASH>..<HASH> 100755 --- a/src/hdx/freshness/app/__main__.py +++ b/src/hdx/freshness/app/__main__.py @@ -27,7 +27,7 @@ def main( **ignore, ) -> None: """Run freshness. Either a database connection string (db_url) or dat...
Type hints, docstrings and comments added Renaming of some variables to better explain them
py
diff --git a/spyder/widgets/panels/manager.py b/spyder/widgets/panels/manager.py index <HASH>..<HASH> 100644 --- a/spyder/widgets/panels/manager.py +++ b/spyder/widgets/panels/manager.py @@ -23,7 +23,7 @@ def _logger(): class PanelsManager(Manager): """ - Manages the list of panels and draws them inised the ...
Fix little typo (inised -> inside)
py
diff --git a/java-iot/synth.py b/java-iot/synth.py index <HASH>..<HASH> 100644 --- a/java-iot/synth.py +++ b/java-iot/synth.py @@ -28,4 +28,6 @@ for version in versions: bazel_target=f'//google/cloud/{service}/{version}:google-cloud-{service}-{version}-java', ) -java.common_templates() +java.common_template...
chore: exclude blunderbuss from synth (#<I>)
py
diff --git a/mail_deduplicate/mail.py b/mail_deduplicate/mail.py index <HASH>..<HASH> 100644 --- a/mail_deduplicate/mail.py +++ b/mail_deduplicate/mail.py @@ -228,7 +228,7 @@ class DedupMail: """Renders into a table and in the same order, headers names and values used to produce mail's hash. - ...
mail.py: some minor change in wording of pretty_canonical_headers desc
py
diff --git a/src/aspectlib/py3support.py b/src/aspectlib/py3support.py index <HASH>..<HASH> 100644 --- a/src/aspectlib/py3support.py +++ b/src/aspectlib/py3support.py @@ -43,7 +43,7 @@ def decorate_advising_generator_py3(advising_function, cutpoint_function, bind): try: ...
Port the fix in <I>cae8 to Py3.
py
diff --git a/salt/states/pkg.py b/salt/states/pkg.py index <HASH>..<HASH> 100644 --- a/salt/states/pkg.py +++ b/salt/states/pkg.py @@ -1248,6 +1248,15 @@ def installed( 'result': True, 'comment': 'No packages to install provided'} + # If just a name (and optionally a version) is p...
pkg.installed: pack name/version into pkgs argument This allows a version of 'latest' to work when just a name and version is passed.
py
diff --git a/simpleimages/utils.py b/simpleimages/utils.py index <HASH>..<HASH> 100644 --- a/simpleimages/utils.py +++ b/simpleimages/utils.py @@ -81,5 +81,6 @@ def transform_field(instance, source_field_name, destination_field_name, transfo destination_field.save( destination_name, n...
Shouldn't save model when saving transformed image field, because can't specify `update_fields`
py
diff --git a/examples/botexample.py b/examples/botexample.py index <HASH>..<HASH> 100755 --- a/examples/botexample.py +++ b/examples/botexample.py @@ -18,6 +18,10 @@ https://developer.ciscospark.com. The bot's Access Token should be added as a 'SPARK_ACCESS_TOKEN' environment variable on the web server hosting this ...
Update botexample to call out Python 2-only support web.py only supports Python 2, therefore this script only supports Python 2.
py
diff --git a/tests/unit/core/ProjectTest.py b/tests/unit/core/ProjectTest.py index <HASH>..<HASH> 100644 --- a/tests/unit/core/ProjectTest.py +++ b/tests/unit/core/ProjectTest.py @@ -270,7 +270,7 @@ class ProjectTest: assert ~sp.any([len(item.props()) for item in proj]) proj._fetch_data() ass...
fixing file delete due to wrong object name
py
diff --git a/tenant_schemas/template_loaders.py b/tenant_schemas/template_loaders.py index <HASH>..<HASH> 100644 --- a/tenant_schemas/template_loaders.py +++ b/tenant_schemas/template_loaders.py @@ -4,28 +4,28 @@ multi-tenant setting """ import hashlib + from django import VERSION as DJANGO_VERSION from django.co...
Django <I> Support
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -65,7 +65,7 @@ for dir in test_web_dirs: setup( cmdclass={'install': install}, name='selenium', - version="0.7", + version="2.0-dev", description='Python bindings for WebDriver', url='http://code.goo...
Updating version number of py bindings to <I>-dev r<I>
py
diff --git a/salt/pillar/git_pillar.py b/salt/pillar/git_pillar.py index <HASH>..<HASH> 100644 --- a/salt/pillar/git_pillar.py +++ b/salt/pillar/git_pillar.py @@ -56,6 +56,10 @@ the repo's URL. Configuration details can be found below. Configuring git_pillar for Salt releases before 2015.8.0 =========================...
Put legacy git_pillar on a deprecation path for Oxygen (#<I>) This adds a warning when legacy git_pillar is used, and a notice in the docs.
py
diff --git a/pyemma/thermo/api.py b/pyemma/thermo/api.py index <HASH>..<HASH> 100644 --- a/pyemma/thermo/api.py +++ b/pyemma/thermo/api.py @@ -694,7 +694,7 @@ def tram( callback=callback, init=init, init_maxiter=init_maxiter, init_maxerr=init_maxerr, equilibrium=equilibrium, overcounti...
fix pg for multiple lags
py
diff --git a/fmn/lib/models.py b/fmn/lib/models.py index <HASH>..<HASH> 100644 --- a/fmn/lib/models.py +++ b/fmn/lib/models.py @@ -457,7 +457,10 @@ class Preference(BASE): @classmethod def by_detail(cls, session, detail_value): value = DetailValue.get(session, detail_value) - return value.pref...
Fix case where this is called before confirmation has completed. ..in which case there is no Preference yet, only a Confirmation entry.
py
diff --git a/cm/chef.py b/cm/chef.py index <HASH>..<HASH> 100644 --- a/cm/chef.py +++ b/cm/chef.py @@ -37,8 +37,8 @@ try: _d[m[0]] = m[1].strip("'").strip('"') # set global variables from client.rb CHEF_SERVER_URL = _d['chef_server_url'] - CHEF_NODE_NAME = _d['node_name'] - CHEF_CLIENT_NAME = _...
Proposed fix for gh#<I>
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,9 @@ # -*- coding: UTF-8 -*- from distutils.core import setup from setuptools import find_packages -import time -_version = "0.1.dev%s" % int(time.time()) +_version = "0.1" _packages = find_packages(exclude=["...
Setting version number to release number <I>
py
diff --git a/hdf5storage/utilities.py b/hdf5storage/utilities.py index <HASH>..<HASH> 100644 --- a/hdf5storage/utilities.py +++ b/hdf5storage/utilities.py @@ -356,9 +356,9 @@ def write_object_array(f, data, options): def read_object_array(f, data, options): """ Reads an array of objects recursively. - Read t...
Made the docstring of utilities.read_object_array more clear.
py
diff --git a/animanager/config.py b/animanager/config.py index <HASH>..<HASH> 100644 --- a/animanager/config.py +++ b/animanager/config.py @@ -140,6 +140,6 @@ class Config(BaseConfig): """Directory to trash anime files.""" return self.config.getpath('trashdir') - def playe...
Use player_args instead of player
py
diff --git a/sem/manager.py b/sem/manager.py index <HASH>..<HASH> 100644 --- a/sem/manager.py +++ b/sem/manager.py @@ -2,7 +2,7 @@ from .database import DatabaseManager from .runner import SimulationRunner from .parallelrunner import ParallelRunner from .utils import DRMAA_AVAILABLE, list_param_combinations -from gi...
Print a meaningful message when no git repo is found
py
diff --git a/test/test_contrib/test_jira_renderer.py b/test/test_contrib/test_jira_renderer.py index <HASH>..<HASH> 100644 --- a/test/test_contrib/test_jira_renderer.py +++ b/test/test_contrib/test_jira_renderer.py @@ -54,7 +54,7 @@ class TestJIRARenderer(TestCase): self.textFormatTest('*a{}*', '_a{}_') ...
fixed: inline code should strip whitespace at end
py
diff --git a/cqlengine/named.py b/cqlengine/named.py index <HASH>..<HASH> 100644 --- a/cqlengine/named.py +++ b/cqlengine/named.py @@ -1,6 +1,8 @@ from cqlengine.exceptions import CQLEngineException from cqlengine.query import AbstractQueryableColumn, SimpleQuerySet +from cqlengine.query import DoesNotExist as _Doe...
adding does not exist and multiple objects returns exceptions to named table
py
diff --git a/symengine/tests/test_expr.py b/symengine/tests/test_expr.py index <HASH>..<HASH> 100644 --- a/symengine/tests/test_expr.py +++ b/symengine/tests/test_expr.py @@ -4,7 +4,7 @@ from symengine.utilities import raises def test_as_coefficients_dict(): x = Symbol('x') y = Symbol('y') - check = [x, y...
test a hypothesis for a test failure
py
diff --git a/rfxcom/__init__.py b/rfxcom/__init__.py index <HASH>..<HASH> 100644 --- a/rfxcom/__init__.py +++ b/rfxcom/__init__.py @@ -7,4 +7,4 @@ The base package used by the rfxcom library. """ #: A PEP 396 compatible version string. -__version__ = '0.2.3' +__version__ = '0.3.0'
Version <I> with better setup.
py
diff --git a/plucky/__init__.py b/plucky/__init__.py index <HASH>..<HASH> 100644 --- a/plucky/__init__.py +++ b/plucky/__init__.py @@ -3,7 +3,7 @@ Plucking (deep) keys/paths safely from python collections has never been easier. """ __title__ = 'plucky' -__version__ = '0.3.2' +__version__ = '0.3.3' __author__ = 'Ra...
bumped to <I>
py
diff --git a/publ/entry.py b/publ/entry.py index <HASH>..<HASH> 100644 --- a/publ/entry.py +++ b/publ/entry.py @@ -306,13 +306,13 @@ class Entry(caching.Memoizable): def more(self): """ Get the below-the-fold entry body text """ _, more, is_markdown = self._entry_content - return TrueCalla...
In an absolute context, default to the entry link for entry.more too
py
diff --git a/discord/message.py b/discord/message.py index <HASH>..<HASH> 100644 --- a/discord/message.py +++ b/discord/message.py @@ -72,7 +72,7 @@ class Attachment: self._http = state.http @asyncio.coroutine - def save(self, fp): + def save(self, fp, *, seek_begin=True): """|coro| ...
Add seek_begin keyword argument to Attachment.save
py
diff --git a/docs/build_generated_docs.py b/docs/build_generated_docs.py index <HASH>..<HASH> 100644 --- a/docs/build_generated_docs.py +++ b/docs/build_generated_docs.py @@ -78,7 +78,13 @@ def build_iam_policy(checker): ======================== Below is the sample IAM policy from this version of awslimitch...
Fixes #<I> - add documentation on side-effect API calls made by AWS services
py
diff --git a/satpy/scene.py b/satpy/scene.py index <HASH>..<HASH> 100644 --- a/satpy/scene.py +++ b/satpy/scene.py @@ -703,13 +703,13 @@ class Scene(MetadataObject): source_area = dataset.attrs['area'] if source_area not in resamplers: key, resampler = prepare_resampler( - ...
Fix resampling wthen resampler type is provided
py
diff --git a/salt/states/file.py b/salt/states/file.py index <HASH>..<HASH> 100644 --- a/salt/states/file.py +++ b/salt/states/file.py @@ -232,7 +232,8 @@ def _source_list(source, source_hash, env): source = single_src break elif proto.startswith('http'...
clean up mkstemp in file state
py
diff --git a/salt/states/smartos.py b/salt/states/smartos.py index <HASH>..<HASH> 100644 --- a/salt/states/smartos.py +++ b/salt/states/smartos.py @@ -67,7 +67,7 @@ def _load_config(): config = {} if os.path.isfile('/usbkey/config'): - with open('/usbkey/config', 'r') as config_file: + with sa...
switch to salt.utils.fopen for _read_config and _write_config
py
diff --git a/cqlengine/management.py b/cqlengine/management.py index <HASH>..<HASH> 100644 --- a/cqlengine/management.py +++ b/cqlengine/management.py @@ -228,13 +228,19 @@ def get_fields(model): col_family = model.column_family_name(include_keyspace=False) with connection_manager() as con: - query =...
Updated get_fields to be <I> compatible
py
diff --git a/solc/wrapper.py b/solc/wrapper.py index <HASH>..<HASH> 100644 --- a/solc/wrapper.py +++ b/solc/wrapper.py @@ -48,7 +48,8 @@ def solc_wrapper(solc_binary=None, formal=None, allow_paths=None, standard_json=None, - success_return_code=0): +...
added flag evm-verison to solc_wrapper
py
diff --git a/airflow/utils/db.py b/airflow/utils/db.py index <HASH>..<HASH> 100644 --- a/airflow/utils/db.py +++ b/airflow/utils/db.py @@ -576,11 +576,7 @@ def create_default_connections(session=None): def initdb(session=None): """Initialize Airflow database.""" upgradedb(session=session) - filldb() - -...
Chore: Some code cleanup in `airflow/utils/db.py` (#<I>) As part of <URL>
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ setup( "attrdict>=2.0.0,<3", "eth-abi>=2.0.0b7,<3", "eth-keyfile>=0.5.0,<0.6.0", - "eth-keys>=0.2.1,<0.3.0", + "eth-keys>=0.2.1,<0.4.0", "eth-rlp>=0.1.2,<1", ...
Upgrade eth-keys to <I> But continue support for <I>.*
py
diff --git a/socketIO_client/transports.py b/socketIO_client/transports.py index <HASH>..<HASH> 100644 --- a/socketIO_client/transports.py +++ b/socketIO_client/transports.py @@ -96,7 +96,7 @@ class XHR_PollingTransport(AbstractTransport): params=params, data=memoryview(data), ...
Some socket.io projects send upercased OK
py
diff --git a/salt/states/file.py b/salt/states/file.py index <HASH>..<HASH> 100644 --- a/salt/states/file.py +++ b/salt/states/file.py @@ -4109,7 +4109,8 @@ def copy( hash1 = salt.utils.get_hash(name) hash2 = salt.utils.get_hash(source) if hash1 == hash2: - changed ...
backport #<I> to <I> (#<I>)
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import epc setup( name='epc', version=epc.__version__, - packages=['epc'], + packages=['epc', 'epc.tests'], author=epc.__author__, author_email='aka.tkf@gmail.com', url='https://git...
Include epc.tests in package
py
diff --git a/sirmordred/_version.py b/sirmordred/_version.py index <HASH>..<HASH> 100644 --- a/sirmordred/_version.py +++ b/sirmordred/_version.py @@ -1,2 +1,2 @@ # Versions compliant with PEP 440 https://www.python.org/dev/peps/pep-0440 -__version__ = "0.2.9" +__version__ = "0.2.10"
[release] Update version number to <I>
py
diff --git a/chempy/kinetics/tests/test_ode.py b/chempy/kinetics/tests/test_ode.py index <HASH>..<HASH> 100644 --- a/chempy/kinetics/tests/test_ode.py +++ b/chempy/kinetics/tests/test_ode.py @@ -755,7 +755,7 @@ def test_get_odesys__Eyring_2nd_order(): @requires('pycvodes', 'sym', 'scipy', units_library) -def _test...
Re-enable Eyring tests
py
diff --git a/mbed/mbed.py b/mbed/mbed.py index <HASH>..<HASH> 100644 --- a/mbed/mbed.py +++ b/mbed/mbed.py @@ -816,6 +816,7 @@ class Git(object): for ref in refs: m = re.match(r'^(.+)\s+refs\/tags\/(.+)$', ref) if m and (not rev or m.group(1).startswith(rev)): + t = m.g...
Fix variable bug introduce with regex simplification
py
diff --git a/djedi/plugins/img.py b/djedi/plugins/img.py index <HASH>..<HASH> 100644 --- a/djedi/plugins/img.py +++ b/djedi/plugins/img.py @@ -74,7 +74,7 @@ class ImagePluginBase(BasePlugin): try: box = tuple(int(x) for x in crop.split(',')) image = image.crop(...
Fix E<I> warnings.
py
diff --git a/arviz/__init__.py b/arviz/__init__.py index <HASH>..<HASH> 100644 --- a/arviz/__init__.py +++ b/arviz/__init__.py @@ -1,6 +1,6 @@ # pylint: disable=wildcard-import,invalid-name,wrong-import-position """ArviZ is a library for exploratory analysis of Bayesian models.""" -__version__ = "0.3.3" +__version__ ...
Increment version number to <I> (#<I>)
py
diff --git a/mongoctl/objects/replicaset_cluster.py b/mongoctl/objects/replicaset_cluster.py index <HASH>..<HASH> 100644 --- a/mongoctl/objects/replicaset_cluster.py +++ b/mongoctl/objects/replicaset_cluster.py @@ -728,7 +728,9 @@ class ReplicaSetCluster(Cluster): } if self.repl_set_config_settings:...
rs-conf: merge configured settings with existing settings instead of override
py
diff --git a/pkutils.py b/pkutils.py index <HASH>..<HASH> 100644 --- a/pkutils.py +++ b/pkutils.py @@ -31,7 +31,7 @@ from functools import total_ordering import semver -__version__ = "3.0.1" +__version__ = "3.0.2" __author__ = "Reuben Cummings" __description__ = "Python packaging utility library"
Bump to version <I>
py
diff --git a/backtrader/broker/bbroker.py b/backtrader/broker/bbroker.py index <HASH>..<HASH> 100644 --- a/backtrader/broker/bbroker.py +++ b/backtrader/broker/bbroker.py @@ -358,6 +358,8 @@ class BrokerBack(BrokerBase): else: # Execution depends on volume filler size = self.p.filler(...
Fully Address #<I>. Take into account order side when considering the return of a volume filler
py
diff --git a/simpycity/model.py b/simpycity/model.py index <HASH>..<HASH> 100644 --- a/simpycity/model.py +++ b/simpycity/model.py @@ -10,7 +10,6 @@ def d_out(text): class Construct(object): config = None - handle = None def __init__(self, config=None, handle=None, *args,**kwargs): """ @@ -24...
Lazy-init handle in the model.
py
diff --git a/endpoints/__init__.py b/endpoints/__init__.py index <HASH>..<HASH> 100644 --- a/endpoints/__init__.py +++ b/endpoints/__init__.py @@ -33,4 +33,4 @@ from .users_id_token import get_current_user, get_verified_jwt, convert_jwks_uri from .users_id_token import InvalidGetUserCall from .users_id_token import S...
Bump subminor version (<I> -> <I>) (#<I>) Fixes tests for versions of Python where logging.debug() was calling time.time(). Adds extra imports to the base endpoints package.
py
diff --git a/rollyourown/seo/admin.py b/rollyourown/seo/admin.py index <HASH>..<HASH> 100644 --- a/rollyourown/seo/admin.py +++ b/rollyourown/seo/admin.py @@ -69,12 +69,27 @@ def register_seo_admin(admin_site, metadata_class): admin_site.register(metadata_class._meta.get_model('view'), ViewAdmin) +class Metada...
Inlines now always save a metadata instance, meaning that the model metadata will work for models where no metadata is specified (so long as they are added or edited in the admin).
py
diff --git a/parsl/addresses.py b/parsl/addresses.py index <HASH>..<HASH> 100644 --- a/parsl/addresses.py +++ b/parsl/addresses.py @@ -10,7 +10,10 @@ import logging import platform import requests import socket -import fcntl +try: + import fcntl +except ImportError: + fcntl = None # type: ignore import struc...
Improve support for Windows (#<I>) Changes made in my efforts to get Parsl working minimally on Windows. Do not crash when fcntl is not found. Addresses #<I>, though I would not claim I will fix it completely.
py
diff --git a/examples/classifier/modelprocess2.py b/examples/classifier/modelprocess2.py index <HASH>..<HASH> 100644 --- a/examples/classifier/modelprocess2.py +++ b/examples/classifier/modelprocess2.py @@ -48,7 +48,7 @@ Y = Y.ravel() X_train, X_test, Y_train, Y_test = train_test_split(X,Y) scaler = StandardScaler() ...
Create scaler dump for webapps
py
diff --git a/kubernetes_state/datadog_checks/kubernetes_state/kubernetes_state.py b/kubernetes_state/datadog_checks/kubernetes_state/kubernetes_state.py index <HASH>..<HASH> 100644 --- a/kubernetes_state/datadog_checks/kubernetes_state/kubernetes_state.py +++ b/kubernetes_state/datadog_checks/kubernetes_state/kubernete...
include node condition value in check message (#<I>)
py
diff --git a/src/transformers/generation_stopping_criteria.py b/src/transformers/generation_stopping_criteria.py index <HASH>..<HASH> 100644 --- a/src/transformers/generation_stopping_criteria.py +++ b/src/transformers/generation_stopping_criteria.py @@ -35,7 +35,7 @@ class StoppingCriteria(ABC): """Abstract base ...
Fix StoppingCriteria ABC signature (#<I>) Change `score` -> `scores` because the argument is not positional-only, so you need consistently named parameters for the subclasses. The subclasses appear to favor `scores` over `score`.
py
diff --git a/pandas/core/groupby/ops.py b/pandas/core/groupby/ops.py index <HASH>..<HASH> 100644 --- a/pandas/core/groupby/ops.py +++ b/pandas/core/groupby/ops.py @@ -1047,7 +1047,6 @@ class BinGrouper(BaseGrouper): ---------- bins : the split index of binlabels to group the item of axis binlabels : the ...
CLN: remove unused filter_empty from BinGrouper (#<I>)
py
diff --git a/ontquery/__init__.py b/ontquery/__init__.py index <HASH>..<HASH> 100644 --- a/ontquery/__init__.py +++ b/ontquery/__init__.py @@ -914,12 +914,12 @@ class SciCrunchRemote(SciGraphRemote): class InterLexRemote(OntService): # note to self - host = 'uri.interlex.org' - port = '' - host_port = f'...
ilx remote host and port at construction rather than spec time
py
diff --git a/tests/engine2_test.py b/tests/engine2_test.py index <HASH>..<HASH> 100644 --- a/tests/engine2_test.py +++ b/tests/engine2_test.py @@ -150,20 +150,7 @@ random_seed=0 'maximum_distance': '0' } - params, expected_files = engine2.parse_config(source) - - # In order for us ...
tests/engine2_test: Removed some more test junk. Former-commit-id: be<I>df0a<I>f<I>f<I>ce6f8ca1b<I>cd<I>
py
diff --git a/cobald/parasites/condor_limits/adapter.py b/cobald/parasites/condor_limits/adapter.py index <HASH>..<HASH> 100644 --- a/cobald/parasites/condor_limits/adapter.py +++ b/cobald/parasites/condor_limits/adapter.py @@ -14,7 +14,10 @@ def query_limits(query_command, key_transform): except ValueError: ...
condor: invalid values are ignored during queries
py
diff --git a/src/psd_tools/user_api/layers.py b/src/psd_tools/user_api/layers.py index <HASH>..<HASH> 100644 --- a/src/psd_tools/user_api/layers.py +++ b/src/psd_tools/user_api/layers.py @@ -45,7 +45,31 @@ def group_layers(decoded_data): elif divider.type == SectionDivider.BOUNDING_SECTION_DIVIDER: ...
Fixed group parsing when OPEN_FOLDER is implicit. See GH-5.
py
diff --git a/tests/test_parser.py b/tests/test_parser.py index <HASH>..<HASH> 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -295,6 +295,22 @@ def test_comment_after_escape(): hi\\%""") assert len(list(soup2.document.contents)) == 3 + soup3 = TexSoup(r""" + \documentclass{article} + ...
new test case, alreay fixed, fixes #<I>
py
diff --git a/tests/pytests/unit/states/test_cmd.py b/tests/pytests/unit/states/test_cmd.py index <HASH>..<HASH> 100644 --- a/tests/pytests/unit/states/test_cmd.py +++ b/tests/pytests/unit/states/test_cmd.py @@ -155,7 +155,7 @@ def test_script_runas_no_password(): "changes": {}, "result": False, ...
Fix typo and remove superfluous comment
py