Skip to content

Commit 27cbfa3

Browse files
authored
Merge pull request #34 from arcondello/permissive_ssl
Permissive ssl
2 parents 687024f + 6151d86 commit 27cbfa3

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__all__ = ['__version__', '__author__', '__authoremail__', '__description__']
22

3-
__version__ = '0.2.1'
3+
__version__ = '0.2.2'
44
__author__ = 'D-Wave Systems Inc.'
55
__authoremail__ = '[email protected]'
66
__description__ = 'All things D-Wave System.'

dwave/system/samplers/dwave_sampler.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,12 @@ class DWaveSampler(dimod.Sampler, dimod.Structured):
3838
.. _configuration: http://dwave-micro-client.readthedocs.io/en/latest/#configuration
3939
4040
"""
41-
def __init__(self, config_file=None, profile=None, endpoint=None, token=None, solver=None, proxy=None):
41+
def __init__(self, config_file=None, profile=None, endpoint=None, token=None, solver=None,
42+
proxy=None, permissive_ssl=False):
4243

4344
self.client = client = qpuclient.Client.from_config(config_file=config_file, profile=profile,
44-
endpoint=endpoint, token=token, proxy=proxy)
45+
endpoint=endpoint, token=token, proxy=proxy,
46+
permissive_ssl=permissive_ssl)
4547
self.solver = solver = client.get_solver(name=solver)
4648

4749
# need to set up the nodelist and edgelist, properties, parameters

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
dimod==0.6.1
2-
dwave-cloud-client==0.3.1
2+
dwave-cloud-client==0.3.3
33
dwave-embedding-utilities==0.2.0
44
dwave-networkx==0.6.0
55
dwave-system-tuning==0.1.1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
exec(open(os.path.join(".", "dwave", "system", "package_info", "package_info.py")).read())
1818

1919
install_requires = ['dimod>=0.6.1,<0.7.0',
20-
'dwave_cloud_client>=0.3.1,<0.5.0',
20+
'dwave_cloud_client>=0.3.3,<0.5.0',
2121
'dwave-embedding-utilities>=0.2.0,<0.3.0',
2222
'dwave-networkx>=0.6.0,<0.7.0',
2323
'homebase>=1.0.0,<2.0.0',

0 commit comments

Comments
 (0)