dengwirda / jigsaw-geo-tutorial

A tutorial on mesh generation for geoscientific modelling using JIGSAW.
6 stars 3 forks source link

build warning in python 3.6 with conda #2

Closed bremerm31 closed 5 years ago

bremerm31 commented 5 years ago

Get warning running python setup.py build_external. I don't believe this actually breaks anything.

/home/bremerm31/anaconda3/lib/python3.6/distutils/dist.py:261: UserWarning: Unknown distribution option: 'long_description_content_type'
  warnings.warn(msg)
running build_external
cmake config.
-- The C compiler identification is GNU 7.4.0
-- The CXX compiler identification is GNU 7.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
>> GCXX-LIKE COMPILER DETECTED
>> INSTALLING LOCALLY
-- Configuring done
-- Generating done
-- Build files have been written to: /home/bremerm31/jigsaw-geo-tutorial/jigsaw-python
dengwirda commented 5 years ago

Thanks @bremerm31 - apparently, this warning might get thrown with older versions of setuptools? If you have the time, you could check whether this goes away after upgrading via python3 -m pip install --upgrade setuptools. Either way, I don't think it should cause any actual failures...

bremerm31 commented 5 years ago

Upgrading setuptools fixed the issue. Thanks @dengwirda