cern-fts / davix

High-performance file management over WebDAV / HTTP
GNU Lesser General Public License v2.1
84 stars 36 forks source link

Python 3 compat #35

Closed ellert closed 6 years ago

ellert commented 6 years ago

The test gives warnings with python 3.

-- Found Doxygen: /usr/bin/doxygen (found version "1.8.13") found components:  doxygen missing components:  dot
-- Checking for package 'Sphinx'
-- Found PythonInterp: /usr/bin/python3.6 (found version "3.6.7") 
  File "<string>", line 1
    import sphinx; print sphinx.__version__
                              ^
SyntaxError: invalid syntax
-- Found Sphinx: /usr/bin/sphinx-build  

With the PR:

-- Checking for package 'Sphinx'
-- Found PythonInterp: /usr/bin/python3.6 (found version "3.6.7")
-- Found Sphinx: /usr/bin/sphinx-build
gbitzes commented 6 years ago

Thanks!