diff
stringlengths
139
3.65k
message
stringlengths
8
627
diff_languages
stringclasses
1 value
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ except IOError: readme = '' setup( name = 'python-skydrive', - version = '12.09.37', + version = '12.10.0', author = 'Mike Kazantsev', author_email = 'mk.fraggod@gmail.com', license = 'WTFPL', @@ -25,...
setup: updated classifiers to include cli
py
diff --git a/kraken-biom.py b/kraken-biom.py index <HASH>..<HASH> 100755 --- a/kraken-biom.py +++ b/kraken-biom.py @@ -292,6 +292,10 @@ def _main(): Defaulting to BIOM 1.0 (JSON).""" print(twdd(msg)) + if ranks.index(args.max) >= ranks.index(args.min): + msg = "ERROR: Max and Min ranks are...
Ensures the max and min tax levels are ordered correctly.
py
diff --git a/nailgun/entities.py b/nailgun/entities.py index <HASH>..<HASH> 100644 --- a/nailgun/entities.py +++ b/nailgun/entities.py @@ -4743,6 +4743,7 @@ class PartitionTable( self._fields = { 'layout': entity_fields.StringField(required=True), 'location': entity_fields.OneToManyFi...
Adding locked state to ptable (#<I>) This change requries <URL>
py
diff --git a/spyder/widgets/sourcecode/codeeditor.py b/spyder/widgets/sourcecode/codeeditor.py index <HASH>..<HASH> 100644 --- a/spyder/widgets/sourcecode/codeeditor.py +++ b/spyder/widgets/sourcecode/codeeditor.py @@ -1917,6 +1917,7 @@ class CodeEditor(TextEditBaseWidget): diff_curly = 0 add_indent ...
Initialized pretext before for loop Initialize prevtext before the for loop to prevent errors if the for loop never runs.
py
diff --git a/src/toil/provisioners/abstractProvisioner.py b/src/toil/provisioners/abstractProvisioner.py index <HASH>..<HASH> 100644 --- a/src/toil/provisioners/abstractProvisioner.py +++ b/src/toil/provisioners/abstractProvisioner.py @@ -109,13 +109,16 @@ class AbstractProvisioner(object): while not s...
Improve robustness of cluster stats aggregator
py
diff --git a/pymatgen/command_line/bader_caller.py b/pymatgen/command_line/bader_caller.py index <HASH>..<HASH> 100644 --- a/pymatgen/command_line/bader_caller.py +++ b/pymatgen/command_line/bader_caller.py @@ -310,6 +310,22 @@ class BaderAnalysis: raise ValueError("No NELECT info! Need POTCAR for VASP or ...
Add get partial charge method in bader
py
diff --git a/jboss_wildfly/tests/test_check.py b/jboss_wildfly/tests/test_check.py index <HASH>..<HASH> 100644 --- a/jboss_wildfly/tests/test_check.py +++ b/jboss_wildfly/tests/test_check.py @@ -4,7 +4,9 @@ import pytest -from datadog_checks.dev.jmx import JVM_E2E_METRICS +from datadog_checks.base import AgentChec...
Update wildfly tests (#<I>)
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,10 @@ maintainer_email = "freidankm@googlemail.com" url = "https://github.com/MFreidank/ARSpy" -version = "0.2" +version = "0.3" +download_url = "https://github.com/MFreidank/ARSpy/archive/{}.tar.gz".format( + ...
Preparing for new version <I>
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -44,6 +44,8 @@ can be converted to json. # 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'Programming Language :: Python :: 3.5', + 'Programming Language :: ...
Correct python version in setup.py
py
diff --git a/gitlab/v4/objects.py b/gitlab/v4/objects.py index <HASH>..<HASH> 100644 --- a/gitlab/v4/objects.py +++ b/gitlab/v4/objects.py @@ -1590,9 +1590,22 @@ class ProjectSnippetManager(BaseManager): class ProjectTrigger(GitlabObject): _url = '/projects/%(project_id)s/triggers' - canUpdate = False - i...
[v4] Triggers: update object * Add support for the description attribute * Add ``take_ownership`` support * Triggers now use ``id`` as identifier
py
diff --git a/hvac/tests/test_integration.py b/hvac/tests/test_integration.py index <HASH>..<HASH> 100644 --- a/hvac/tests/test_integration.py +++ b/hvac/tests/test_integration.py @@ -300,7 +300,7 @@ class IntegrationTest(TestCase): # test that user can be read read_user = self.client.read_userpass('...
Change method of checking value in policies Vault seems to have changed the way that the API returns policies for the userpass backend between <I>.x and <I>.x. In <I> the value is a comma-separated string, and may contain the value "default". In <I> it's a list, and doesn't include "default". Using 'in' should account...
py
diff --git a/internetarchive/session.py b/internetarchive/session.py index <HASH>..<HASH> 100644 --- a/internetarchive/session.py +++ b/internetarchive/session.py @@ -2,7 +2,7 @@ # # The internetarchive module is a Python/CLI interface to Archive.org. # -# Copyright (C) 2012-2019 Internet Archive +# Copyright (C) 20...
Adjust the copyright date ranges.
py
diff --git a/stanfordnlp/models/charlm.py b/stanfordnlp/models/charlm.py index <HASH>..<HASH> 100644 --- a/stanfordnlp/models/charlm.py +++ b/stanfordnlp/models/charlm.py @@ -5,6 +5,7 @@ Entry point for training and evaluating a character-level neural language model. import random import argparse from copy import co...
Hack around vocab building for many large files
py
diff --git a/pyhydroquebec/client.py b/pyhydroquebec/client.py index <HASH>..<HASH> 100644 --- a/pyhydroquebec/client.py +++ b/pyhydroquebec/client.py @@ -35,12 +35,12 @@ class HydroQuebecClient(): """PyHydroQuebec HTTP Client.""" def __init__(self, username, password, timeout=REQUESTS_TIMEOUT, - ...
Always get a new session for continuous run (?)
py
diff --git a/fortranmagic.py b/fortranmagic.py index <HASH>..<HASH> 100644 --- a/fortranmagic.py +++ b/fortranmagic.py @@ -271,12 +271,17 @@ class FortranMagics(Magics): self.fortran.parser.set_defaults(**saved_defaults) except KeyError: saved_defaults = {'verbosity': 0} - args...
if cell vebosity is defined, ignore the verbosity on global config
py
diff --git a/tests/python/unittest/test_random.py b/tests/python/unittest/test_random.py index <HASH>..<HASH> 100644 --- a/tests/python/unittest/test_random.py +++ b/tests/python/unittest/test_random.py @@ -882,7 +882,7 @@ def test_randint_generator(): @with_seed() def test_randint_without_dtype(): a = mx.nd.ran...
Fix for test always returning true (#<I>)
py
diff --git a/xray/conventions.py b/xray/conventions.py index <HASH>..<HASH> 100644 --- a/xray/conventions.py +++ b/xray/conventions.py @@ -558,15 +558,15 @@ def decode_cf_variable(var, concat_characters=True, mask_and_scale=True, data = CharToStringArray(data) if mask_and_scale: - # missing_v...
Cleaner handling of missing_value in decode_cf_variable
py
diff --git a/pygeotools/trim_ndv.py b/pygeotools/trim_ndv.py index <HASH>..<HASH> 100755 --- a/pygeotools/trim_ndv.py +++ b/pygeotools/trim_ndv.py @@ -33,7 +33,7 @@ def main(): bma = iolib.ds_getma(src_ds) print("Computing min/max indices for mask") - edge_env = malib.edgefind2(bma).astype(int) + edge...
trim_ndv: fix bug involving integer envelope indices
py
diff --git a/test/run_unittests.py b/test/run_unittests.py index <HASH>..<HASH> 100644 --- a/test/run_unittests.py +++ b/test/run_unittests.py @@ -58,4 +58,5 @@ def main(argv): if __name__ == '__main__': - main(sys.argv) + # main(sys.argv) + pass
Temporarily turn off broken unittest execution. We will add the test case list back in once we have the tests updated.
py
diff --git a/conf.py b/conf.py index <HASH>..<HASH> 100644 --- a/conf.py +++ b/conf.py @@ -39,9 +39,7 @@ author = "Evan Hubinger" version = VERSION_TAG master_doc = 'README' -htmlhelp_basename = "coconutdoc" - +source_suffix = [".rst", ".md"] source_parsers = { ".md": CommonMarkParser } -source_suffix = [".r...
Improves sphinx conf
py
diff --git a/etcd3/client.py b/etcd3/client.py index <HASH>..<HASH> 100644 --- a/etcd3/client.py +++ b/etcd3/client.py @@ -136,21 +136,32 @@ class Etcd3Client(object): for kv in range_response.kvs: yield (kv.key, kv.value) - def _build_put_request(self, key, value): + def _build_pu...
Allow attaching a lease to a key
py
diff --git a/peerplays/peerplays.py b/peerplays/peerplays.py index <HASH>..<HASH> 100644 --- a/peerplays/peerplays.py +++ b/peerplays/peerplays.py @@ -243,7 +243,7 @@ class PeerPlays(object): assert isinstance(append_to, (TransactionBuilder, ProposalBuilder)) append_to.appendOps(ops) ...
Use proposer to sign a proposal and not the account
py
diff --git a/MAVProxy/modules/lib/wxconsole.py b/MAVProxy/modules/lib/wxconsole.py index <HASH>..<HASH> 100755 --- a/MAVProxy/modules/lib/wxconsole.py +++ b/MAVProxy/modules/lib/wxconsole.py @@ -8,9 +8,9 @@ import textconsole, sys, time from wxconsole_util import Value, Text import platform if platform.system() == '...
wxconsole: fix freeze_support Fix bug that was introduced when multiprocessing was switched to billiards
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup(name='django-categories', author='Corey Oordt', author_email='coordt@washingtontimes.com', url='http://opensource.washingtontimes.com/projects/django-categories/', - packages=['djan...
changed the packages part to be just 'categories' instead of 'django-categories'
py
diff --git a/djpaypal/models/base.py b/djpaypal/models/base.py index <HASH>..<HASH> 100644 --- a/djpaypal/models/base.py +++ b/djpaypal/models/base.py @@ -57,7 +57,10 @@ class PaypalObject(models.Model): @classmethod def get_or_update_from_api_data(cls, data, always_sync=False): id, cleaned_data, m2ms = cls.clea...
Use id_field_name when creating the model from API data
py
diff --git a/rebulk/__version__.py b/rebulk/__version__.py index <HASH>..<HASH> 100644 --- a/rebulk/__version__.py +++ b/rebulk/__version__.py @@ -4,4 +4,4 @@ Version module """ # pragma: no cover -__version__ = '0.8.2' +__version__ = '0.8.3.dev0'
Back to development: <I>
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from djangocms_column import __version__ INSTALL_REQUIRES = [ 'django-cms>=3.2.0', - 'django>=1.8,<1.10', + 'django>=1.8,<1.11', ] CLASSIFIERS = [
Update setup.py allow django <I> (#<I>)
py
diff --git a/pydle/features/rfc1459/client.py b/pydle/features/rfc1459/client.py index <HASH>..<HASH> 100644 --- a/pydle/features/rfc1459/client.py +++ b/pydle/features/rfc1459/client.py @@ -701,7 +701,7 @@ class RFC1459Support(BasicClient): def on_raw_319(self, message): """ WHOIS active channels. """ ...
Call strip() on raw channel names before splitting them.
py
diff --git a/ignite/handlers/checkpoint.py b/ignite/handlers/checkpoint.py index <HASH>..<HASH> 100644 --- a/ignite/handlers/checkpoint.py +++ b/ignite/handlers/checkpoint.py @@ -109,7 +109,7 @@ class ModelCheckpoint(object): torch.save(obj, path) else: - tmp = tempfile.NamedTemporary...
During atomic save in checkpoint, save temporary file to target directory rather than to default TMPDIR. (#<I>)
py
diff --git a/spyder/__init__.py b/spyder/__init__.py index <HASH>..<HASH> 100644 --- a/spyder/__init__.py +++ b/spyder/__init__.py @@ -27,7 +27,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ -version_info = (3, 2, 0) +version_info = (3, 2, 1, "dev0") __vers...
Back to work [ci skip]
py
diff --git a/salt/modules/lxc.py b/salt/modules/lxc.py index <HASH>..<HASH> 100644 --- a/salt/modules/lxc.py +++ b/salt/modules/lxc.py @@ -1357,7 +1357,7 @@ def create(name, 'Only one of \'template\' and \'image\' is permitted' ) - options = select('options') + options = select('options') ...
Fix creation of container from image Also changed return data for create() to match destroy(), clone(), etc.
py
diff --git a/testsuite/run_cim_operations.py b/testsuite/run_cim_operations.py index <HASH>..<HASH> 100755 --- a/testsuite/run_cim_operations.py +++ b/testsuite/run_cim_operations.py @@ -12,6 +12,7 @@ from __future__ import absolute_import # pylint: disable=missing-docstring,superfluous-parens,no-self-use import sy...
Modify run-cimOperations to rename yaml file before each test Previously we just appended to an existing file making the tests messy.
py
diff --git a/psiturk/amt_services.py b/psiturk/amt_services.py index <HASH>..<HASH> 100644 --- a/psiturk/amt_services.py +++ b/psiturk/amt_services.py @@ -410,7 +410,7 @@ class MTurkServices(object): 'workerId': worker.WorkerId, 'submit_time': worker.SubmitTime, 'accept_time': wor...
fixes problem with variables randomly being renamed in a previous commit
py
diff --git a/salt/modules/mod_random.py b/salt/modules/mod_random.py index <HASH>..<HASH> 100644 --- a/salt/modules/mod_random.py +++ b/salt/modules/mod_random.py @@ -7,6 +7,7 @@ Provides access to randomness generators. from __future__ import absolute_import # Import python libs import hashlib +import random # I...
added random integer module to mod_random.py fixes #<I> this will help solve it
py
diff --git a/markable_data.py b/markable_data.py index <HASH>..<HASH> 100644 --- a/markable_data.py +++ b/markable_data.py @@ -203,13 +203,13 @@ class Cmarkables: for node_markable in self.__get_node_markables(): yield Cmarkable(node_markable,self.type) - def get_markable(self,mar...
corrected minor error in markable_data
py
diff --git a/datatable/utils/terminal.py b/datatable/utils/terminal.py index <HASH>..<HASH> 100644 --- a/datatable/utils/terminal.py +++ b/datatable/utils/terminal.py @@ -23,7 +23,7 @@ term = blessed.Terminal() def _new_displayhook(value): if value is None: return - if hasattr(value, "_display_in_term...
Bug fix: looking at dt.DataTable class was not possible in the console
py
diff --git a/src/sos/target.py b/src/sos/target.py index <HASH>..<HASH> 100644 --- a/src/sos/target.py +++ b/src/sos/target.py @@ -565,8 +565,13 @@ class RuntimeInfo: def release(self): if self._lock: - self._lock.release() - env.logger.trace('Lock released for output files {}'.for...
Try to fix lock release error #<I>
py
diff --git a/kitnirc/client.py b/kitnirc/client.py index <HASH>..<HASH> 100644 --- a/kitnirc/client.py +++ b/kitnirc/client.py @@ -1,7 +1,11 @@ import logging import re import socket -import ssl + +try: + import ssl as _ssl +except ImportError: + pass # No SSL support from kitnirc.events import NUMERIC_EVEN...
Fix name collision between ssl argument and ssl import.
py
diff --git a/pfr/utils.py b/pfr/utils.py index <HASH>..<HASH> 100644 --- a/pfr/utils.py +++ b/pfr/utils.py @@ -52,7 +52,7 @@ def getHTML(url): else: # Some other error code raise e - time.sleep(2) + time.sleep(1.5) return html def relURLToID(url):
changed 2 second wait time to <I>
py
diff --git a/simplesqlite/core.py b/simplesqlite/core.py index <HASH>..<HASH> 100644 --- a/simplesqlite/core.py +++ b/simplesqlite/core.py @@ -692,7 +692,7 @@ class SimpleSQLite(object): self.verify_table_existence(table_name) - return self.schema_extractor.fetch_table_schema(table_name).get_attr_na...
Modify to apply a dependency package update
py
diff --git a/troposphere/codebuild.py b/troposphere/codebuild.py index <HASH>..<HASH> 100644 --- a/troposphere/codebuild.py +++ b/troposphere/codebuild.py @@ -125,10 +125,12 @@ class Source(AWSProperty): def validate(self): valid_types = [ + 'BITBUCKET', 'CODECOMMIT', ...
Add missing Codebuild source types (#<I>) - BITBUCKET - NO_SOURCE
py
diff --git a/pypeerassets/kutil.py b/pypeerassets/kutil.py index <HASH>..<HASH> 100644 --- a/pypeerassets/kutil.py +++ b/pypeerassets/kutil.py @@ -24,7 +24,7 @@ class Kutil: if privkey is not None: self.keypair = PrivateKey(unhexlify(privkey)) - if (privkey and wif and seed) is None: + ...
Fix logical if condition for no inputs Kutil(privkey=....) was being overwritten due to this logical statement allowing for the creation of a new blank instance of PrivateKey()
py
diff --git a/src/pyctools/core/base.py b/src/pyctools/core/base.py index <HASH>..<HASH> 100644 --- a/src/pyctools/core/base.py +++ b/src/pyctools/core/base.py @@ -166,13 +166,14 @@ class Component(ConfigMixin): pairs to a component's constructor. These values are applied after calling :py:meth:`initialise`. ...
Eliminate a few documentation build warnings
py
diff --git a/ELiDE/ELiDE/board/board.py b/ELiDE/ELiDE/board/board.py index <HASH>..<HASH> 100644 --- a/ELiDE/ELiDE/board/board.py +++ b/ELiDE/ELiDE/board/board.py @@ -67,8 +67,10 @@ class Board(RelativeLayout): return self._parented = True self.kvlayoutback = KvLayoutBack( + ch...
Make the wallpaper user-settable, in theory at least
py
diff --git a/is_core/auth/__init__.py b/is_core/auth/__init__.py index <HASH>..<HASH> 100644 --- a/is_core/auth/__init__.py +++ b/is_core/auth/__init__.py @@ -24,7 +24,7 @@ class Auth(object): validators = [validators] for validator in validators: - if validator(request.user, request....
Removed account from auth wrapper
py
diff --git a/pypsa/io.py b/pypsa/io.py index <HASH>..<HASH> 100644 --- a/pypsa/io.py +++ b/pypsa/io.py @@ -220,8 +220,9 @@ if has_xarray: yield attr[len(t):], df class ExporterNetCDF(Exporter): - def __init__(self, path): + def __init__(self, path, least_significant_digit=3): ...
io: Add compression to series attributes in netcdf exporter
py
diff --git a/src/livestreamer/plugins/ownedtv.py b/src/livestreamer/plugins/ownedtv.py index <HASH>..<HASH> 100644 --- a/src/livestreamer/plugins/ownedtv.py +++ b/src/livestreamer/plugins/ownedtv.py @@ -37,6 +37,10 @@ class OwnedTV(Plugin): data = fd.read() fd.close() + match = re.search(b"do...
livestreamer.plugins.ownedtv: Use two regexes. It seems both regexes are needed for different URLs. Should now work on both /live/id and /channelname URLs.
py
diff --git a/cross_section.py b/cross_section.py index <HASH>..<HASH> 100644 --- a/cross_section.py +++ b/cross_section.py @@ -76,6 +76,13 @@ INTERSECT_VERTEX = 1 def compute_edge_plane_intersection(mesh, e, plane): """ Compute the intersection between and edge and a plane + + If the plane cuts the edge i...
Add comment to compute_edge_plane_intersection
py
diff --git a/vyper/lll/compile_lll.py b/vyper/lll/compile_lll.py index <HASH>..<HASH> 100644 --- a/vyper/lll/compile_lll.py +++ b/vyper/lll/compile_lll.py @@ -489,8 +489,8 @@ def _compile_to_assembly(code, withargs=None, existing_labels=None, break_dest=N # # jump to a symbol elif code.value == "goto": ...
Fix raw symbols in LLL Not sure why this case was there before, but this change allows one to push a code destination onto the stack by name.
py
diff --git a/deepdish/tests/test_io.py b/deepdish/tests/test_io.py index <HASH>..<HASH> 100644 --- a/deepdish/tests/test_io.py +++ b/deepdish/tests/test_io.py @@ -201,6 +201,15 @@ class TestIO(unittest.TestCase): x1 = reconstruct(fn, x) assert x == x1 + def test_force_pickle(self): + ...
TESTS: Added ForcePickle test
py
diff --git a/src/harvesters/core.py b/src/harvesters/core.py index <HASH>..<HASH> 100644 --- a/src/harvesters/core.py +++ b/src/harvesters/core.py @@ -2210,8 +2210,6 @@ class ImageAcquirer: else: if queue: queue.put(buffer) - ...
Fix an issue caused by #<I>
py
diff --git a/fedmsg_meta_fedora_infrastructure/elections.py b/fedmsg_meta_fedora_infrastructure/elections.py index <HASH>..<HASH> 100644 --- a/fedmsg_meta_fedora_infrastructure/elections.py +++ b/fedmsg_meta_fedora_infrastructure/elections.py @@ -25,7 +25,7 @@ from fedmsg_meta_fedora_infrastructure import BaseProcessor...
Fix typo in where the election app is located
py
diff --git a/tests/test_lme4.py b/tests/test_lme4.py index <HASH>..<HASH> 100644 --- a/tests/test_lme4.py +++ b/tests/test_lme4.py @@ -256,7 +256,7 @@ def test_lmer_basic_nan(): res = rlme4.fit() assert np.allclose(res["fixed effects intercept"], 137.37179302516199186) - assert res["model converged"] + ...
tests: remove test case because it fails on travis-ci
py
diff --git a/geomdl/Abstract.py b/geomdl/Abstract.py index <HASH>..<HASH> 100644 --- a/geomdl/Abstract.py +++ b/geomdl/Abstract.py @@ -211,7 +211,7 @@ class Curve(object): if self._bounding_box is None or len(self._bounding_box) == 0: self._eval_bbox() - return self._bounding_box + ...
Fixed a bug which causes issues when we try to reset bounding box
py
diff --git a/pypet/storageservice.py b/pypet/storageservice.py index <HASH>..<HASH> 100644 --- a/pypet/storageservice.py +++ b/pypet/storageservice.py @@ -228,10 +228,12 @@ class LazyStorageService(StorageService): class NodeProcessingTimer(HasLogger): """Simple Class to display the processing of nodes""" de...
ok, I have to divide by time to get Hertz (and I call myself a scientist :eek:)
py
diff --git a/pluginmanager/file_manager.py b/pluginmanager/file_manager.py index <HASH>..<HASH> 100644 --- a/pluginmanager/file_manager.py +++ b/pluginmanager/file_manager.py @@ -7,15 +7,21 @@ class FileManager(object): the file filters to the filepaths gotten from the """ def __init__(self, - ...
added in plugin files and blacklist files to file manager
py
diff --git a/asv/runner.py b/asv/runner.py index <HASH>..<HASH> 100644 --- a/asv/runner.py +++ b/asv/runner.py @@ -360,7 +360,9 @@ def get_spawner(env, benchmark_dir, launch_method): has_fork = hasattr(os, 'fork') and hasattr(socket, 'AF_UNIX') if launch_method in (None, 'auto'): - if has_fork: + ...
runner: don't default to forkserver on OSX
py
diff --git a/appinst/platforms/win32.py b/appinst/platforms/win32.py index <HASH>..<HASH> 100644 --- a/appinst/platforms/win32.py +++ b/appinst/platforms/win32.py @@ -36,10 +36,10 @@ class Win32(object): def _install_application_menus(self, menus, shortcuts, start_menu): dir_path = start_menu - q...
FIX: Fixed bug in which directories would be incorrectly created when there was more than one sub-menu.
py
diff --git a/relationships/templatetags/relationship_tags.py b/relationships/templatetags/relationship_tags.py index <HASH>..<HASH> 100644 --- a/relationships/templatetags/relationship_tags.py +++ b/relationships/templatetags/relationship_tags.py @@ -62,8 +62,7 @@ def if_relationship(parser, token): """ bits ...
bugfix for py3 on raise
py
diff --git a/pyensembl/ensembl_release.py b/pyensembl/ensembl_release.py index <HASH>..<HASH> 100644 --- a/pyensembl/ensembl_release.py +++ b/pyensembl/ensembl_release.py @@ -74,13 +74,12 @@ class EnsemblRelease(Genome): server=ENSEMBL_FTP_SERVER): self.release, self.species, self.server = self.no...
always use self.species after normalization
py
diff --git a/heroku_connect/db/models/fields.py b/heroku_connect/db/models/fields.py index <HASH>..<HASH> 100644 --- a/heroku_connect/db/models/fields.py +++ b/heroku_connect/db/models/fields.py @@ -15,9 +15,9 @@ from django.db import models from django.utils import timezone __all__ = ( - 'HerokuConnectFieldMixi...
Add TextAreaLong to __all__ along with the other classes (#<I>) That should fix #<I>
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ REQUIREMENTS_NOTEBOOKS = [ "appmode", "seaborn", # TODO use pypi version - "pyam-iamc @ git+https://github.com/IAMconsortium/pyam.git@a6ac0c574c3d5363fb8dba7d8b42a845fd3dbe87", + "pyam-iamc>...
Remove pyam url dependency
py
diff --git a/dvc/fs/webdav.py b/dvc/fs/webdav.py index <HASH>..<HASH> 100644 --- a/dvc/fs/webdav.py +++ b/dvc/fs/webdav.py @@ -117,7 +117,7 @@ class WebDAVFileSystem(BaseFileSystem): # pylint:disable=abstract-method ) # Check whether connection is valid (root should always exist) - if no...
webdav: use root url to check and on mkdir to find recurse depth (#<I>)
py
diff --git a/molo/core/api/tests/test_importers.py b/molo/core/api/tests/test_importers.py index <HASH>..<HASH> 100644 --- a/molo/core/api/tests/test_importers.py +++ b/molo/core/api/tests/test_importers.py @@ -213,6 +213,7 @@ class TestSiteSectionImporter(MoloTestCaseMixin, TestCase): parser....
Add an additional test for refactor
py
diff --git a/python_modules/dagster/dagster/core/definitions/step_launcher.py b/python_modules/dagster/dagster/core/definitions/step_launcher.py index <HASH>..<HASH> 100644 --- a/python_modules/dagster/dagster/core/definitions/step_launcher.py +++ b/python_modules/dagster/dagster/core/definitions/step_launcher.py @@ -5...
Fix step launcher documentation Summary: Docstring for step launcher didn't have arg name Test Plan: unit tests Reviewers: sandyryza, rexledesma Reviewed By: sandyryza, rexledesma Differential Revision: <URL>
py
diff --git a/src/foremast/utils/lookups.py b/src/foremast/utils/lookups.py index <HASH>..<HASH> 100644 --- a/src/foremast/utils/lookups.py +++ b/src/foremast/utils/lookups.py @@ -103,8 +103,13 @@ class GitLookup(): LOG.info('Retrieving "%s" from "%s".', filename, self.runway_dir or self.git_short) i...
fix: WARNING when local file missing See also: #<I>
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open(path.join(readme, 'README.rst'), encoding='utf-8') as f: setup( name = "Jade-Application-Kit", -version = "v1.3.3", +version = "v1.3.2", packages = ["j"], url ...
revert version <I>
py
diff --git a/djstripe/models/billing.py b/djstripe/models/billing.py index <HASH>..<HASH> 100644 --- a/djstripe/models/billing.py +++ b/djstripe/models/billing.py @@ -1216,12 +1216,10 @@ class Plan(StripeModel): return plan def __str__(self): - from .billing import Subscription - - subscri...
Refactored Plan.__str__() to take advantage of the related_name arg, prices
py
diff --git a/registry/quilt_server/prod_config.py b/registry/quilt_server/prod_config.py index <HASH>..<HASH> 100644 --- a/registry/quilt_server/prod_config.py +++ b/registry/quilt_server/prod_config.py @@ -8,9 +8,12 @@ import os SQLALCHEMY_DATABASE_URI = os.environ['SQLALCHEMY_DATABASE_URI'] REGISTRY_URL = os.envi...
Allow insecure catalog connection with extra environment variable (#<I>)
py
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -181,6 +181,6 @@ htmlhelp_basename = "PyNaCldoc" # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = {"http://docs.python.org/": None} - -# Enable the new Re...
Added linkcheck_retries config to sphinx for resillience (#<I>)
py
diff --git a/test/writer/text/test_markdown_writer.py b/test/writer/text/test_markdown_writer.py index <HASH>..<HASH> 100644 --- a/test/writer/text/test_markdown_writer.py +++ b/test/writer/text/test_markdown_writer.py @@ -583,13 +583,6 @@ class Test_MarkdownTableWriter_write_table: print_test_result(expected=...
Remove a test case for a deprecated property
py
diff --git a/osmhm/userUtil.py b/osmhm/userUtil.py index <HASH>..<HASH> 100644 --- a/osmhm/userUtil.py +++ b/osmhm/userUtil.py @@ -6,7 +6,7 @@ import xml.etree.cElementTree as ElementTree def userUtil(user_id): def parseUser(source, handle): for event, elem in ElementTree.iterparse(source, - ...
Corrected exception handling for userUtil request
py
diff --git a/aiohttp_login/decorators.py b/aiohttp_login/decorators.py index <HASH>..<HASH> 100644 --- a/aiohttp_login/decorators.py +++ b/aiohttp_login/decorators.py @@ -1,5 +1,6 @@ from functools import wraps +from aiohttp.abc import AbstractView from aiohttp.web import HTTPForbidden, json_response, StreamRespons...
Added support for class based views in user_to_request Now it is possible to do: class WebSocket(web.View): @user_to_request_cls async def get(self): pass
py
diff --git a/rinoh/backend/pdf/cos.py b/rinoh/backend/pdf/cos.py index <HASH>..<HASH> 100644 --- a/rinoh/backend/pdf/cos.py +++ b/rinoh/backend/pdf/cos.py @@ -174,7 +174,7 @@ class String(Object, bytes): except UnicodeEncodeError: value = BOM_UTF16_BE + value.encode('utf_16') except Attri...
Be more strict about the value passed into String
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( author='Philipp Adelt', author_email='autosort-github@philipp.adelt.net ', url='https://github.com/padelt/temper-python', - version='1.4.1', + version='1.5.0', description='Reads t...
Bump package version to <I> - first release with support for Temper <I> devices
py
diff --git a/tests/integration_tests/dashboards/api_tests.py b/tests/integration_tests/dashboards/api_tests.py index <HASH>..<HASH> 100644 --- a/tests/integration_tests/dashboards/api_tests.py +++ b/tests/integration_tests/dashboards/api_tests.py @@ -1425,6 +1425,7 @@ class TestDashboardApi(SupersetTestCase, ApiOwnersT...
test: freeze time for dashboard export test (#<I>)
py
diff --git a/bugwarrior/db.py b/bugwarrior/db.py index <HASH>..<HASH> 100644 --- a/bugwarrior/db.py +++ b/bugwarrior/db.py @@ -407,9 +407,9 @@ def synchronize(issue_generator, conf): for issue in issue_updates['closed']: _, task_info = tw.get_task(uuid=issue) log.name('db').info( - "Co...
Handle debugging in odd case where uuid doesn't return a task.
py
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,7 +32,7 @@ sys.path.insert(0, os.path.abspath('../')) # ones. extensions = [ 'sphinx.ext.autodoc', - 'sphinx.ext.githubpages', +# 'sphinx.ext.githubpages', ] # Add any paths that contain te...
Minor change to conf.py
py
diff --git a/cherrypy/lib/covercp.py b/cherrypy/lib/covercp.py index <HASH>..<HASH> 100644 --- a/cherrypy/lib/covercp.py +++ b/cherrypy/lib/covercp.py @@ -195,7 +195,7 @@ def _show_branch(root, base, path, pct=0, showpct=False, exclude=""): for name in dirs: newpath = os.path.join(path, name) - ...
Coerced all path names in covercp.py to lower-case, since some versions of coverage do so.
py
diff --git a/nolearn/lasagne/base.py b/nolearn/lasagne/base.py index <HASH>..<HASH> 100644 --- a/nolearn/lasagne/base.py +++ b/nolearn/lasagne/base.py @@ -251,6 +251,11 @@ class NeuralNet(BaseEstimator): else: layer_kw['incoming'] = layer + for attr in ('W', 'b'): + ...
Allow for weight sharing, copying attributes 'W' and 'b' from other layers.
py
diff --git a/backtrader/linebuffer.py b/backtrader/linebuffer.py index <HASH>..<HASH> 100644 --- a/backtrader/linebuffer.py +++ b/backtrader/linebuffer.py @@ -72,6 +72,7 @@ class LineBuffer(LineSingle): UnBounded, RingBuffer = (0, 1) def __init__(self): + self.lines = [self] self.mode = self...
lines alias in LineBuffer to self to improve compatibility between single/multiple lines objects
py
diff --git a/tests/image_manipulation_test.py b/tests/image_manipulation_test.py index <HASH>..<HASH> 100644 --- a/tests/image_manipulation_test.py +++ b/tests/image_manipulation_test.py @@ -38,7 +38,9 @@ class ImageManipulationTest(unittest.TestCase): print(data_out.shape) # print data # pri...
removed assertEqualsItems
py
diff --git a/edeposit/amqp/calibreademon.py b/edeposit/amqp/calibreademon.py index <HASH>..<HASH> 100755 --- a/edeposit/amqp/calibreademon.py +++ b/edeposit/amqp/calibreademon.py @@ -6,7 +6,7 @@ #= Imports ==================================================================== """ Standalone daemon providing AMQP commu...
Added link to readthedocs instead of github.
py
diff --git a/xtermcolor/ColorMap.py b/xtermcolor/ColorMap.py index <HASH>..<HASH> 100644 --- a/xtermcolor/ColorMap.py +++ b/xtermcolor/ColorMap.py @@ -1,3 +1,6 @@ +class TerminalColorMapException(Exception): + pass + class TerminalColorMap: def getColors(self, order='rgb'): return self.colors @@ -17,8 +20,17 ...
allowing named variables in colorize()
py
diff --git a/src/RSPClient.py b/src/RSPClient.py index <HASH>..<HASH> 100644 --- a/src/RSPClient.py +++ b/src/RSPClient.py @@ -49,8 +49,9 @@ class RSPClient(object): r = requests.get(self.base+"/queries/" + q); return self._result(r); - def register_query(self, q, body): - r = requ...
added datasets api. now it is possible to register datasets into rspengine using the dataset endopoint addded the query type field in the query registration json and method. Not it is not necessary anymore to add the "REGISTER QUERY q1 AS ...". the name and the type are used to build the payload automatically.
py
diff --git a/phoebe/backend/universe.py b/phoebe/backend/universe.py index <HASH>..<HASH> 100644 --- a/phoebe/backend/universe.py +++ b/phoebe/backend/universe.py @@ -1517,7 +1517,7 @@ class Star(Body): we can skip volume conservation only for circular orbits even for circular orbits - if we're using ...
volume convservation for misalignment is not necessary for envelopes
py
diff --git a/tools/run_tests/run_interop_tests.py b/tools/run_tests/run_interop_tests.py index <HASH>..<HASH> 100755 --- a/tools/run_tests/run_interop_tests.py +++ b/tools/run_tests/run_interop_tests.py @@ -688,6 +688,8 @@ def write_cmdlog_maybe(cmdlog, filename): if cmdlog: with open(filename, 'w') as lo...
run_interop_tests: Use "GENERATED" comment in generated scripts
py
diff --git a/docs/source/conf.py b/docs/source/conf.py index <HASH>..<HASH> 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -15,7 +15,35 @@ import sys import os -import shlex +import inspect +from unittest.mock import MagicMock # if python ver >= 3.3 +#import shlex + + +class Mock(MagicMock): + ...
first version of conf.py
py
diff --git a/gimmemotifs/motif/_plotting.py b/gimmemotifs/motif/_plotting.py index <HASH>..<HASH> 100644 --- a/gimmemotifs/motif/_plotting.py +++ b/gimmemotifs/motif/_plotting.py @@ -57,7 +57,7 @@ def plot_logo( logo_params = { "information": { "df": lm.transform_matrix( - matr...
Fix #<I> (#<I>) * Update _plotting.py * Update _plotting.py
py
diff --git a/tests/integration/modules/git.py b/tests/integration/modules/git.py index <HASH>..<HASH> 100644 --- a/tests/integration/modules/git.py +++ b/tests/integration/modules/git.py @@ -41,7 +41,7 @@ def _git_version(): git_version = subprocess.Popen( ['git', '--version'], shell=...
is_windows is a function, not a propery/attribute While not fatal, this could potentially cause problems running this test on Windows.
py
diff --git a/ceph_deploy/hosts/suse/install.py b/ceph_deploy/hosts/suse/install.py index <HASH>..<HASH> 100644 --- a/ceph_deploy/hosts/suse/install.py +++ b/ceph_deploy/hosts/suse/install.py @@ -1,5 +1,6 @@ from ceph_deploy.util import templates, pkg_managers from ceph_deploy.lib import remoto +from ceph_deploy.util....
[RM-<I>] use gpg.url() in SUSE too
py
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='kippt', version="2.0.0", description='Kippt.com API wrapper for Python', - long_description=open('README').read(), + long_description=open('README.md').read(), author='TJ (...
Changing setup.py to read in the README.md and not README file.
py
diff --git a/hapi/base.py b/hapi/base.py index <HASH>..<HASH> 100644 --- a/hapi/base.py +++ b/hapi/base.py @@ -44,7 +44,7 @@ class BaseClient(object): params['portalId'] = opts.get('hub_id') or opts.get('portal_id') url = opts.get('url') or '/%s?%s' % (self._get_path(subpath), urllib.urlencode(par...
don't try to convert unicode strings
py
diff --git a/pymatgen/electronic_structure/dos.py b/pymatgen/electronic_structure/dos.py index <HASH>..<HASH> 100644 --- a/pymatgen/electronic_structure/dos.py +++ b/pymatgen/electronic_structure/dos.py @@ -774,7 +774,7 @@ class CompleteDos(Dos): el: Element in Structure.composition associated with Complet...
Fix docstring for get_element_spd_dos Docstring originally was {Element: ...} but should be {orbital: ...}
py
diff --git a/math/sparse/solve.py b/math/sparse/solve.py index <HASH>..<HASH> 100644 --- a/math/sparse/solve.py +++ b/math/sparse/solve.py @@ -24,6 +24,7 @@ def forward_substitution(L, b, dtype=np.float64): dtype = np.find_common_type([L.dtype, b.dtype, np.float32], []) ## init + b = np.asarray_chkfi...
BUG: util/math/sparse/solve.py: make b matrix to array
py
diff --git a/tests/cli/commands/test_webserver_command.py b/tests/cli/commands/test_webserver_command.py index <HASH>..<HASH> 100644 --- a/tests/cli/commands/test_webserver_command.py +++ b/tests/cli/commands/test_webserver_command.py @@ -299,6 +299,7 @@ class TestCliWebServer(unittest.TestCase): # 0 - the s...
Quarantine test that often fails (same as alredy quarantined no pid) (#<I>)
py
diff --git a/salt/states/mount.py b/salt/states/mount.py index <HASH>..<HASH> 100644 --- a/salt/states/mount.py +++ b/salt/states/mount.py @@ -69,7 +69,7 @@ def mounted(name, fstype The filesystem type, this will be ``xfs``, ``ext2/3/4`` in the case of classic - filesystems, and ``fuse`` in the c...
Update mount.py (#<I>) Proposed documentation updates to resolve #<I> and #<I>
py
diff --git a/fireplace/cards/utils.py b/fireplace/cards/utils.py index <HASH>..<HASH> 100644 --- a/fireplace/cards/utils.py +++ b/fireplace/cards/utils.py @@ -48,7 +48,10 @@ GiveWindfury = lambda target: SetTag(target, (GameTag.WINDFURY, )) CLEAVE = Hit(TARGET_ADJACENT, ATK(SELF)) COINFLIP = RandomNumber(0, 1) == 1...
Add EMPTY_BOARD, FULL_BOARD and FULL_HAND aliases
py
diff --git a/models.py b/models.py index <HASH>..<HASH> 100644 --- a/models.py +++ b/models.py @@ -314,7 +314,7 @@ class MixtureDistribution(Mixture, GibbsSampling, MeanField, MeanFieldSVI, Distr def log_likelihood(self,x): return self._log_likelihoods(x) - def resample(self,data,niter=25,temp=None):...
change MixtureDistribution niter to 1
py
diff --git a/Concurrent_AP.py b/Concurrent_AP.py index <HASH>..<HASH> 100644 --- a/Concurrent_AP.py +++ b/Concurrent_AP.py @@ -215,7 +215,7 @@ def parse_options(): parser.error('A data file must be specified') if opts.similarities and (opts.hdf5_file is None): - parser.error("Option -s is ...
Update Concurrent_AP.py
py