Why are circular dependencies even a thing?

This page summarizes the projects mentioned and recommended in the original post on reddit.com/r/linuxquestions

Our great sponsors
  • Sonar - Write Clean Python Code. Always.
  • InfluxDB - Access the most powerful time series database as a service
  • SaaSHub - Software Alternatives and Reviews
  • harfbuzz

    HarfBuzz text shaping engine

    harfbuzz is text sharpening library, freetype is a font engine...and right now they have a circular dependency problem. Harfbuzz uses some parts of freetype and needs to link against freetype...and in the normal case freetype makes use of harfbuzz for better looking fonts. Only way to solve this right now is doing a freetype build without harfbuzz support, then building harfbuzz...then rebuilding freetype again, this time with harfbuzz support.

  • html5lib

    Standards-compliant library for parsing and serializing HTML documents and fragments in Python

    Easier example...sphinx is a document generator for python programs (creating docs for the API of programs from source-code comments for example). Spinx depends on html5lib which itself again depends on six...want to make a guess what six uses to generate its API docs? ;) So if you want the api docs of six you will have to first install it without to be able to get a working sphinx install then redo the six on including the building of the API docs.

  • Sonar

    Write Clean Python Code. Always.. Sonar helps you commit clean code every time. With over 225 unique rules to find Python bugs, code smells & vulnerabilities, Sonar finds the issues while you focus on the work.

  • six

    Python 2 and 3 compatibility library

    Easier example...sphinx is a document generator for python programs (creating docs for the API of programs from source-code comments for example). Spinx depends on html5lib which itself again depends on six...want to make a guess what six uses to generate its API docs? ;) So if you want the api docs of six you will have to first install it without to be able to get a working sphinx install then redo the six on including the building of the API docs.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts