Skip to content
Snippets Groups Projects
Select Git revision
  • c59344958f7c439bfeb04143be6ab7089f1af41e
  • main default
  • dependabot/github_actions/bbeesley/gha-auto-dependabot-rebase-1.5.161
  • v0.1.17
  • v0.1.16
  • v0.1.15
  • v0.1.14
  • v0.1.13
  • v0.1.12
  • v0.1.11
  • v0.1.10
  • v0.1.9
  • v0.1.8
  • v0.1.7
  • v0.1.6
  • v0.1.5
  • v0.1.4
  • v0.1.3
  • v0.1.2
  • v0.1.1
  • v0.1.0
  • v0.0.59
  • v0.0.58
23 results

reportWebVitals.js

Blame
  • setup.py 350 B
    import setuptools
    
    # In python < 2.7.4, a lazy loading of package `pbr` will break
    # setuptools if some other modules registered functions in `atexit`.
    # solution from: http://bugs.python.org/issue15881#msg170215
    try:
        import multiprocessing  # noqa
    except ImportError:
        pass
    
    setuptools.setup(
        setup_requires=['pbr>=2.0.0'],
        pbr=True)