https://gitlab.inria.fr/cado-nfs/cado-nfs
Revision a1d80df82d61f1fe0840b209e268c9ae65a915e6 authored by Emmanuel Thomé on 31 January 2021, 19:59:56 UTC, committed by Emmanuel Thomé on 31 January 2021, 19:59:56 UTC
Resolve "cado-nfs-client.py dies with "ValueError: check_hostname needs a SSL context with either CERT_OPTIONAL or CERT_REQUIRED" with Python 3.6"

Closes #30011

See merge request cado-nfs/cado-nfs!19
2 parent s f71bf45 + c086c66
Raw File
Tip revision: a1d80df82d61f1fe0840b209e268c9ae65a915e6 authored by Emmanuel Thomé on 31 January 2021, 19:59:56 UTC
Merge branch '30011-cado-nfs-client-py-dies-with-valueerror-check_hostname-needs-a-ssl-context-with-either' into 'master'
Tip revision: a1d80df
Makefile
TOP:=.
# only this makefile is not parallel. Of course the cmake builds are.
.NOTPARALLEL:
.PHONY: polyselect sqrt utils tags etags
# This makefile is a placeholder. Please have a look to $(TOP)/scripts/call_cmake.sh,
# and (possibly) edit a file $(TOP)/local.sh to tweak your build preferences.
all polyselect sqrt utils: ; +@MAKE=$(MAKE) $(TOP)/scripts/call_cmake.sh $@
tags: ; grep -h '^[^#].*\.[ch]' files.dist files.nodist | xargs ctags --fields=+l --langmap=c:.c.h
etags: ; grep -h '^[^#].*\.[ch]' files.dist files.nodist | xargs etags
show variables install tidy cmake dist: ; +@MAKE=$(MAKE) $(TOP)/scripts/call_cmake.sh $@
%: ; +@MAKE=$(MAKE) $(TOP)/scripts/call_cmake.sh $@
back to top