mapequation / infomap

Multi-level network clustering based on the Map Equation
https://mapequation.org/infomap
GNU General Public License v3.0
425 stars 88 forks source link

Macos M1 OpenMP installation problem #322

Closed MatildeVaghi closed 1 year ago

MatildeVaghi commented 1 year ago

My aim is to run the following command from Matlab. [failed, message] = system([infomapfolder '/Infomap-2.6.0/Infomap --clu -2 -s' num2str(randnum) ' -N' num2str(reps) ' ' pajekfilename ' ' pathstr]);

I am working on MacOS (M1 processor...) and I have been able to successfully install infomap with pip install infomap as signalled by the messages on the terminalInstallling collected packages: infomap and Successfully installed infomap-2.6.0

However, I am unable to import the package and I get this message:

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
Input In [1], in <cell line: 1>()
----> 1 import infomap

File ~/opt/anaconda3/lib/python3.9/site-packages/infomap.py:38, in <module>
     36     from . import _infomap
     37 else:
---> 38     import _infomap
     40 try:
     41     import builtins as __builtin__

ImportError: dlopen(/Users/matilde/opt/anaconda3/lib/python3.9/site-packages/_infomap.cpython-39-darwin.so, 0x0002): Library not loaded: /usr/local/opt/libomp/lib/libomp.dylib
  Referenced from: /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/_infomap.cpython-39-darwin.so
  Reason: tried: '/usr/local/opt/libomp/lib/libomp.dylib' (no such file), '/usr/local/lib/libomp.dylib' (no such file), '/usr/lib/libomp.dylib' (no such file)

If the infomap was correctly installed, I could use pyrunfile from Matlab in order to run infomap.

I am able to import infomap when working on an old Mac. Hence, I strongly suspect the problem is related to M1 and I would welcome any advice on possible ways forward.

I tried as an alternative to compile from source with the following (always considering that I am on macOS Monterey, version 12.2.1)

git clone git@github.com:mapequation/infomap.git
cd infomap
make

However, I get an error here as well as

c++ -Wall -Wextra -pedantic -Wnon-virtual-dtor -std=c++14 -Wshadow -O3 -Xpreprocessor -fopenmp -c src/core/MetaMapEquation.cpp -o build/Infomap/core/MetaMapEquation.o
c++ -Wall -Wextra -pedantic -Wnon-virtual-dtor -std=c++14 -Wshadow -O3 -Xpreprocessor -fopenmp -c src/core/MemMapEquation.cpp -o build/Infomap/core/MemMapEquation.o
c++ -Wall -Wextra -pedantic -Wnon-virtual-dtor -std=c++14 -Wshadow -O3 -Xpreprocessor -fopenmp -c src/core/InfoEdge.cpp -o build/Infomap/core/InfoEdge.o
c++ -Wall -Wextra -pedantic -Wnon-virtual-dtor -std=c++14 -Wshadow -O3 -Xpreprocessor -fopenmp -c src/core/BiasedMapEquation.cpp -o build/Infomap/core/BiasedMapEquation.o
c++ -Wall -Wextra -pedantic -Wnon-virtual-dtor -std=c++14 -Wshadow -O3 -Xpreprocessor -fopenmp -c src/core/StateNetwork.cpp -o build/Infomap/core/StateNetwork.o
c++ -Wall -Wextra -pedantic -Wnon-virtual-dtor -std=c++14 -Wshadow -O3 -Xpreprocessor -fopenmp -c src/core/iterators/InfomapIterator.cpp -o build/Infomap/core/iterators/InfomapIterator.o
c++ -Wall -Wextra -pedantic -Wnon-virtual-dtor -std=c++14 -Wshadow -O3 -Xpreprocessor -fopenmp -c src/core/InfomapBase.cpp -o build/Infomap/core/InfomapBase.o
src/core/InfomapBase.cpp:35:10: fatal error: 'omp.h' file not found
#include <omp.h>
         ^~~~~~~
1 error generated.
make: *** [build/Infomap/core/InfomapBase.o] Error 1

Thank you, Matilde

danieledler commented 1 year ago

Hi! We just had the same problem when building with macOS on Github Actions, which we fixed today in #323.

So first run pip install -U infomap to get the latest 2.6.1 version, then try brew install libomp if you haven't. Should be enough on M1.

If the problem persist, you can maybe do the same as in the fix above (brew install llvm and using that instead of Apples clang).

Please tell us how it goes!

MatildeVaghi commented 1 year ago

Thanks! Not sure how I should move forward. I did run brew install libomp fine. I get this message in the terminal:

==> Downloading https://ghcr.io/v2/homebrew/core/libomp/manifests/15.0.4
######################################################################## 100.0%
==> Downloading https://ghcr.io/v2/homebrew/core/libomp/blobs/sha256:694b2c1c0bda000cb49776222558c021cc71a57ac1a1152421131c2f9dfbf581
==> Downloading from https://pkg-containers.githubusercontent.com/ghcr1/blobs/sha256:694b2c1c0bda000cb49776222558c021cc71a57ac1a1152421131c2f9dfbf581?se=2022-11-05T21%3A20%3A00Z&s
######################################################################## 100.0%
==> Pouring libomp--15.0.4.arm64_monterey.bottle.tar.gz
==> Caveats
libomp is keg-only, which means it was not symlinked into /opt/homebrew,
because it can override GCC headers and result in broken builds.

For compilers to find libomp you may need to set:
  export LDFLAGS="-L/opt/homebrew/opt/libomp/lib"
  export CPPFLAGS="-I/opt/homebrew/opt/libomp/include"

After running brew install libomp, I am getting the same error I was having before where import infomap gives

---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
Input In [1], in <cell line: 1>()
----> 1 import infomap

File ~/opt/anaconda3/lib/python3.9/site-packages/infomap.py:38, in <module>
     36     from . import _infomap
     37 else:
---> 38     import _infomap
     40 try:
     41     import builtins as __builtin__

ImportError: dlopen(/Users/matilde/opt/anaconda3/lib/python3.9/site-packages/_infomap.cpython-39-darwin.so, 0x0002): Library not loaded: /usr/local/opt/llvm/lib/libomp.dylib
  Referenced from: /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/_infomap.cpython-39-darwin.so
  Reason: tried: '/Applications/freesurfer/7.2.0/lib/gcc/lib/libomp.dylib' (no such file), '/usr/local/opt/llvm/lib/libomp.dylib' (no such file), '/usr/local/lib/libomp.dylib' (no such file), '/usr/lib/libomp.dylib' (no such file)

libomp is installed in /opt/homebrew/opt/libomp/lib which is perhaps why it is not found by default. I created a sudo as follows by being in /usr/local/lib sudo ln -s /opt/homebrew/opt/libomp/lib/libomp.dylib libomp.dylib

The lib is now found but I get the following message:

'/usr/local/lib/libomp.dylib' (mach-o file, but is an incompatible architecture (have 'arm64', need 'x86_64'))

Do I need to set export LDFLAGS="-L/opt/homebrew/opt/libomp/lib" export CPPFLAGS="-I/opt/homebrew/opt/libomp/include"

and if so, what would be the best way forward in order to set these exports?

I am not sure what you mean by : "brew install llvm and using that instead of Apples clang".

Thanks for consideration!

danieledler commented 1 year ago

As it needs the x86_64 architecture, have you somehow checked open with Rosetta on the terminal?

In any case, I would try solving the problem why homebrew doesn't link libomp to your prefix path in the first place. You can try brew link --dry-run libomp to just see first what files it would create symlinks for and check if there is any potential conflict. If not, you can try brew link libomp or brew link --force libomp if you have to. As it mentions the risk of conflict with GCC, have you installed that with homebrew too? What does g++ point to now? (Output from which g++ and g++ --version?).

MatildeVaghi commented 1 year ago

Thanks Daniel for your consideration, It would be wonderful to sort this out and have this working. It is all a bit confusing to me. Thinking about trying to solve the problem why homebrew does not link libomp to my prefix pat and answering your questions:

brew link --dry-run libomp gives the following:

Would link:
/opt/homebrew/include/omp-tools.h
/opt/homebrew/include/omp.h
/opt/homebrew/include/ompt.h
/opt/homebrew/lib/libomp.a
/opt/homebrew/lib/libomp.dylib

which g++ gives the following: /usr/bin/g++

g++ --versiongives the following:

Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/Library/Developer/CommandLineTools/SDKs/MacOSX12.3.sdk/usr/include/c++/4.2.1
Apple clang version 13.0.0 (clang-1300.0.27.3)
Target: arm64-apple-darwin21.3.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

Shall I try: brew link libomp or brew link --force libomp? Thanks! Matilde

antoneri commented 1 year ago

Hi! Daniel is busy preparing his thesis, so I'll do my best to answer your questions from here on :)

Yes, try brew link libomp. Did you upgrade to Infomap 2.6.1 already? If not, try pip install -U infomap

To verify that the installation works, you should be able to run infomap in the terminal.

MatildeVaghi commented 1 year ago

Thanks a lot ! So appreciated. Yes, I upgraded to infomap 2.6.1 as suggested by Daniel. However, the installation does not work as when trying to run infomap from the terminal I have the following message.

traceback (most recent call last):
  File "/Users/matilde/opt/anaconda3/bin/infomap", line 5, in <module>
    from infomap import main
  File "/Users/matilde/opt/anaconda3/lib/python3.9/site-packages/infomap.py", line 38, in <module>
    import _infomap
ImportError: dlopen(/Users/matilde/opt/anaconda3/lib/python3.9/site-packages/_infomap.cpython-39-darwin.so, 0x0002): Library not loaded: /usr/local/opt/llvm/lib/libomp.dylib
  Referenced from: /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/_infomap.cpython-39-darwin.so
  Reason: tried: '/Applications/freesurfer/7.2.0/lib/gcc/lib/libomp.dylib' (no such file), '/usr/local/opt/llvm/lib/libomp.dylib' (no such file), '/usr/local/lib/libomp.dylib' (mach-o file, but is an incompatible architecture (have 'arm64', need 'x86_64')), '/usr/lib/libomp.dylib' (no such file)

I now tried brew link libomp --force and I got the following Linking /opt/homebrew/Cellar/libomp/15.0.4... 5 symlinks created.

However, infomap in the terminal is giving the same issue as above

antoneri commented 1 year ago

Good! Please also try pip install --upgrade --force-reinstall --no-cache -vvv infomap and paste all output (it's going to be huge!)

MatildeVaghi commented 1 year ago
pip install --upgrade --force-reinstall --no-cache -vvv infomap
Using pip 21.2.4 from /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/pip (python 3.9)
Non-user install because site-packages writeable
Created temporary directory: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-ephem-wheel-cache-xm5mnrl5
Created temporary directory: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-req-tracker-_mieb17w
Initialized build tracking at /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-req-tracker-_mieb17w
Created build tracker: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-req-tracker-_mieb17w
Entered build tracker: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-req-tracker-_mieb17w
Created temporary directory: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-install-je1jsnyn
1 location(s) to search for versions of infomap:
* https://pypi.org/simple/infomap/
Fetching project page and analyzing links: https://pypi.org/simple/infomap/
Getting page https://pypi.org/simple/infomap/
Found index url https://pypi.org/simple
Starting new HTTPS connection (1): pypi.org:443
https://pypi.org:443 "GET /simple/infomap/ HTTP/1.1" 200 22168
  Found link https://files.pythonhosted.org/packages/71/aa/93a76d5fdefc23db7c5633553b00745114f9ecac273e15f1777424a974c3/infomap-1.0.0b1.tar.gz#sha256=695dd77cac6aa0c23b5a5db471e20076cfeecb7354c31fe44be3aebc40cd3760 (from https://pypi.org/simple/infomap/), version: 1.0.0b1
  Found link https://files.pythonhosted.org/packages/75/48/a5f33d84fa6a38667f5097a391c2deb376e10613c4e67f8dcfbcb74333c3/infomap-1.0.0b2.tar.gz#sha256=f6d90af32d1b73748ab3fae2f31b6627142903753c2babc9a7fe17979088f085 (from https://pypi.org/simple/infomap/), version: 1.0.0b2
  Found link https://files.pythonhosted.org/packages/cd/65/b481e8421596b086507421cfbd7c755aa8fdbe93cdd38f33da50ae80c970/infomap-1.0.0b3.tar.gz#sha256=5983c58036b601425e15a8feaf1ae02782ff2c6021b7357f3b3b99a6f42a30f3 (from https://pypi.org/simple/infomap/), version: 1.0.0b3
  Found link https://files.pythonhosted.org/packages/30/e1/2e2832205df3da55787889fec383aca0004a2df8bd5b235bedcb1392a2ed/infomap-1.0.0b4.tar.gz#sha256=b7194faee937abbda044e1e6088ac6b8a931af368d20415c33841ce8ec7f8e8b (from https://pypi.org/simple/infomap/), version: 1.0.0b4
  Found link https://files.pythonhosted.org/packages/1f/86/85d01c3f4c8af567803933cdc50f629c14091d675893931fd6e571f823fb/infomap-1.0.0b5.tar.gz#sha256=9fed056b71e621f645dfa26a7e611e429e7c099c33a62df04541dc6bb41ff502 (from https://pypi.org/simple/infomap/), version: 1.0.0b5
  Found link https://files.pythonhosted.org/packages/67/9a/cabe7ed837cec8de3733d19fddf4f0e0ce67dd8973323d227fc816532d05/infomap-1.0.0b6.tar.gz#sha256=038e6757a2bb9a0203555c78550bdef28b8fa0be5eb34ec61bf151e67eb3fb27 (from https://pypi.org/simple/infomap/), version: 1.0.0b6
  Found link https://files.pythonhosted.org/packages/db/d1/f43ce43b61f49fd4f10017b95b7b690783513a8c3c61997e017b148dfa47/infomap-1.0.0b7.tar.gz#sha256=f615bcb9cca601fa9f5e4297ec2e5914d6f88a27bb9517edc8bfd8285a520255 (from https://pypi.org/simple/infomap/), version: 1.0.0b7
  Found link https://files.pythonhosted.org/packages/5d/80/bcd2be5818e7bba56af76576967c0e5a316541565d72870fa36ec53b5beb/infomap-1.0.0b8.tar.gz#sha256=0c5fa1c4228a2afd287306886760cc62ae3f532d9f1ec769ed02bbf9b226b231 (from https://pypi.org/simple/infomap/), version: 1.0.0b8
  Found link https://files.pythonhosted.org/packages/62/84/2cf158e7dd0d286132406e3969cd05ad1cd12356f8999175c64e585df1dc/infomap-1.0.0b9.tar.gz#sha256=a004371c9280bc8e8a8dc3e09c3238465d1f65858ae7aa116511f9c4b7470e8e (from https://pypi.org/simple/infomap/), version: 1.0.0b9
  Found link https://files.pythonhosted.org/packages/91/cd/215b92370b29e7769221768229517a872d5e76289b376ad2cbb2028bc650/infomap-1.0.0b10.tar.gz#sha256=7b9e5ade01f01dd2ce9954945884373d84ee01f2771db823b9aeb088b4f8d3f7 (from https://pypi.org/simple/infomap/), version: 1.0.0b10
  Found link https://files.pythonhosted.org/packages/59/37/244b29d1e1811edfe4b25a1430a2a51ac29788c41fbdc3af6cd005a9151a/infomap-1.0.0b11.tar.gz#sha256=dabe88e4927df893089b2ea8684238ea5666ef48fe93301b9d2d98396ae4e29a (from https://pypi.org/simple/infomap/), version: 1.0.0b11
  Found link https://files.pythonhosted.org/packages/f1/99/29e29102abb9de870786c40a9b919914a71987064fdd92bb06d5572d839b/infomap-1.0.0b12.tar.gz#sha256=1a3e5f6dfdc35b6676f11d3e4c7acf640be61d0b6d2e11343680468696893d81 (from https://pypi.org/simple/infomap/), version: 1.0.0b12
  Found link https://files.pythonhosted.org/packages/88/b8/4b7e432d430fd7f928bc6e8ad561e4437036f7ca920e836debefcccd2c52/infomap-1.0.0b13.tar.gz#sha256=6b8d8b4b89c76bb92f45b3629183d20005d9b95eae3e462744bb09cdec0b647f (from https://pypi.org/simple/infomap/), version: 1.0.0b13
  Found link https://files.pythonhosted.org/packages/27/81/1ac2ca9e1549b011b91d4e41ec2dcadfd5b693fe469343fde251baa72311/infomap-1.0.0b14.tar.gz#sha256=74ed831e7fb5080f70415c126bd1ce4393fedda2005ee7a456a6a02b08abd6e7 (from https://pypi.org/simple/infomap/), version: 1.0.0b14
  Found link https://files.pythonhosted.org/packages/43/65/dfb78d63a4ddce45c0e064d2c3aecd21ee3a3de442f5c540472c450dee50/infomap-1.0.0b15.tar.gz#sha256=5d842c29c0e43a31fbff065437f710a13c60af5ee02eaf8dde78cd236f211681 (from https://pypi.org/simple/infomap/), version: 1.0.0b15
  Found link https://files.pythonhosted.org/packages/ff/1c/8027af8b086a030d7fb7faeb9d9da19df961ebc0a269392a118249c9616b/infomap-1.0.0b40.tar.gz#sha256=567fabfb34dbf814cedacfe66c8fd61879aa57f6ce19c00a2438e5d998028e53 (from https://pypi.org/simple/infomap/), version: 1.0.0b40
  Found link https://files.pythonhosted.org/packages/b9/b5/912b23421441196275520689197c7f9849cc53e837de622ae392eb67cbaf/infomap-1.0.0b41.tar.gz#sha256=55a8c85818b8caa3fdfc7fefc7fb2c293c479df8f6fa84dbee0cb17b47445bf4 (from https://pypi.org/simple/infomap/), version: 1.0.0b41
  Found link https://files.pythonhosted.org/packages/d8/d2/cee9ce75e7561a4bc63f1039c8e586892d9a2013cf05e853e0a5169c8ab4/infomap-1.0.0b42.tar.gz#sha256=cdbb8bb936355d50551540e8d67c66a12d15520b080446c7ac1b11dbc5baab62 (from https://pypi.org/simple/infomap/), version: 1.0.0b42
  Found link https://files.pythonhosted.org/packages/9c/7e/d605f6b59e87cb0b3a9a33882f2d1f697691d5ee142c4ca130fc5cc4b8df/infomap-1.0.0b43.tar.gz#sha256=3b2c786b9e10dfbc797c51716f4089693fbc219020738f3e0fa9028692b90e81 (from https://pypi.org/simple/infomap/), version: 1.0.0b43
  Found link https://files.pythonhosted.org/packages/b0/8d/bd09478d3796be25174a331e7e3498c52e3760082ff65081cd2bbd720601/infomap-1.0.0b44.tar.gz#sha256=014e9ea29fe24508c620dc29f94dca2636359a4a67ddb82f728602cbbb85e2ae (from https://pypi.org/simple/infomap/), version: 1.0.0b44
  Found link https://files.pythonhosted.org/packages/41/08/7275517e2c7cb182d89b5ae5c54bd862ba422b0df6737453a4141394dbad/infomap-1.0.0b45.tar.gz#sha256=1d5b92599b920df1b7594a28624f4f761cdcafc1428f12e2cf0d60672bca13b2 (from https://pypi.org/simple/infomap/), version: 1.0.0b45
  Found link https://files.pythonhosted.org/packages/b5/34/52d2730aa497b0afffd44265e9e7576a5fa2970c1069130c22cc7c2f3eaf/infomap-1.0.0b46.tar.gz#sha256=40405bbbb52e5cfc1224bf23db0643f5d9b99f3e135c4c810271193bab205257 (from https://pypi.org/simple/infomap/), version: 1.0.0b46
  Found link https://files.pythonhosted.org/packages/2e/04/9d490179c036341a6cbf20a473e09c132160ea7aba7129cef80103a055df/infomap-1.0.0b47.tar.gz#sha256=5153c4c80b282a50400e469919093b9679503bc0b59f129661931217992ed1b1 (from https://pypi.org/simple/infomap/), version: 1.0.0b47
  Found link https://files.pythonhosted.org/packages/ce/a7/a0c22362cd37ba3f4b7fa0aed5aef03f2dca27cebe0f534fba558bdb1f37/infomap-1.0.0b48.tar.gz#sha256=a4c6fdc260347315f2e0798203f4b8aa9a4c12f9f877b31a819bfbf43dcbb1be (from https://pypi.org/simple/infomap/), version: 1.0.0b48
  Found link https://files.pythonhosted.org/packages/fc/0d/da95e98f16b8830700179db3fbf8b056aff6dab32ddd305925d424f00c23/infomap-1.0.0b49.tar.gz#sha256=b2a9d4618d92ac869fe187dbdeb2b01dd9aa1102f33b7cb1eb92d4b405361358 (from https://pypi.org/simple/infomap/), version: 1.0.0b49
  Found link https://files.pythonhosted.org/packages/96/4e/568cbad8ce91fb9e67969467fbd40b3b3e0c4c6ffcd17830a478b2e8bc46/infomap-1.0.0b50.tar.gz#sha256=c56431e6b037ed557bd6a8697bd41d9c3ec900c099f5f5f1d5d2faf75958e34d (from https://pypi.org/simple/infomap/), version: 1.0.0b50
  Found link https://files.pythonhosted.org/packages/b0/c8/bc011762412dda3bb31c12bcfe76402e8a4789c2d071e7d64581a2f547bf/infomap-1.0.0b52.tar.gz#sha256=b27f16d827d80cff3d89b16e32e2ca05e2c0d77768001844042afe0bcee2aa9b (from https://pypi.org/simple/infomap/), version: 1.0.0b52
  Found link https://files.pythonhosted.org/packages/cf/7e/f4281a1931aa664fb7e0dcbac3de56ca0c1e7f768eba76a8a50ce7f060e0/infomap-1.0.0b53.tar.gz#sha256=04e25c583cda1bcf72a0ca3f5a073c29f791a66c90fe76cef2dfbe80095e7710 (from https://pypi.org/simple/infomap/), version: 1.0.0b53
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_7_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/d9/81651f5bdb4a6e239bce97d82e48fd0f3ae48cc9fe49854fee979a23a359/infomap-1.0.0b54-cp36-cp36m-macosx_10_7_x86_64.whl#sha256=1a7c7ab3493c52fda38e2ed851c2143987e0404b3135cb5db80d66d54db1c9c6 (from https://pypi.org/simple/infomap/)
  Found link https://files.pythonhosted.org/packages/95/84/8b930d0329acd951acfc0f1847f394a8781bae33ece634f86af868897b8a/infomap-1.0.0b54.tar.gz#sha256=fc4265bbcadfec14a699464dabd37e9f6d3ea6b434b565a375c79826b2761671 (from https://pypi.org/simple/infomap/), version: 1.0.0b54
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/c8/694e93fcabc90d87bf7849a6cc7eb8720ad88bb45c16c704c6eacbf09a7f/infomap-1.0.0b55-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=ad0677bd03ef362f8beabc13dbf18c4852dab8b0bc4c3afc2a095608185fec70 (from https://pypi.org/simple/infomap/)
  Found link https://files.pythonhosted.org/packages/52/ff/15aee805ce21e3ddd47dea8bc06c707448608d7db9b6d3da7826ed45fe2f/infomap-1.0.0b55.tar.gz#sha256=b5d0c02a9f0185ae153c066492c3b83e16992def961ea7c1b0a7e2741f0fe5b5 (from https://pypi.org/simple/infomap/), version: 1.0.0b55
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/89/84/91c70bcf11a7e8650f01483df5bf2766d07c2581ead6974255fe93a4f53e/infomap-1.0.0b56-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=3efbb823dbe7d32487ccd2a9b5a3b7ce2a18075a9e1c74477dfe07f3ef077eae (from https://pypi.org/simple/infomap/)
  Found link https://files.pythonhosted.org/packages/c6/da/5d184c31aa8a1674c0b2d1fd6ad58619fc58f74d9f4138a4700c1b8b0f44/infomap-1.0.0b56.tar.gz#sha256=c5ddce6c1995ce5332bee5daa04d2375be6fdaeeb2e19f9060e68a315d69bf85 (from https://pypi.org/simple/infomap/), version: 1.0.0b56
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/65/113961cd9a9ec39b23f3bfa2f748ef183fbac8855bba960fe9278b9aa65e/infomap-1.0.0b57-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=d22d771e2d580f75b20219d0f8ce26cca332458353dcd371e5f46493fe6fc34b (from https://pypi.org/simple/infomap/)
  Found link https://files.pythonhosted.org/packages/e6/88/a06aeefb67ffc0c1abbba64a5a9dc65f8956c4e98aa635b3339cd04e1ee7/infomap-1.0.0b57.tar.gz#sha256=93bd1f870f7fd5496c575a2c427ed42375a4f0a61310c7d6f7494fd496a6c7ac (from https://pypi.org/simple/infomap/), version: 1.0.0b57
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/95/10/3fe99af0a1a41e9af60fe80b25d26d3df05c4521ba0af3da4a31c53a14ab/infomap-1.0.0b58-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=974114d4dc417d4fca099de71cf182209aadc4ee1005a926c904962927255ba6 (from https://pypi.org/simple/infomap/)
  Found link https://files.pythonhosted.org/packages/14/36/81b914c2b16f962de19ce6a61d779885f9037f9f19a048e6be10fd485c4c/infomap-1.0.0b58.tar.gz#sha256=5edae401484e51b09cbdd1ecbdc631f9de167119029bf66c1d09e7969c3a02ae (from https://pypi.org/simple/infomap/), version: 1.0.0b58
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/23/51/3946c2134ededcd7a6df90409e118fe8d0c07e22dea5a70281793a3a5d7a/infomap-1.0.1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=531c393c2c2c9aabb41a301c661905f9ea0ed8d2605c240cb1c082e1baf41c24 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/3d/82/ea066a808b8bbf501f01f31d384c1a7637ca4df98b177a19a521f6a2c9a0/infomap-1.0.1.tar.gz#sha256=9d440755d5a27de8d47718be13b36ff6829933a4e911f9ae8e58cf885a7e6f59 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.1
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/69/1436137e93bf3a2d333b55a62e99a1895add88d90913a716946ae1115b7c/infomap-1.0.3-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=3d30fc2aa18b95e014f1c088584623082144ed5bdc5904faa1c5fb2c0c3a5ca4 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/7b/e7/08e46d9e4796026d0d44f440e748728105b6405806f6084da7994b90a36a/infomap-1.0.3.tar.gz#sha256=7d43b670b5641cd958903e9007638e9e2145255190d536626b9d9e38e249210b (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.3
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/31/229777e3de72a4956fd9283a622cb8abfd001e18e971f01fedce3d96b3d5/infomap-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=9a72296a6b53278e8bed4c9539bf0cd534eae6d85353010bf51060dc1d751eb6 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/34/6b/d85950cefb02adbc3edad3ac4866b1bb42ef9eb5cb132053c9196df34c2e/infomap-1.0.5.tar.gz#sha256=3b72e838dc9671c8bb2118bf1b015edbdc5490762f7e2f39500ea60152d61b98 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.5
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8e/41/8f8b4192aedc26b24027259769d7a26f091bc7e6501fa4aa6119cb421298/infomap-1.0.6-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=62f6169da491877d01e1ba2f1627f1a408b0e71a25e0cb659dcd62deb78a3c14 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/f5/00/7a4cdb23d036df92c516f6decc0b1f6d04f5a9071a9ab6219be128e6b4a1/infomap-1.0.6.tar.gz#sha256=8f0105c60ca411e5a93a727f3e4be05a0fdffdf92813032ea9f7ddb009765297 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.6
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e7/c0/8ffd93d21b8fea51406e71d7b9e248f38d620faeb3e7dd0f476645a2400d/infomap-1.0.7-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=7bbfb357ef890f0bb80ebfcdd5271d79a415910c85a4f877f2d614cd3b15e618 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/3c/2d/c57852c7febc996e72e0a4b9994cfc26d95aa9e78f66655d284884e949f2/infomap-1.0.7.tar.gz#sha256=c421c5aeba4fedd5ccd30fc0775bdae286f422313a36f7c02459329f9973ce25 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.7
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/32/c2/4ed153f66ed2abc46670417935523a8a73c6a79053c16f5565a4ce9a89a3/infomap-1.0.8-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=c5a42d678e09cffa06337b18f3ecf2eeea80f2ae627e72ab03e2212545b0e67e (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/00/d8/3cdf747ea20b355cccb29aae2f8690305cda58499d2fc354b3f7c1d77955/infomap-1.0.8.tar.gz#sha256=5162c74f59b07c918477b7d3680e1f8d8cf3691199b8bd9b6bea50b8dbf5095e (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.8
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_7_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9b/77/395f0d5d27b78f846d78f596d3c58b496c0aba4129ffb7bb935c0fd47012/infomap-1.0.9-cp36-cp36m-macosx_10_7_x86_64.whl#sha256=15edf07a1a0ce3991ff4ee56ba859bf0e72154ff4862a88cd569f034271ceb98 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/85/1b/028aa0a46a9603b0006dc79f3abe5c8923ac9390cd0169cb50a446a16643/infomap-1.0.9.tar.gz#sha256=a907a5481704aec1fa6018239e45aa7cd37938485a21c2719512bb6b19f2b4db (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.9
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/50/72056928c25312c4e7dfd920ad58a372161ed354794681871d066d4fa802/infomap-1.0.10-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=8adb2ad9d967c3a50192f5574321fca5ca6f7e760ad47332c8310c73298bc719 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/37/ca/bc9a3f606bde31e1ee4ea26d54d5fdaa1e4a9252a573928b9b16b0a1e3d8/infomap-1.0.10.tar.gz#sha256=535aaf714378cd09826f5d00a28cd17a1c673e7c9b829cd5c5719e03fd1c6e25 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.10
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bd/af/65bdef7a54d3c5c2f71d504e7fdf981e470c6bb5a88544a4ea04eb50200d/infomap-1.0.11-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=7fc773be6cb336263a74de8fc9993b60ff9eeb778998b4d94cb4b01aab2952e8 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/a0/60/aebe5c89840d470ad262cdb46d5d81dd6da0281690438a5c9851f5d78838/infomap-1.0.11.tar.gz#sha256=00bd14a787d436355c5da76ad49c42e0181465d3c67f44f19e78540a41f60edf (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.0.11
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2c/ac/1adaaf066dcabd9c7dc680016f8fd932273c0acc94ad540c8c5f5a70f03c/infomap-1.1.0-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=b6f153290564e8b656d95b1e9304d1f0f579f534e73ba58ef4bd90400d089059 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/c5/4d/f5d8acfd872735a980a5f9e5aa225506a6afefab1f63aed3f2f1f7f91022/infomap-1.1.0.tar.gz#sha256=6f0b474be2384cce87c1989c42401a9599cc3b5ba86de32ecd6e379df9b494f2 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.1.0
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e8/17/d0851585397e7efd0a6ca58459f0f7f64c0b22344669a6908e5c4d4b19e9/infomap-1.1.1-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=7c0d131a4bb8bf9ab6f0d00b09cea1a0881222e07786104756d21f47d79e8e21 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/13/16/291fdd1240a57e4d2b7773e80bbbe5c4aef60463387778f12ce563335064/infomap-1.1.1.tar.gz#sha256=50e581d95ca21a9005357e4d2f79284a00a4a56aeba2f1ee5e0d98da21a5936c (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.1.1
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/08/75/00a0da9a698dab605916af033d3d11814aadc11efe5b19e7a1e8eef9cf4d/infomap-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=9ebf16363c0b4b0033da9a36abf1d355efabf7b922763462127a520ed32770c2 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/01/41/006dd032543e8b7a01e2d12051f7167a91acd67d1550e209751a1a467b26/infomap-1.1.2.tar.gz#sha256=bc2342ae573aff05a6276fc9e8f8f6ee34ba7239938866aee9fee6141b61bc72 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.1.2
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9d/58/e2b900b7321ab988f3a08116a6b692fcd398d556dacdfa03f0df3d18c1d9/infomap-1.1.3-cp38-cp38-macosx_10_9_x86_64.whl#sha256=745d95685928c8b91a9aaf1012bb664c669a58219d91e5e7a0832389db940cbe (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/aa/eb/7033f55100c74385cfbf41762e903adcc0844ab8d2765f556f5d6f9e4d39/infomap-1.1.3.tar.gz#sha256=8fc1ba9d2c4cf6488d4a0ff844c6167b9604235760c177173e335a5cbf17719d (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.1.3
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/e0/daacd0e7503210003801a44df1824361d1cc4bf32902b17834326832e012/infomap-1.1.4-cp37-cp37m-macosx_10_9_x86_64.whl#sha256=0f88c35d7674d6a2fb208f66bfe1f4139b9e3b7cb9be0540ab01ce55948e7e7b (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/69/77/dc31a6fa36be0263863478c8c6f470dafbb95a460ac6240bf16c6a0569a5/infomap-1.1.4.tar.gz#sha256=ef6f5aa7f45cee25e4e9e3e3f55a8bd12df50c7b9e263b77debf66b1208e21d2 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.1.4
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cd/19/c81a0628e6556d0d182159d354402fbfb0cfa2c98c23f967ba59654c6923/infomap-1.2.1-cp38-cp38-macosx_10_15_x86_64.whl#sha256=c3f855c0b95b7bd27133fd2bd489f8925ed3e6563fd71fe1b571b00314f9f5be (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/09/d8/6dfedab69a96b88e978cb15b098983519db066797a0941293c8da16cb2e0/infomap-1.2.1.tar.gz#sha256=0a9400c162bd8707d16b2d0e3d7ec6bf4aa6998f3f277f1be176826c53874c2f (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.2.1
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/15/1a/c0626e127d625d1680a1f3a2cf4320631be714fe85b9ce7bc39bfc415dc7/infomap-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=a972f1f0fc4728c08c902f90dbb4a9c1ad8fb2c97aafdd80ba0fdda4fa40d518 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/a6/ac/23ecb8c675b7b4e9002e4b338d9ce6f28e7775451a4b0bf9b3f87b0f8af3/infomap-1.3.0.tar.gz#sha256=b7a17ef31242b0d8204fbc630487bfc834310cdbceb89e440586388756e10c01 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.3.0
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/aa/96/f0cafeff3970f14954b4930ff27bdc0bc5b5a4a0ee828ac4df3f5bf5425d/infomap-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=d40b4a349b53ddfe4d8062e0a1015555f1e6b44d48dbe0df1d317a4bb5cffde6 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/fd/4a/844a248615f5fbc2e192d7f467130f8f8e21119d300508a5d5e127a51bc0/infomap-1.4.0.tar.gz#sha256=b931981b8cf04efa0183c1dcb26e132d6ebb57c1f5aa6579412d8a285785e8b7 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.4.0
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1c/d5/9c71495f0666a49f40d480bd78102619a5066d283b88948d70bfe2282dde/infomap-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=973dc695324bb2070fc9b36f72076a3e6d09e83d9a6fe5130ff327c5c49d2533 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/82/92/e4a858cbd5e0c575df576b2b87a14e0476134117f2c9e5c9d956eb0ce5d2/infomap-1.4.1.tar.gz#sha256=041889023a59133826dbab330230e6c7e5a361c151a591c9b2ab70136db18a7b (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.4.1
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8b/db/8a23e47121e50167437381cc3f981a4769b66353e0c8afdc9b0aaf7f1f76/infomap-1.4.2-cp38-cp38-macosx_10_9_x86_64.whl#sha256=8f03add9c92859699d67b878a0f6cd8ec51625da410495447710b4e31ef70e1a (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/95/31/3209054f32e555853b0d33f947922000149ecbe630e8208fa0586aea3f2a/infomap-1.4.2.tar.gz#sha256=5279f8fbfd878fd5e32216529839993f5a6165119dc87d9b3b16028efa4f75d4 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.4.2
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/80/08/ba14d59fd4cc1bf68ac653e35e30ba9ffa732965e624d3fdce5bfc9651e7/infomap-1.4.4-cp38-cp38-macosx_10_9_x86_64.whl#sha256=79bd127aa8eb72eff3f498865587e587f6311b9952e6acca67b225861a369cfc (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/9c/4f/2494ed04d6c755201930ef6b68793030b12a5739a2b7a25084c912aaf7db/infomap-1.4.4.tar.gz#sha256=f304b127b69e24e815300739dde028af314157894aedbd68d93a5687ac54a2dc (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.4.4
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/16/4e09ea6a65545d25923d0d949805874bde4ee825eccdd76fc1e0c465c00b/infomap-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=24dadcf8ba783709645c37b91dafbec5aa622d86c464016d5d94f317faff7a84 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/a8/33/9ca195e5790ada5997923c32515552c85957dcb6ef6068035532600a1dca/infomap-1.5.0.tar.gz#sha256=055a2b36609eef6cc00f0722d8d0c04f7b9d045113af06e8c0762556a40b9d35 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.5.0
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/19/e0/24a412b72f947e0d08f39ed8bedad7b493f4bf84819ae8aaf31c311521ae/infomap-1.5.1-cp38-cp38-macosx_10_9_x86_64.whl#sha256=36811c2c2c349a0088074e8a74754db6aeaa1c014f9455e5f1deaa86414cb2a0 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/e5/fe/ac043bdcbcc501ceba66996b605d7ed82658c6ee87543571c325e163fc77/infomap-1.5.1.tar.gz#sha256=65d8e8686f3f866504fd476f4061b7c226242281882a54c9005affc630ee1b89 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.5.1
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a1/10/a68d69b947e0d10084e68049d5ee16e69c6a6aa7a4950573717068784b3f/infomap-1.6.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=bdeef0f8c0a86c49b0abd71ebd780d2c19fe611c330ccfcf53f6c2f32d3a506c (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/87/2a/a795d58e6161021a60a322e218c41d3ad2c1827dca2e547d230470b23ec6/infomap-1.6.0.tar.gz#sha256=4a5d85b301afc7832c9b09825718f98406db9e9e5c335c62ba587e64d0cdc887 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.6.0
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_9_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c7/9e/c2d3b578a1a449bd91d50e5cb4ebeb504ad961746dcbea56cd226e7700a9/infomap-1.7.0-cp38-cp38-macosx_10_9_x86_64.whl#sha256=e4c5ee34122b8c8322ba1cc3d1b2e1422ee41db0b928777ef3f4e2487db77836 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/11/e9/12139ce9aee24f97774fd9c3718f25761f6558c8d2e866be145365bc8292/infomap-1.7.0.tar.gz#sha256=dc588192a23b24d1b23c0d3164822b7b3e03a36a0588ecc8b837d55e327bfca5 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.7.0
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fc/23/cc829a20c63f5bc8aa255b32994e64b5868e85894f6b46ed2a5bc88e6567/infomap-1.7.1-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=11dfd1940a626a14751687f5f21771dc314a045602d8c9c5b87555a9ffdd6e75 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/af/31/920e9a0680d017663e0099546051fd018016bca6e7f80ca9ac851ad2719a/infomap-1.7.1-cp36-cp36m-win_amd64.whl#sha256=97fc4817b4071c56d56b13b2597d9dd72d3972df8865a41cff71141f2d1f0c73 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ad/ed/d5695a8077110d30c037c759db86c9867357ed2f66080f775cdef23542e2/infomap-1.7.1-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=b4344a06d1d035ba66d3c170537bbddde427a64535d083d3704535bd62522126 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ec/59/534abc1947e19c9780eca339afb00fe94a165d5b2a8b1323aa64f789081b/infomap-1.7.1-cp37-cp37m-win_amd64.whl#sha256=3e9352cc17efa67b178c65a6e72599646b3dd3a6810e9fdf6e58b163fbd3e0b8 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/ea/6bb15bcf0ed14437b6e842692a695291faf94e84ab37c8ffd4ad7e8a05b9/infomap-1.7.1-cp38-cp38-macosx_10_14_x86_64.whl#sha256=d746a4a0ad2ffa216c691da232e1f45ee6eca86b626a563b8aa0364e45a5934d (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/9d/54bbf9fa893e015a7b60bc9342315330a1809277dd5cdd78db3455e03ab0/infomap-1.7.1-cp38-cp38-win_amd64.whl#sha256=180395cd72ca016f90131fba092837843bd9c0fe57dd9101eff809c54ca9a2cf (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/8a/cb/d5f699f10b63f5c832b87497ed72da455364ef6bf5796d8e151cfa7ea705/infomap-1.7.1-cp39-cp39-macosx_10_14_x86_64.whl#sha256=a954ea1a62ee4792e28a891107dda3b92ae158caed67e62bf190b4509cfcb9b3 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.7.1
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/06/52a4fe7b779c6375f3b37ce2f733978f4be1aaa0a117f3e204b1cb53756f/infomap-1.7.1-cp39-cp39-win_amd64.whl#sha256=4743253331ffb092ae2e74b819f8aa8f97ba2e9065ab0e20949eb425e0613b42 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/a3/d3/9619eeaf1ed116366785be871e17848a72c08092f4408da8cf000abe3134/infomap-1.7.1.tar.gz#sha256=1310794b1834bfee66b3cb523880ef2bd349cd3f1446256d60b7b62c97c07b23 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.7.1
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b0/20/285313766ae19c446d20b1484e860a9159436234ad818904f598f2774b50/infomap-1.7.2-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=c889290891f1a7c7c376e2ee134603dcdf976199e3c9067423ece43033ca083c (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/8f/8dbda201e44b032f698d78add462337882f5bb1dbe8f3144846c8e1b77da/infomap-1.7.2-cp36-cp36m-win_amd64.whl#sha256=fa7f5a84a9bf8517ec0039d589b094100c379975f83cce72b061325612e9ba20 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/8c/66e8b60148571dbc2e2c59d7dea9ddf226292f4072c39c241d3729465677/infomap-1.7.2-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=91216453d62333d90996ec4858c8b02f3b68e6119b0a70aa98c9e39f8b4bf5e6 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/91/9d/3dfcf03587169b833e9d6427fcb1dd3602989b6a6bf76ff5849d20222282/infomap-1.7.2-cp37-cp37m-win_amd64.whl#sha256=794071266391946e80de6c4f0e590c7ae622c632ee5057709019db0efc5689e2 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/22/c5/89bc922b5f2c2c54636ea5c391526560591bae43c9fd3e363e7a969e8300/infomap-1.7.2-cp38-cp38-macosx_10_14_x86_64.whl#sha256=fac8c2c8528d10017101af66d5cb91e3c6315142ce6f997fb7ff397a42043a3a (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/de/9a4315b318fc9b0f79e619509a82e6c61fe1959ae3577331891973376d8d/infomap-1.7.2-cp38-cp38-win_amd64.whl#sha256=0d70e6c8fdb7e9874a336e9394ceed15058c9d8e82ca4375807b41e76b3499c3 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/4f/87/78085c0f62e9d77ee408be3fc18b014905c85079c20a7dfd56f820647cfc/infomap-1.7.2-cp39-cp39-macosx_10_14_x86_64.whl#sha256=1bb37e6ad15690ea91b311052e382333efa3380d9ea1ada01bdce79c607ed9b2 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.7.2
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c0/c8/b168eaee1139816670219f54dbd377f0e636fc607b7ba22d915d9a81c532/infomap-1.7.2-cp39-cp39-win_amd64.whl#sha256=ef9954c113541a08aec1cfda3104552bc93b004925ec29de83ccfbfd5bd56d7e (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/5c/66/f8887c49e3efce9e5a254ebdba859ffe8e24edf9dc658f01dc92d1ed0fdf/infomap-1.7.2.tar.gz#sha256=bafab44b0e984fcbb1481528972965118cf9393806bfb2bfe55d445acb51df11 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.7.2
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/21/dee85f6c02890b0debef308836dc3033e6146c21a3e368ef6f0fef4f2bb4/infomap-1.8.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=f72f57371baafc4aa3a5cbe2ea6df36cd0748032d06d05d14bf18c08719bf8e9 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/23/12cebc9e1e6ce51766d065f725098000b910e3fdecfaddd39bdaf8c3f526/infomap-1.8.0-cp36-cp36m-win_amd64.whl#sha256=237a0aee94618d59f0cc43bbc077b63bef307786a044812de873a9e2ce5fe6b2 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/cd/b0e6500041728bf1b4a3cd8d2ac6f213fb940cc3c7003518b2724ae4e8d9/infomap-1.8.0-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=1146e59dbe70d8c6e29084fc129fc4b7b3c81047b9b9d00af40dc8077956b4d4 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/96/fc/1b713b9f91775e6c35f08ef6fac3eada2f4d658fd81abc2bc10812d8e339/infomap-1.8.0-cp37-cp37m-win_amd64.whl#sha256=88032190ad7d21b7680c82138540eb24a2ca076d2e4c1f93166f682187a171b2 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/46/27/69a7c8f64301f85d2f1d6d73fade6c21dfcf2692d8966582f05a06dde8b8/infomap-1.8.0-cp38-cp38-macosx_10_14_x86_64.whl#sha256=89287d0b87ff6e5f9c12429d134a2cfdc2015ae1fd505ca5bdb51403188e7930 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d7/e5/3adc0bd25f11fbd40812f3aed7d486d4869f6dbfced63efa184397c674a1/infomap-1.8.0-cp38-cp38-win_amd64.whl#sha256=b6e78c3b710123f463ac3bd320a7804867fbe4817e840a44f7f9dcecde3bb599 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/94/65/041578d287c5f59b16468bd02ca6f2cc47b8580a457d44e3b3aecf1ccc58/infomap-1.8.0-cp39-cp39-macosx_10_14_x86_64.whl#sha256=e9bbe842046d292e6518ddf65e328f763ac2eafe553834e92bf4f03087477c63 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.8.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/0a/fc564e50b8327ca5f00ed3a2ab0be6aaf3209b1225cb2f364abda5adf507/infomap-1.8.0-cp39-cp39-win_amd64.whl#sha256=b40fc0f8a1d3f38961088822a245bcc57971da1eed7592d8a5e1df9ef56e234f (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/ad/31/4d9bc22319256b9d4f41d651718059e085afc120fd87effcb13018f73343/infomap-1.8.0.tar.gz#sha256=a278e1fa9ccbeb39cccdc2599d586b42719a9f8cf78e4e335cb8425ffbf3187c (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.8.0
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6f/b1/2392182e9b462a8d09857fd684860db32ba9093c88b09fc4b0d41580bf38/infomap-1.9.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=fdd2d3c0876870212b280bff39f3517bbba8e7ff5f97e028dc79018ff175de0d (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/01/237f2a0a2edeed3e9ec20b2f66ef9097d2821c0a9d9371298a0969e8046a/infomap-1.9.0-cp36-cp36m-win_amd64.whl#sha256=dbf6dca58305dd4352a9d0c948e1ad987b999ba3c4672bd2e5789cf355b00faa (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/41/32/7ed0c953550bd67d566a257a70285b7625f0e54572a885fdb181a227c88e/infomap-1.9.0-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=9d6b5659dea426e5ce9d738abd6aabd90c4abfb1c1eedc7eb63945c9cc4566cd (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/61/5344bd78d020f5b55d4ccb3c9ce0aa8ae2dbb24b5c11fc26f6497714c132/infomap-1.9.0-cp37-cp37m-win_amd64.whl#sha256=87be80f1096fdae2095e1b4cea9abfc47065e51fdae852bd1aad4fac7c450dd3 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ef/ac/2793dd9b89e650e00e6c6fa385569ebd45aae4547f4476658d663e33abb3/infomap-1.9.0-cp38-cp38-macosx_10_14_x86_64.whl#sha256=09f6ddeb1b6be8c407e88e9e128bba23d8dd6f12f8d3baa08543c6db95f91cd7 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/97/cd/e343c35e72170a010ab311e941f24bb9efa761d8a3d9da9b27ab96b34d38/infomap-1.9.0-cp38-cp38-win_amd64.whl#sha256=e2491b5b92558be55473bc0db432eb55aacdb55c628d9584c6720af583f188da (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/5f/8c/54d3fbf6197e2265d0d94353ac46e15c2b51f0127ca3e3847d60d4d39219/infomap-1.9.0-cp39-cp39-macosx_10_14_x86_64.whl#sha256=e11c1979cf14dbe8b9e11502a1c4af227fe9b82d0be13014ab62bac375138292 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.9.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/49/d7/544fc77ed62ee99c6d04020806c9b951eafb179f36eb37b8eea3c04b1dd4/infomap-1.9.0-cp39-cp39-win_amd64.whl#sha256=1ea8cda04043eaf942d19c24e19899d689caab488c39e269a4eb609a23722351 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/b8/77/088619c398f0412d1fccc9f60a8b0166de45cba6290cbf8153bb1b06ae54/infomap-1.9.0.tar.gz#sha256=12d7a60105d73492530e0f0bc6604f707de90396c76bfd881d6384776c4fa27a (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 1.9.0
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/03/fc7c82c53a1bed2aaa89a9e74427d9dc2aa97f13c3ffd628f8e49517060b/infomap-2.0.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=c9d61d8c918cf54b01a8864772a29d17e592f4f7249e2a3dcc5ce2cf22b3a8f8 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/16/ed/b51fcdc4a590e9ebecdd8fbfa062db33682fd0cb8546c3689489f5d77312/infomap-2.0.0-cp36-cp36m-win_amd64.whl#sha256=9910e8cd8d306e2b42d535c1be03f0a6e4730ef59d5b248fb29925cc7c3845a7 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0d/81/dfba294dac690220851433f59b4425c0e592c137ff513c7b20a15b0ce3cd/infomap-2.0.0-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=a3ae9d81ae63ad0746322d850309584fa37259797f27710a33be9ec74bc7d5d2 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f8/f0/4d2027be30f9b5a6db07cd0eed7d2a893d5a4ee9d2c917acbf94ca013f3b/infomap-2.0.0-cp37-cp37m-win_amd64.whl#sha256=b330b70239a57acdd7f469fa4b1e50a3c8b91bd993ecf5a972235f49ddf699e6 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/16/62/1352a3b3a20b9e135594f15533b766a5269c3f4c4f4f90a38b385e17c0fb/infomap-2.0.0-cp38-cp38-macosx_10_14_x86_64.whl#sha256=95e18279430e3c2782cad26f2409e8ed7b299e5713c83bd155aaf1060dc39a82 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8f/91/68ea184474e0fc108962413fc499bef91db8e57002b214bf7b9db11d67fb/infomap-2.0.0-cp38-cp38-win_amd64.whl#sha256=3dca3cc29a62e67c276b6941c3caef2b6f867fbd26791f44479e544bd33382c5 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/28/33/3f3b2f4a88df7d45d9a77bbd6369f2f20d97dd69cf6239001c4932ad0004/infomap-2.0.0-cp39-cp39-macosx_10_14_x86_64.whl#sha256=b68fda7e65c18191c65c0ba12da29668e53ef03c28afd83c738dfa26713287bd (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.0.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/ca/7a98d7ec3ad50d8eebecade59334cbd65a76c950d64a03fec263cf6c78ab/infomap-2.0.0-cp39-cp39-win_amd64.whl#sha256=6ca49d133f4b9623a84b4a7799698bded964b403db1d1167d03dec2a4f11bcb9 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/4c/64/a5af99129621ad38f80de9ebd5e563415edf2a4512e6b330fee6e05c810c/infomap-2.0.0.tar.gz#sha256=25713b9668298aa8b8327800900a8b27d70515e897589bc249d4648478dad9eb (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.0.0
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c9/0a/8d6ffb10771a880c554e2734e7f77d548ede5a9bbae266ddbe917118e450/infomap-2.0.1-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=bd4b51233eaaf478349b5da0171b12e97035ad77cfb96a7d838feb895a780c36 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2e/8f/5e0a69f52cba674a5d621a369f0ef193d5062ae9103a4c081427346e5fce/infomap-2.0.1-cp36-cp36m-win_amd64.whl#sha256=925bd29d1d42e4fec63a45bbcc4d275edcc6b82499f93395ed69e2c1f07a0704 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/4f/184e011b3c91ce98d7e2b2f99320629073cc0ffa000944923165329e053c/infomap-2.0.1-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=7b58c8acb208cbf96c213cea8f8b349d16d508746f09d13d3dd24c499b23f174 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/2e/bfb88311737859655840ddd157c5764ddfb9bcd3a1a92d75760012e4c149/infomap-2.0.1-cp37-cp37m-win_amd64.whl#sha256=ee9c09f1a04d5e869b43e205403857d450235814c1a12d4c5ad8238ca0348913 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5d/ce/f390b00823cb909f9414a53f6eeb716e373fdac194539a7f1c51181dccbe/infomap-2.0.1-cp38-cp38-macosx_10_14_x86_64.whl#sha256=8245323b1d1eb15fabe6f53146906b012868e4d1858ecc19eaae432390a6c5f2 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/78/01/8d8910a361e301ea5dc6fbb12dd4ac21bfa0e6e07f9bb2e9cd663484fd7a/infomap-2.0.1-cp38-cp38-win_amd64.whl#sha256=842a8df7259c7acc286df5f588b689268d654bb8958ffcbf3282d64818fee2ad (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/a4/3c/893ecb1c38c3231d4229e3a10d4bbcced627f170cc465794fefa6ee9e4fb/infomap-2.0.1-cp39-cp39-macosx_10_15_x86_64.whl#sha256=752e3525b2bd6aebf8953155926ca3dd07907c8ba233e30b744fbd3942815dad (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.0.1
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/c8/7befb1a82dbbf5376e07785c35436a1b2dbda4158b0d240181a2607496ab/infomap-2.0.1-cp39-cp39-win_amd64.whl#sha256=8142e039c996e0de174cd567ba28d5cc163d39b9098b7389f28a465b798ec82e (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/59/97/be3325a380d2bc6e5e94bf1a68e12f6952fdab29504722befbe435f368a0/infomap-2.0.1.tar.gz#sha256=53c127f420d36b3709074610896f035ed5db23047067599942c276ad055568e6 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.0.1
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/38/d7/8b776c391bf603251a0ebddc3fca3bc7e3f7de3d27b7c925bf21b90f2912/infomap-2.0.2-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=3be0540fa136261e6307be8e14926fa7f14fc7b5cc73718ade000032669ecd8f (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/71/04/90885d28300adee8431410557078d3bbb914f8c20dabf3e47bc6d9167aa9/infomap-2.0.2-cp36-cp36m-win_amd64.whl#sha256=537c112bfb612e1304f573f9222e22527dfcac6a8a5a345821c7778baee43182 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/5c/081da235bf230c9ea984e2ca40c96244ad43a4477f3aa7e46947209e2d36/infomap-2.0.2-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=67e05597665b8dd0e9e2fb7a31eda9df492753d364376ae2c04626b7a1aca1a6 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/6d/44/736352534545516d3db87effb7bac697cbd842ab6b28ecabaacde590081f/infomap-2.0.2-cp37-cp37m-win_amd64.whl#sha256=adafe822228c939c7f86f7bbcaead91b4884a51529fc02781d5a6e46e20fb0a1 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/be/b48d9f587e44a7705654e2cf8b97d945b4b11ef0728efb5cee9bbdf9a930/infomap-2.0.2-cp38-cp38-macosx_10_14_x86_64.whl#sha256=4bf144b9493192075a0a2788f0db1dd381f0eb5465c617a4d27073cdbf41639c (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/70/83/143dc02116ea45dcf5b24d6191fd6fe271a38ae55a3e9aaa3804696fb841/infomap-2.0.2-cp38-cp38-win_amd64.whl#sha256=f0f477e18c52da5204926a0292a763c5df0c7af72a07527634bc8c846bf3c70a (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/f3/de/2e8d7b698e0cb0f009713045d55708ac8f9a4a8947fb8fd40b73f4ae33fc/infomap-2.0.2-cp39-cp39-macosx_10_15_x86_64.whl#sha256=2bf0da2bf65f7966104a79e4cff041f528784c381f16810ac6480190c6683686 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.0.2
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e6/da/51d36ec61d434f7e5507e3ecb2e3dcd4c712879d0590a3e2ce0694f575ac/infomap-2.0.2-cp39-cp39-win_amd64.whl#sha256=6e79655399631b61c96eb0a54f3eeae6883de339ad3555b2815b5ea231ddb924 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/52/f4/f2311600926212d0b5be896d0bbd1233b5ccac4a7583a1183bb9101e762f/infomap-2.0.2.tar.gz#sha256=e97eaa74c1e1b553e06b88695f7d36d22c4208d91451eb7ab5258279316d04ec (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.0.2
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/55/de/6cd9efc649e356fb5f7ca2f50581770a8a74818e630789eb89390c9d5a15/infomap-2.1.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=8305bafbd511620f5b2bc465032645b660721bde2da9ecbabf6dbed4b1274421 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4b/1d/96623509ae740089acacb6f42cec5a0ca1b54bfdf7a6ad7ff626e474a131/infomap-2.1.0-cp36-cp36m-win_amd64.whl#sha256=2c2580983d4517f18d0d53c1feeb2d812fce76e7aa9c54a964eac893ffdf82dd (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/02/e9/18d381aac96dea0a6b353e806984c49ce6bb96973a6a6bf46b0bdb05a799/infomap-2.1.0-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=95b5b9dbf7fd532f74b845e1d606c719905c11fafed6dfaac9b4f5afa6ddad4e (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3f/41/97e57346bc48c4d3c211f61eb95c50550bf132ab74d7906b97a9f4ab7c62/infomap-2.1.0-cp37-cp37m-win_amd64.whl#sha256=3a75a37f9298cb2d7caac1f81c1043d4292a6d8fbf8e76b8310b1428a7d5d4d8 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/40/17/723cead438bc5d3f872297abae741428f2c75fbcfb3c891ac7cc9633ddfb/infomap-2.1.0-cp38-cp38-macosx_10_14_x86_64.whl#sha256=a6d386fae146ebb8a6b7237a9e4bfbe55071fb351f40674c5ae47b819be5ad1c (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b2/9e/3de9732b2151596887792d94814a282379c900b8ca7564a6b3eb28bd83dd/infomap-2.1.0-cp38-cp38-win_amd64.whl#sha256=c2f5b3f3611941b98c093f055e8636d64b7faea70c458404f5c5689c82e29323 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/51/7d/82fe37809e1629f0548964546dcd6f964b1d1d7b95dd907e6de12abb24b3/infomap-2.1.0-cp39-cp39-macosx_10_15_x86_64.whl#sha256=5b559b460c61e2d18234c4c5b26a5c051346ed1cf93826a1fd78f8f88954336a (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.1.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c6/c6/e32f8be7d4aaee3a95cc4b578896fa43fb9975ced0cb3f6b2abdc5824171/infomap-2.1.0-cp39-cp39-win_amd64.whl#sha256=d0ff23473794aecf97bdc967c0f2fa1c7886b5fc9c31de5864a7f4184f7bf1e6 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/22/c7/897da0282c9e88f5d2fb668fbd2b86600ff6a02778d203ebfa11b6659ba7/infomap-2.1.0.tar.gz#sha256=84efdeea6cb3664edad563d0027548a93016b0abf5bef5dbdeea7e49a5493e86 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.1.0
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ed/b2/f7d228d0c0bce9bd2c0bd72805b1d81ba8384e5cedf7347c52268fa3533e/infomap-2.2.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=f1432d3bcca60d2e77f0f6b2e96ba4e873fde7736f7da3baf6307b5655771ee6 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/22/6b33905fa083eefde28b7bc0b5399a830a9a424a8fdf76abe2272f0094fd/infomap-2.2.0-cp36-cp36m-win_amd64.whl#sha256=e095700faac587d81ba73e065823173072a3187ead7da715b4af77f84edf6bab (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/92/e2/25c2eeded1041f17582f0ca16b88ab6d773b0cf8a65da92b566957737476/infomap-2.2.0-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=12aa4bf9f7522f1c72238dd734260a47e47a89c3b5edc2b85332782d50f901ee (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1e/d3/b50b3f657ec2fb713e060af654bfd5dc0c5d96093709763bd94b296aad60/infomap-2.2.0-cp37-cp37m-win_amd64.whl#sha256=50326ca53625b9ca4ab071c49d728cc116c5af19ad67837acc5f819fb235773b (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b5/e7/dbdf27e635b2d1cb5852e67427675d7e0bb39ee7739953c2dab16eca71e2/infomap-2.2.0-cp38-cp38-macosx_10_14_x86_64.whl#sha256=e3e9b5a8be226830b2b8cfcef6c907cf168a99ebb72752ba357239ec84913c99 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/b1/4194f638e245f76e170da4415003749463fdc69c82ed98aa728dcf95ba19/infomap-2.2.0-cp38-cp38-win_amd64.whl#sha256=2747d1084696bd7157e32a37b9ae3e77fe5f614d8e832f489680c52b78bb54d7 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/f9/da/a0a68f842fe3ec117fc3bc3193d9ff2fc5452900a345bae25d0f05e6b34e/infomap-2.2.0-cp39-cp39-macosx_10_15_x86_64.whl#sha256=2653a11c62527da58664457758f3af677155278c16d7431851a2eef501ce1c9e (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.2.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/35/35/ec7582cbc8cb9fe0601699736844a980f49c63dde74f672eec01a9ae669d/infomap-2.2.0-cp39-cp39-win_amd64.whl#sha256=da7db988825e83ed9373452617dc1d36a86868e78c0ea4364fed2c0d222916fa (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/0b/25/174eb025f09fece796cc9b2ac520f9cf4c9c6388f5ca9462f71143bdf639/infomap-2.2.0.tar.gz#sha256=ce33677268841b1eca8e148d6882a7352588b19d15cdb8ec1fde884c89bf7a34 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.2.0
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/c8/2e/809b47dcc34a1690024ddab190208a80311658d7dfa018f4d49dcee314ec/infomap-2.3.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=83f84093bd8c64e67e389f92a976aedfbaba89d7a8766939b9c97f75f1c114f5 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0c/af/8e433f327b5893ae0c586181ed130372cea83556a880b9ebd684851ade1f/infomap-2.3.0-cp36-cp36m-win_amd64.whl#sha256=dfd719bf59141477d59f59a1f0d29ddba26312cf160a40848c7bc38c8aa6ac70 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/de/3e/ce892493e1bc34aab75662f79aad2d39bd7f84cca8766648e76b5d05ae4c/infomap-2.3.0-cp37-cp37m-macosx_10_14_x86_64.whl#sha256=74540fbc7668154370e5b59fca76a638f6cfac9c668d37e449ee10b6ed577666 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/75/33e91c148c730d104bd80bc95072e1252c94b492f7229d647bcdef75cd59/infomap-2.3.0-cp37-cp37m-win_amd64.whl#sha256=a8fefc146b859c5c85152a214f7520a154c75e11378003fc8a0c1eccf10a99ea (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bf/04/b2881c4b4d8f7b05c113cdb90c818d077e14a87a672f5f66e4552eef0a41/infomap-2.3.0-cp38-cp38-macosx_10_14_x86_64.whl#sha256=3c20c8dd6af317efed94b327fb4095721762526e356637d7b276c744864fbb86 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/05/b3e9d7cd2b7ecb2369023a5189f50c387adbbdeaa8fe10e2fcf406453317/infomap-2.3.0-cp38-cp38-win_amd64.whl#sha256=44a87a4262ef68f3567a6dddb4361e4120bd58bb5f3c07a81ec0b727bc6fb234 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/98/72/3bc6506bd677ef9d7254d2aac1c2c1c98b10c9d4f74f420690028383b8de/infomap-2.3.0-cp39-cp39-macosx_10_15_x86_64.whl#sha256=7a6d4c8e1cd9680bb679cffea76b00f1eecadd7981d99f0dbd9c20dffbee6bd5 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.3.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2d/f3/ef48eaea488d2930ffda039f50966fd88203b98fb1bb2cf81f26f2b7eec8/infomap-2.3.0-cp39-cp39-win_amd64.whl#sha256=dc46700694647abaeffd3f8e86379c8605c922d808486c6284a83c06a22a42b4 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/4a/06/43ba92843e7fd8b636d44f4bed2825f8b594a6c596bc3897d1055cecdf46/infomap-2.3.0.tar.gz#sha256=d27fdd9c3c1dfb50a4e9f9103c078fad1a21dab90d3c8bfafb18b00bad5e483e (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.3.0
  Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a3/ce/55b985ef7721d5c3b39e3c2289eddc232a82838a5a63985e5dce8a417542/infomap-2.4.0-cp310-cp310-macosx_10_15_x86_64.whl#sha256=f14d4cdff1303aed8a0f114832d639743cbb9d97a53262554e5a14d034be3601 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3d/1d/dbf37dff64d69243305d99046cce99d7f379b609a5433e3725e716cffb09/infomap-2.4.0-cp310-cp310-win_amd64.whl#sha256=97fdf308767dc78c659bf156aed85f22e5ea09312614e4b300977e90fae834f1 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/cb/2e/6575d5c6bca96e3c5b5cd36988c6c1ffdf8458d8a5e2901a379fa994a7fa/infomap-2.4.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=122381639bad35e097037df58cbd21523f4d2fd06438312995e9a98b2e152309 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f6/17/4b67d2845833fbb1f41d8f1cf8c6552074d4f575597d7f632b98abffd98e/infomap-2.4.0-cp36-cp36m-win_amd64.whl#sha256=47f5c856ffe1fe15d2c3f7f2f13d33890bb5ef91d6361a2d03d3e82475702c50 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/37/13/354c203f3bff02ed24ca4ed574cc333215305e395524c4b905231cb75bbb/infomap-2.4.0-cp37-cp37m-macosx_10_15_x86_64.whl#sha256=165f2ff0be486f40c3435394ec27101cd5a51f7f5d16a60d609d74695ade2c10 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d5/58/3febfc3c7661770bf525598bda48c2db1f8fd89dd0a5eeb8e0d78ebd85c6/infomap-2.4.0-cp37-cp37m-win_amd64.whl#sha256=8914cfedd2a5348b87eed2407f207acaa1b8f8795e5de8b17e1a79236afa61eb (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/2b/ff/0252a9a5f99471ec7e97ec05e4944593edacb83914fe0a889942e67f06a7/infomap-2.4.0-cp38-cp38-macosx_10_15_x86_64.whl#sha256=2b4341c57ed1cfd5ea6f92b3499d4a115b1d1bd877a8cdc89579a48ed52806cd (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/90/19/7d70e6508a765c7aa675aed1c696b3420814c630dac75b046e4a336623de/infomap-2.4.0-cp38-cp38-win_amd64.whl#sha256=7a1ca2e7b0ebb87ea662f99c6beaaca6beb4ca140608f3384989ddf5d768da60 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/db/9f/e78b48d22da9fa5f02488679f17dbef147caa73ba693160c54f5dd947c97/infomap-2.4.0-cp39-cp39-macosx_10_15_x86_64.whl#sha256=b40f078a9823b90bc1c040e245a693be040dfe55ca3e6580357583740ea2d31a (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.4.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/0d/f56f01cc5278165ef41bf8897a5ca4feb061fa98ac9bb2917fcb198f96b6/infomap-2.4.0-cp39-cp39-win_amd64.whl#sha256=2a76397633e37e060b14c0c59c3c4abf62f6f3d105c5faaa41303634a4d9b845 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/fa/da/7da028b481db48965b711f0158ae9d7bb26ab6d5ebdd47a3c01e1aa3c4fa/infomap-2.4.0.post1-cp310-cp310-macosx_10_15_x86_64.whl#sha256=a64f5df416198f8a2f555e1224d3ad96b2680dd9a7b72d744c7752cb259e66d5 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/7c/1a/abc01677345aac02d061524901460181531abc539ac1fbd047db55856b14/infomap-2.4.0.post1-cp310-cp310-win_amd64.whl#sha256=185d060b146fa993f571c49c4c033c82ddf049b68c03b14a84c725b2c2b78035 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ba/25/7924992e43dfa5abb70b13c92aad4c95f381fe4ae9d880a16d5b3823dd48/infomap-2.4.0.post1-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=92d299951bc51e9bc9336ef5c9f011e0707d33970212addddd1d23dcfdba4234 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/27/d7/00d06766d2bef0c59a6870e021ea565c4a3c7638ddf447a7e1378cd1adf4/infomap-2.4.0.post1-cp36-cp36m-win_amd64.whl#sha256=b9a2a518f4043f8e64c45dcb26261c2bfec31131d17672021928145a1a691f1d (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/3c/ee/8cf57841f0e8b00761920ab63e5ea71fafe7ef36befe0d6a71a5e3a28228/infomap-2.4.0.post1-cp37-cp37m-macosx_10_15_x86_64.whl#sha256=f5214df96381c6f050554b0973f9a6c21d9fabc001fdd34a85e9cefed41c63cd (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a6/2a/1425755b2fcd0804039d472f94567c286fb2927d1b40ffa2bc6cd228e35d/infomap-2.4.0.post1-cp37-cp37m-win_amd64.whl#sha256=48f42219f10687040fec8c2d782c440d234885003285298a076c10bba9a115a1 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/57/c6/ad4ce6ce17de88dcc0c4ab60d1741d5456a072c8fbdbef2ce18f30ff57c5/infomap-2.4.0.post1-cp38-cp38-macosx_10_15_x86_64.whl#sha256=9425499b8e06ccd5a2f5092fe1493f506a9e0ed9a47dbf294fd43dd52eae329b (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/51/e0/3385eecc5d8d5872b67307b1ac8a70beddfcfb61b868235cf4f30006857d/infomap-2.4.0.post1-cp38-cp38-win_amd64.whl#sha256=0a3ab49ad992779590aa6b38fb4cc8cd63d6c7c758be564d27038346271549c6 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/45/15/0060e4c43000c21b96956b8825a878cba7ff0491ef3672f5cae876dd0a43/infomap-2.4.0.post1-cp39-cp39-macosx_10_15_x86_64.whl#sha256=20748de103604dd7a8fc6a5e78af991e63e95d7a667bb2e918f38c7edc3846b8 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.4.0.post1
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/5a/24/368c81eb2bf395c6895cd527068e6845fb2c0a69ad8352cb1760c2ac0fcb/infomap-2.4.0.post1-cp39-cp39-win_amd64.whl#sha256=18791b439f1061aabb1c19cc136f8930cdf846c4178d61ce50c9c0ce89d73055 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/8e/9f/bc2643243b8e9abd24b6e993e4bc853c77a63f2527e82e283db37d1dae4e/infomap-2.4.0.post1.tar.gz#sha256=86d0f1073b3337438bd1275ccd8262103f714b3dff70228f3c246eafd0c107e8 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.4.0.post1
  Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0f/0b/b0f7d2785c5abab7aefacb0c6228b307d42783484698f9199ed68097b356/infomap-2.4.1-cp310-cp310-macosx_10_15_x86_64.whl#sha256=7a78c75ad1baedc20062ed7caaccec14fa1be13220f7c66b2300663b12850eba (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e1/63/4f2ba8acd04fb7d6bf3d7af817a28d2b5f86158b2b26077891f703e25b98/infomap-2.4.1-cp310-cp310-win_amd64.whl#sha256=7ea4c145ae24a2246296adfca12440aeafa843bc65cdc588804b2915b4b0fe1a (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/dc/27/0f1fa511075d7ddb4a94081313d1192d0adb452880b90ae0114b36423ce4/infomap-2.4.1-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=70b1da18decee7ab51a8bdd282a44867eae965f97eca5a27872e1041b90edee3 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/c2/5d43c97298b2643a754e1019d1661218efa21047ea4081b61452f1a467cf/infomap-2.4.1-cp36-cp36m-win_amd64.whl#sha256=bc139ac3eb7d46dd5bd20f72f4676baed8d40145c72ea4860ba6a0170dbd027b (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/87/19/97c2df6c6ce6ded29a8f8177fa05bb64905a9305057a20dddcffe0645296/infomap-2.4.1-cp37-cp37m-macosx_10_15_x86_64.whl#sha256=4d54effaee0b13656ea8091ba59ac01dcd9016e41b7d9523fbab98b261dc0351 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/63/82/7a23e2174ddd628ef71f3d6fef1392f1819967742c78d422468097426849/infomap-2.4.1-cp37-cp37m-win_amd64.whl#sha256=1eb31dc988e3dbf4ddeb3d236f14b05ac78a8307f950456c8c35e303e8ff7ead (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f9/0a/412ceb9565e250a31aace99148cfbd7c927686d656bed5649f3126255ea3/infomap-2.4.1-cp38-cp38-macosx_10_15_x86_64.whl#sha256=7648d8970959a4626a36891f1076f1e3a67b892645e33c295643eaa91f933186 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ae/5e/9fbfc04ed09349d8289ab5c3a70afd41dd99823ea860a08d29ba0cebe32c/infomap-2.4.1-cp38-cp38-win_amd64.whl#sha256=170437b63559133a928fa121d6d7095433adde2adbab47122d5185350862ca56 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/9b/b2/6f4d8996ead18c071b4914eed80887b3bc06e978b34f88bc971123827514/infomap-2.4.1-cp39-cp39-macosx_10_15_x86_64.whl#sha256=84bd0310567fb1539a7ba2faf45d5d8d22c1c313b49da7c7840aabfaee73ed3a (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.4.1
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f1/1c/6b58aa732e7b336e462e2e26e3e83f5e92f5bc8cbe11cbbb46b1a3236872/infomap-2.4.1-cp39-cp39-win_amd64.whl#sha256=9610f968cecfb8af8a07cef47cc8b695447114ad65537ba060b0eccf576c6335 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/0e/81/2d49848e371114868d642b5854bd67dd0d470c2987bdeb0a7d7e84770fee/infomap-2.4.1.tar.gz#sha256=e0b76d24635540526a74a51c39c8e06f5ebd32ea0e15ceb3266fc2c14dc583e5 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.4.1
  Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/be/a0/004887534da500c5c0756d3db584736c182db98ce2cf8c271f7adb0a54c7/infomap-2.5.0-cp310-cp310-macosx_10_15_x86_64.whl#sha256=49af7d47e1d06cfc94cc05b47f3737398ad23a662b3e21ef93b3fbf83ae99e1f (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d8/e6/082de97f5198aa2bd9880ff612997683cc3a198fbea3ff7d9b0202eca06b/infomap-2.5.0-cp310-cp310-win_amd64.whl#sha256=2a230242a26af3b9529bf7d6fb888fffae9882e3d6a3f652abd32a58695707be (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/ca/6a/3fe33e56189efa71c63bd4bd6ad94ea02ca8af535e22ee1005ef488b68db/infomap-2.5.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=64d8eafe23fb3dabbeb90915df81a04748db61fcc94dc18fe74f55fb1a8855f1 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/8a/1c/4cd3818f7337efbc56cec223af99e9204d8e36b4a01008e396f2076a233d/infomap-2.5.0-cp36-cp36m-win_amd64.whl#sha256=d4e402331357c5ef7eb80fa33ba01ccf1632aeef6c7c9cc2c2c48b27594a1868 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4d/7c/a627ab0b4042628663eebc0efdc8a99a808161022f197fff323c2337854b/infomap-2.5.0-cp37-cp37m-macosx_10_15_x86_64.whl#sha256=e6344884f94c9c310aece640f8b1779c9421763c593574e2fa0394660d1452be (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d2/74/b4ea388bd8e8fd70da39141def8fb6b63d15606d96d926610000751dac14/infomap-2.5.0-cp37-cp37m-win_amd64.whl#sha256=e05c6409752382580ffc95afbac0dd7a92976b3346cd72a393f427d881e68710 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/65/39/62f0d8910b543c54a0c36fd253e4189b60c44349827c9f6d771fe553c851/infomap-2.5.0-cp38-cp38-macosx_10_15_x86_64.whl#sha256=65cf304448a2b838748e1c65b5c0fbccfee40a18dcc73a8b8c83d3b1f1c8df36 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b4/b9/85e58d30d25be450b3876e64da2723e8502ad7db3b3bd175677a3c7b4d90/infomap-2.5.0-cp38-cp38-win_amd64.whl#sha256=36fb9516bde0a3fd3756c5341c65dab397bd57ca2d3680e16e25e660561006f5 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/37/14/bcdf5847ca5b32771f401eed8a0ef9533cba86169c8bdb7dfcdc3a509873/infomap-2.5.0-cp39-cp39-macosx_10_15_x86_64.whl#sha256=9a76caa254061ed682b3117644b24fc5765b10cc95026a0faedcd938e6f538fa (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.5.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/31/ff/bb2ae044404dc168ce4feb4f28b18951db47b2c81977a801043e3276d78c/infomap-2.5.0-cp39-cp39-win_amd64.whl#sha256=5065f45b827a25fb25f90f7d9a6cbd84db33f19b654a1712c28106ead56f255b (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/4a/15/2e203358d4c841d910ca3ee83e80a59418630bc30462b8aef959a84d3690/infomap-2.5.0.tar.gz#sha256=93734eebd7ede1a093b0b93b7a5956e0616b2d2bb3128dbe95f650ec5de342d6 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.5.0
  Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/d7/3d/cb8bcaa845e4d7006d3d6de518233fdd0bf548347d7b664c0e1dcc7be92b/infomap-2.6.0-cp310-cp310-macosx_10_15_x86_64.whl#sha256=92752d54b784b22ab1bb60e82a92163f40398112c6fddbb7840db006e8fcec60 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/4a/62/9776b2defc84f2f4e53ea54b22dceefac63950fc910cf101786094a09806/infomap-2.6.0-cp310-cp310-win_amd64.whl#sha256=c2a09c07692b9d61d1c1690a0e57b40257696405e666ac8c69e1a10ed726b32e (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/9e/74/b3ddfd32ce56fa7f9c75441945eaaee3eb0aab6afa7176931f92f552d8b8/infomap-2.6.0-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=1f57e5f42a590ef7233c66909c8fc977f3ff82f2590eccb35766ddef4967b066 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e5/a7/dbbc81c6603767ec44a90b7a3ecaa8b2ee154fab5282a709b0af517abdac/infomap-2.6.0-cp36-cp36m-win_amd64.whl#sha256=bf48e11f837e3b960540b038bc4b41c6485cfbeff409b2a07ce0a5bb6553e0c3 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/db/81/7891f314798f4b32348240c3d81f8b9dc279f19bf67ca57fd92a186e9fae/infomap-2.6.0-cp37-cp37m-macosx_10_15_x86_64.whl#sha256=dfa0250cea5ffe7f507b6dab4689750dfeb2ac148d3abd80134acb1f79dc9008 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/18/47/e182d58f309b075da9f3c8f63a417856bef0b4337ea213e2bc54c1b9bc7e/infomap-2.6.0-cp37-cp37m-win_amd64.whl#sha256=c011a1597fb889a562790a86728380ed4be4d05cb08e52b625fc21f8bbad59bc (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/1a/83/6fa8ccc9e1409bc90899b1a11a219eb2c3cdfaf99a386deff7a1d32df1de/infomap-2.6.0-cp38-cp38-macosx_10_15_x86_64.whl#sha256=5ce1c588c9b76814c9940bc10dc7268c5d21016788d0b1b7222d7cccf74d53cf (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/a5/9e/199d4e8b7e955b18cc0844d597b35a43d4b7c244547b00266e3f4617b58d/infomap-2.6.0-cp38-cp38-win_amd64.whl#sha256=9050d3b7dba667afe69229f813d2ee300210f45a3b8a30d298caa4cda9c449c8 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/d5/ff/4e6d2b541a6a9e37100d3c3d5fcd140187374a49e713f109ed0f886872e9/infomap-2.6.0-cp39-cp39-macosx_10_15_x86_64.whl#sha256=253ce73553081f5da8ec0e313115153f68cfd2580e0f86b7ddecbbef04034097 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.6.0
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/b7/fc/cee5f4eec7bbb0559dbd170f5567dc51d5f7714ac9f46f234013327d4eb0/infomap-2.6.0-cp39-cp39-win_amd64.whl#sha256=d031504c9d723b5753665b773f3a728d18dc45a474e113e5f6b18d06e75d64c8 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/65/bb/2d12847373a8f729cbf1544e103d6cb752b151aff40eaf6c5e80cee71497/infomap-2.6.0.tar.gz#sha256=76d2b8c77f49c7a8fb70fd4758c205150c372212b13ccbe96f05f18a72dc69a3 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.6.0
  Skipping link: none of the wheel's tags (cp310-cp310-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/eb/1d/b1f8ffabcc82a7a6c2af321dc2bfef55a1b74558c70c83753e194d53fb98/infomap-2.6.1-cp310-cp310-macosx_10_15_x86_64.whl#sha256=0a1bf56194f0167395a87e0de4d386c241c08482e12e2f61e91c663616e29f1e (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp310-cp310-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/96/44/81e11965cf734d8f4a0e3925c82da26618207404d5a1ad688781ae1dc47e/infomap-2.6.1-cp310-cp310-win_amd64.whl#sha256=e8ee9fce2a78e3c5f55485aefe6034256ef7cd7238db498e51985fa87ab0e8b3 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-macosx_10_14_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/bb/56/97cf3c0fa0bb6f1d066ba5715c582d1deb8252e9acc497ca5ff185044bb9/infomap-2.6.1-cp36-cp36m-macosx_10_14_x86_64.whl#sha256=e3ec18cbb196eb45bc540554be9709bb7ac354f47ea67bb012ebcd145a09a78a (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp36-cp36m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/21/27/1141a99caf779ba0e11071a82d93ba67e3db80a1c9ac53dec13286cea41f/infomap-2.6.1-cp36-cp36m-win_amd64.whl#sha256=b3e716e814586848b8ab30229370430125535f59a67b41a0150fb092e1ca2e69 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/0a/53/bd26a794fb4c791dcfcb55e4b17158af7a26a02be0ed223ce709ec036059/infomap-2.6.1-cp37-cp37m-macosx_10_15_x86_64.whl#sha256=7cb54ed5402dcc5e7358ca6a1e1c54965480cb425826124b78fade8100ab24f0 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp37-cp37m-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/f5/ff/95e4697aaa1833e4d77780ed337a41fa996ef64571c7ae53f917e46b4886/infomap-2.6.1-cp37-cp37m-win_amd64.whl#sha256=6059d6bff0ca989533da84f2d4d93796da58e0f69ce739f2f6785f25a3ad7664 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-macosx_10_15_x86_64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/e3/af/82c0e960a063f4106fe4b7dd63a6212e2787c81d1d270a4ba8361bfd5e38/infomap-2.6.1-cp38-cp38-macosx_10_15_x86_64.whl#sha256=4252138f48c3998a828f3c653c95483911de6b080549ca337338a134b7722667 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Skipping link: none of the wheel's tags (cp38-cp38-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/20/1d/02919826f18a5136f0d082e55c3b2f93f2a9df580362336283c2bcd9aec0/infomap-2.6.1-cp38-cp38-win_amd64.whl#sha256=5d671eee491d6e4454aa7bf433695fc660054b4e73db049c5c7eb47b7ccd7635 (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/4f/01/02cfa9f122ed09dab797d4f916d7ba26abbce65f7bd6f5abe9b4c5ce3a1d/infomap-2.6.1-cp39-cp39-macosx_10_15_x86_64.whl#sha256=66161510b5a9c352b17819824895fdc16d1250108cdf0da1a66d6ea5c5fdbfb5 (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.6.1
  Skipping link: none of the wheel's tags (cp39-cp39-win_amd64) are compatible (run pip debug --verbose to show compatible tags): https://files.pythonhosted.org/packages/10/f5/57ea6e8e00c269a64f09f0d2dfde6355bd468d6c5cc90d3dcc6c779c89e7/infomap-2.6.1-cp39-cp39-win_amd64.whl#sha256=6f524476965bfa25087af037ed7813958e3d0d301641ea3c12fffc810101774d (from https://pypi.org/simple/infomap/) (requires-python:>=3)
  Found link https://files.pythonhosted.org/packages/76/72/dbe4321d6952af852a8296070d59dae11b74019b94829de066f7ec31e9ea/infomap-2.6.1.tar.gz#sha256=5fb76e8845b41c80e8a1bc522d518e5b233a1c893db11ebc6a5b3dc68ada711b (from https://pypi.org/simple/infomap/) (requires-python:>=3), version: 2.6.1
Skipping link: not a file: https://pypi.org/simple/infomap/
Given no hashes to check 55 links for project 'infomap': discarding no candidates
Collecting infomap
  Created temporary directory: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-unpack-ja15i4l_
  Starting new HTTPS connection (1): files.pythonhosted.org:443
  https://files.pythonhosted.org:443 "GET /packages/4f/01/02cfa9f122ed09dab797d4f916d7ba26abbce65f7bd6f5abe9b4c5ce3a1d/infomap-2.6.1-cp39-cp39-macosx_10_15_x86_64.whl HTTP/1.1" 200 717767
  Downloading infomap-2.6.1-cp39-cp39-macosx_10_15_x86_64.whl (717 kB)
     |████████████████████████████████| 717 kB 2.9 MB/s 
  Added infomap from https://files.pythonhosted.org/packages/4f/01/02cfa9f122ed09dab797d4f916d7ba26abbce65f7bd6f5abe9b4c5ce3a1d/infomap-2.6.1-cp39-cp39-macosx_10_15_x86_64.whl#sha256=66161510b5a9c352b17819824895fdc16d1250108cdf0da1a66d6ea5c5fdbfb5 to build tracker '/private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-req-tracker-_mieb17w'
  Removed infomap from https://files.pythonhosted.org/packages/4f/01/02cfa9f122ed09dab797d4f916d7ba26abbce65f7bd6f5abe9b4c5ce3a1d/infomap-2.6.1-cp39-cp39-macosx_10_15_x86_64.whl#sha256=66161510b5a9c352b17819824895fdc16d1250108cdf0da1a66d6ea5c5fdbfb5 from build tracker '/private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-req-tracker-_mieb17w'
Created temporary directory: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-unpack-akp1oz30
Installing collected packages: infomap
  Attempting uninstall: infomap
    Found existing installation: infomap 2.6.1
    Uninstalling infomap-2.6.1:
      Created temporary directory: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-uninstall-ol6dkp0h
      Removing file or directory /Users/matilde/opt/anaconda3/bin/infomap
      Created temporary directory: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-uninstall-bdz0_o7f
      Removing file or directory /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/__pycache__/infomap.cpython-39.pyc
      Removing file or directory /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/__pycache__/package_meta.cpython-39.pyc
      Created temporary directory: /private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-uninstall-jm33hkoc
      Removing file or directory /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/_infomap.cpython-39-darwin.so
      Created temporary directory: /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/~nfomap-2.6.1.dist-info
      Removing file or directory /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/infomap-2.6.1.dist-info/
      Removing file or directory /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/infomap.py
      Removing file or directory /Users/matilde/opt/anaconda3/lib/python3.9/site-packages/package_meta.py
      Successfully uninstalled infomap-2.6.1

  changing mode of /Users/matilde/opt/anaconda3/bin/infomap to 755
Successfully installed infomap-2.6.1
1 location(s) to search for versions of pip:
* https://pypi.org/simple/pip/
Fetching project page and analyzing links: https://pypi.org/simple/pip/
Getting page https://pypi.org/simple/pip/
Found index url https://pypi.org/simple
Starting new HTTPS connection (1): pypi.org:443
https://pypi.org:443 "GET /simple/pip/ HTTP/1.1" 200 20574
  Found link https://files.pythonhosted.org/packages/3d/9d/1e313763bdfb6a48977b65829c6ce2a43eaae29ea2f907c8bbef024a7219/pip-0.2.tar.gz#sha256=88bb8d029e1bf4acd0e04d300104b7440086f94cc1ce1c5c3c31e3293aee1f81 (from https://pypi.org/simple/pip/), version: 0.2
  Found link https://files.pythonhosted.org/packages/18/ad/c0fe6cdfe1643a19ef027c7168572dac6283b80a384ddf21b75b921877da/pip-0.2.1.tar.gz#sha256=83522005c1266cc2de97e65072ff7554ac0f30ad369c3b02ff3a764b962048da (from https://pypi.org/simple/pip/), version: 0.2.1
  Found link https://files.pythonhosted.org/packages/17/05/f66144ef69b436d07f8eeeb28b7f77137f80de4bf60349ec6f0f9509e801/pip-0.3.tar.gz#sha256=183c72455cb7f8860ac1376f8c4f14d7f545aeab8ee7c22cd4caf79f35a2ed47 (from https://pypi.org/simple/pip/), version: 0.3
  Found link https://files.pythonhosted.org/packages/0a/bb/d087c9a1415f8726e683791c0b2943c53f2b76e69f527f2e2b2e9f9e7b5c/pip-0.3.1.tar.gz#sha256=34ce534f17065c78f980702928e988a6b6b2d8a9851aae5f1571a1feb9bb58d8 (from https://pypi.org/simple/pip/), version: 0.3.1
  Found link https://files.pythonhosted.org/packages/cf/c3/153571aaac6cf999f4bb09c019b1ff379b7b599ea833813a41c784eec995/pip-0.4.tar.gz#sha256=28fc67558874f71fddda7168f73595f1650523dce3bc5bf189713ecdfc1e456e (from https://pypi.org/simple/pip/), version: 0.4
  Found link https://files.pythonhosted.org/packages/8d/c7/f05c87812fa5d9562ecbc5f4f1fc1570444f53c81c834a7f662af406e3c1/pip-0.5.tar.gz#sha256=328d8412782f22568508a0d0c78a49c9920a82e44c8dfca49954fe525c152b2a (from https://pypi.org/simple/pip/), version: 0.5
  Found link https://files.pythonhosted.org/packages/9a/aa/f536b6d14fe03343367da2ff44eee28f340ae650cd017ca088b6be13084a/pip-0.5.1.tar.gz#sha256=e27650538c41fe1007a41abd4cfd0f905b822622cbe1f8e7e09d1215af207694 (from https://pypi.org/simple/pip/), version: 0.5.1
  Found link https://files.pythonhosted.org/packages/db/e6/fdf7be8a17b032c533d3f91e91e2c63dd81d3627cbe4113248a00c2d39d8/pip-0.6.tar.gz#sha256=4cf47db6815b2f435d1f44e1f35ff04823043f6161f7df9aec71a123b0c47f0d (from https://pypi.org/simple/pip/), version: 0.6
  Found link https://files.pythonhosted.org/packages/91/cd/105f4d3c75d0ae18e12623acc96f42168aaba408dd6e43c4505aa21f8e37/pip-0.6.1.tar.gz#sha256=efe47e84ffeb0ea4804f9858b8a94bebd07f5452f907ebed36d03aed06a9f9ec (from https://pypi.org/simple/pip/), version: 0.6.1
  Found link https://files.pythonhosted.org/packages/1c/c7/c0e1a9413c37828faf290f29a85a4d6034c145cc04bf1622ba8beb662ad8/pip-0.6.2.tar.gz#sha256=1c1a504d7e70d2c24246f95bd16e3d5fcec740fd144df69a407bf65a2ee67586 (from https://pypi.org/simple/pip/), version: 0.6.2
  Found link https://files.pythonhosted.org/packages/3f/af/c4b9d49fb0f286996b28dbc0955c3ad359794697eb98e0e69863908070b0/pip-0.6.3.tar.gz#sha256=1a6df71eb29b98cba11bde6d6a0d8c6dd8b0518e74ceb71fb31ea4fbb42fd313 (from https://pypi.org/simple/pip/), version: 0.6.3
  Found link https://files.pythonhosted.org/packages/ec/7a/6fe91ff0079ad0437830957c459d52f3923e516f5b453218f2a93d09a427/pip-0.7.tar.gz#sha256=ceaea0b9e494d893c8a191895301b79c1db33e41f14d3ad93e3d28a8b4e9bf27 (from https://pypi.org/simple/pip/), version: 0.7
  Found link https://files.pythonhosted.org/packages/a5/63/11303863c2f5e9d9a15d89fcf7513a4b60987007d418862e0fb65c09fff7/pip-0.7.1.tar.gz#sha256=f54f05aa17edd0036de433c44892c8fedb1fd2871c97829838feb995818d24c3 (from https://pypi.org/simple/pip/), version: 0.7.1
  Found link https://files.pythonhosted.org/packages/cd/a9/1debaa96bbc1005c1c8ad3b79fec58c198d35121546ea2e858ce0894268a/pip-0.7.2.tar.gz#sha256=98df2eb779358412bbbae75980171ae85deebc846d87e244d086520b1212da09 (from https://pypi.org/simple/pip/), version: 0.7.2
  Found link https://files.pythonhosted.org/packages/74/54/f785c327fb3d163560a879b36edae5c78ee07806be282c9d4807f6be7dd1/pip-0.8.tar.gz#sha256=9017e4484a212dd4e1a43dd9f039dd7fc8338d4eea1c339d5ae1c80726de5b0f (from https://pypi.org/simple/pip/), version: 0.8
  Found link https://files.pythonhosted.org/packages/5c/79/5e8381cc3078bae92166f2ba96de8355e8c181926505ba8882f7b099a500/pip-0.8.1.tar.gz#sha256=7176a87f35675f6468341212f3b959bb51d23ea66eb1c3692bf746c45c716fa2 (from https://pypi.org/simple/pip/), version: 0.8.1
  Found link https://files.pythonhosted.org/packages/17/3e/0a98ab032991518741e7e712a719633e6ae160f51b3d3e855194530fd308/pip-0.8.2.tar.gz#sha256=f80a3549c048bc3bbcb47844826e9c7c6fcd87e77b92bef0d9e66d1b397c4962 (from https://pypi.org/simple/pip/), version: 0.8.2
  Found link https://files.pythonhosted.org/packages/f7/9a/943fc6d879ed7220bac2e7e53096bfe78abec88d77f2f516400e0129679e/pip-0.8.3.tar.gz#sha256=1be2e18edd38aa75b5e4ef38a99ec33ba9247177cfcb4a6d2d2b3e73430e3001 (from https://pypi.org/simple/pip/), version: 0.8.3
  Found link https://files.pythonhosted.org/packages/24/33/6eb675fb6db7b71d69d6928b33dea61b8bf5cfe1e5649be70ec84ce2fc09/pip-1.0.tar.gz#sha256=34ba07e2d14ba86d5088ba896ac80bed845a9b276ab8acb279b8d99bc77fec8e (from https://pypi.org/simple/pip/), version: 1.0
  Found link https://files.pythonhosted.org/packages/10/d9/f584e6107ef98ad7eaaaa5d0f756bfee12561fa6a4712ffdb7209e0e1fd4/pip-1.0.1.tar.gz#sha256=37d2f18213d3845d2038dd3686bc71fc12bb41ad66c945a8b0dfec2879f3497b (from https://pypi.org/simple/pip/), version: 1.0.1
  Found link https://files.pythonhosted.org/packages/16/90/5e6f80364d8a656f60681dfb7330298edef292d43e1499bcb3a4c71ff0b9/pip-1.0.2.tar.gz#sha256=a6ed9b36aac2f121c01a2c9e0307a9e4d9438d100a407db701ac65479a3335d2 (from https://pypi.org/simple/pip/), version: 1.0.2
  Found link https://files.pythonhosted.org/packages/25/57/0d42cf5307d79913a082c5c4397d46f3793bc35e1138a694136d6e31be99/pip-1.1.tar.gz#sha256=993804bb947d18508acee02141281c77d27677f8c14eaa64d6287a1c53ef01c8 (from https://pypi.org/simple/pip/), version: 1.1
  Found link https://files.pythonhosted.org/packages/ba/c3/4e1f892f41aaa217fe0d1f827fa05928783349c69f3cc06fdd68e112678a/pip-1.2.tar.gz#sha256=2b168f1987403f1dc6996a1f22a6f6637b751b7ab6ff27e78380b8d6e70aa314 (from https://pypi.org/simple/pip/), version: 1.2
  Found link https://files.pythonhosted.org/packages/c3/a2/a63244da32afd9ce9a8ca1bd86e71610039adea8b8314046ebe5047527a6/pip-1.2.1.tar.gz#sha256=12a9302acfca62cdc7bc5d83386cac3e0581db61ac39acdb3a4e766a16b88eb1 (from https://pypi.org/simple/pip/), version: 1.2.1
  Found link https://files.pythonhosted.org/packages/00/45/69d4f2602b80550bfb26cfd2f62c2f05b3b5c7352705d3766cd1e5b27648/pip-1.3.tar.gz#sha256=d6a13c5be316cb21a0243047c7f163f47e88973ebccff8d32e63ca1bf4d9321c (from https://pypi.org/simple/pip/), version: 1.3
  Found link https://files.pythonhosted.org/packages/5b/ce/f5b98104f1c10d868936c25f7c597f492d4371aa9ad5fb61a94954ee7208/pip-1.3.1.tar.gz#sha256=145eaa5d1ea1b062663da1f3a97780d7edea4c63c68a37c463b1deedf7bb4957 (from https://pypi.org/simple/pip/), version: 1.3.1
  Found link https://files.pythonhosted.org/packages/5f/d0/3b3958f6a58783bae44158b2c4c7827ae89abaecdd4bed12cff402620b9a/pip-1.4.tar.gz#sha256=1fd43cbf07d95ddcecbb795c97a1674b3ddb711bb4a67661284a5aa765aa1b97 (from https://pypi.org/simple/pip/), version: 1.4
  Found link https://files.pythonhosted.org/packages/3f/f8/da390e0df72fb61d176b25a4b95262e3dcc14bda0ad25ac64d56db38b667/pip-1.4.1.tar.gz#sha256=4e7a06554711a624c35d0c646f63674b7f6bfc7f80221bf1eb1f631bd890d04e (from https://pypi.org/simple/pip/), version: 1.4.1
  Found link https://files.pythonhosted.org/packages/4f/7d/e53bc80667378125a9e07d4929a61b0bd7128a1129dbe6f07bb3228652a3/pip-1.5.tar.gz#sha256=25f81d1a0e55d3b1709818dd57fdfb954b028f229f09bd69cb0bc80a8e03e048 (from https://pypi.org/simple/pip/), version: 1.5
  Found link https://files.pythonhosted.org/packages/44/5d/1dca53b5de6d287e7eb99bd174bb022eb6cb0d6ca6e19ca6b16655dde8c2/pip-1.5.1-py2.py3-none-any.whl#sha256=00960db3b0b8724dd37fe37cfb9c72ecb8f59fab9db7d17c5c1e89a1adab49ce (from https://pypi.org/simple/pip/), version: 1.5.1
  Found link https://files.pythonhosted.org/packages/21/3f/d86a600c9b2f41a75caacf768a24130f343def97652de2345da15ef7911f/pip-1.5.1.tar.gz#sha256=e60e936fbc101d56668c6134c1f2b5b40fcbec8b4fc4ca7fc34842b6b4c5c130 (from https://pypi.org/simple/pip/), version: 1.5.1
  Found link https://files.pythonhosted.org/packages/3d/1f/227d77d5e9ed2df5162de4ba3616799a351eccb1ecd668ae824dd26153a1/pip-1.5.2-py2.py3-none-any.whl#sha256=6903909ccdcdbc3297b74118590e71344d6d262827acd1f5c0e2fcfce9807499 (from https://pypi.org/simple/pip/), version: 1.5.2
  Found link https://files.pythonhosted.org/packages/ed/94/391a003107f6ec997c314199d03bff1c105af758ee490e3255353574487b/pip-1.5.2.tar.gz#sha256=2a8a3e08e652d3a40edbb39264bf01f8ff3c32520a79113357cca1f30533f738 (from https://pypi.org/simple/pip/), version: 1.5.2
  Found link https://files.pythonhosted.org/packages/df/e9/bdb53d44fad1465b43edaf6bc7dd3027ed5af81405cc97603fdff0721ebb/pip-1.5.3-py2.py3-none-any.whl#sha256=f0037aed3ce6cf96b9e9117d42e967a74bea9ebe19088a2fdea5de93d5762fee (from https://pypi.org/simple/pip/), version: 1.5.3
  Found link https://files.pythonhosted.org/packages/55/de/671a48ad313c808623041fc475f7c8f7610401d9f573f06b40eeb84e74e3/pip-1.5.3.tar.gz#sha256=dc53b4d28b88556a37cd73052b6d1d08cc644c6724e37c4d38a2e3c03c5440b2 (from https://pypi.org/simple/pip/), version: 1.5.3
  Found link https://files.pythonhosted.org/packages/a9/9a/9aa19fe00de4c025562e5fb3796ff8520165a7dd1a5662c6ec9816e1ae99/pip-1.5.4-py2.py3-none-any.whl#sha256=fb7282556a42e84464f2e963a859ac4012d8134ba6218b70c1d82d145fcfa82f (from https://pypi.org/simple/pip/), version: 1.5.4
  Found link https://files.pythonhosted.org/packages/78/d8/6e58a7130d457edadb753a0ea5708e411c100c7e94e72ad4802feeef735c/pip-1.5.4.tar.gz#sha256=70208a250bb4afdbbdd74c3ac35d4ab9ba1eb6852d02567a6a87f2f5104e30b9 (from https://pypi.org/simple/pip/), version: 1.5.4
  Found link https://files.pythonhosted.org/packages/ce/c2/10d996b9c51b126a9f0bb9e14a9edcdd5c88888323c0685bb9b392b6c47c/pip-1.5.5-py2.py3-none-any.whl#sha256=fe7a5808190067b2598d85def9b83db46e5d64a00848ad843e107c36e1db4ae6 (from https://pypi.org/simple/pip/), version: 1.5.5
  Found link https://files.pythonhosted.org/packages/88/01/a442fde40bd9aaf837612536f16ab751fac628807fd718690795b8ade77d/pip-1.5.5.tar.gz#sha256=4b7f5124364ae9b5ba833dcd8813a84c1c06fba1d7c8543323c7af4b33188eca (from https://pypi.org/simple/pip/), version: 1.5.5
  Found link https://files.pythonhosted.org/packages/3f/08/7347ca4021e7fe0f1ab8f93cbc7d2a7a7350012300ad0e0227d55625e2b8/pip-1.5.6-py2.py3-none-any.whl#sha256=fbc1351ffedf09ca7560428758845a88d648b9730b63ce9e5df53a7c89f039a4 (from https://pypi.org/simple/pip/), version: 1.5.6
  Found link https://files.pythonhosted.org/packages/45/db/4fb9a456b4ec4d3b701456ef562b9d72d76b6358e0c1463d17db18c5b772/pip-1.5.6.tar.gz#sha256=b1a4ae66baf21b7eb05a5e4f37c50c2706fa28ea1f8780ce8efe14dcd9f1726c (from https://pypi.org/simple/pip/), version: 1.5.6
  Found link https://files.pythonhosted.org/packages/dc/7c/21191b5944b917b66e4e4e06d74f668d814b6e8a3ff7acd874479b6f6b3d/pip-6.0-py2.py3-none-any.whl#sha256=5ec6732505bd8be49fe1f8ad557b88253ffb085736396df4d6bea753fc2a8f2c (from https://pypi.org/simple/pip/), version: 6.0
  Found link https://files.pythonhosted.org/packages/38/fd/065c66a88398f240e344fdf496b9707f92d75f88eedc3d10ff847b28a657/pip-6.0.tar.gz#sha256=6103897f1bb68d3f933edd60f3e3830c4ea6b8abf7a4b500db148921b11f6c9b (from https://pypi.org/simple/pip/), version: 6.0
  Found link https://files.pythonhosted.org/packages/e9/7a/cdbc1a12ed52410d557e48d4646f4543e9e991ff32d2374dc6db849aa617/pip-6.0.1-py2.py3-none-any.whl#sha256=322aea7d1f7b9ee68ad87ac4704cad5df97f77e70668c0bd18f964c5daa78173 (from https://pypi.org/simple/pip/), version: 6.0.1
  Found link https://files.pythonhosted.org/packages/4d/c3/8675b90cd89b9b222062f4f6c7e9d48b0387f5b35cbf747a74403a883e56/pip-6.0.1.tar.gz#sha256=fa2f7c68da4a405d673aa38542f9df009d60026db4f532429ac9cbfbda1f959d (from https://pypi.org/simple/pip/), version: 6.0.1
  Found link https://files.pythonhosted.org/packages/71/3c/b5a521e5e99cfff091e282231591f21193fd80de079ec5fb8ed9c6614044/pip-6.0.2-py2.py3-none-any.whl#sha256=7d17b0f267f7c9cd17cd2924bbbe2b4a3d407322c0e09084ca3f1295c1fed50d (from https://pypi.org/simple/pip/), version: 6.0.2
  Found link https://files.pythonhosted.org/packages/4c/5a/f9e8e3de0153282c7cb54a9b991af225536ac914bac858ca664cf883bb3e/pip-6.0.2.tar.gz#sha256=6fa90667706a679e3dc75b27a51fddafa64401c45e96f8ae6c20978183290077 (from https://pypi.org/simple/pip/), version: 6.0.2
  Found link https://files.pythonhosted.org/packages/73/cb/3eebf42003791df29219a3dfa1874572aa16114b44c9b1b0ac66bf96e8c0/pip-6.0.3-py2.py3-none-any.whl#sha256=b72655b6ac6aef1c86dd07f51e8ace8d7aabd6a1c4ff88db87155276fa32a073 (from https://pypi.org/simple/pip/), version: 6.0.3
  Found link https://files.pythonhosted.org/packages/ce/63/8d99ae60d11ae1a65f5d4fc39a529a598bd3b8e067132210cb0c4d9e9f74/pip-6.0.3.tar.gz#sha256=b091a35f5fa0faffac0b27b97e1e1e93ffe63b463c2ea8dbde0c1fb987933614 (from https://pypi.org/simple/pip/), version: 6.0.3
  Found link https://files.pythonhosted.org/packages/c5/0e/c974206726542bc495fc7443dd97834a6d14c2f0cba183fcfcd01075225a/pip-6.0.4-py2.py3-none-any.whl#sha256=8dfd95de29a7a3bb1e7d368cc83d566938eb210b04d553ebfe5e3a422f4aec65 (from https://pypi.org/simple/pip/), version: 6.0.4
  Found link https://files.pythonhosted.org/packages/02/a1/c90f19910ee153d7a0efca7216758121118d7e93084276541383fe9ca82e/pip-6.0.4.tar.gz#sha256=1dbbff9c369e510c7468ab68ba52c003f68f83c99c2f8259acd51099e8799f1e (from https://pypi.org/simple/pip/), version: 6.0.4
  Found link https://files.pythonhosted.org/packages/e9/1b/c6a375a337fb576784cdea3700f6c3eaf1420f0a01458e6e034cc178a84a/pip-6.0.5-py2.py3-none-any.whl#sha256=b2c20e3a2a43b2bbb1d19ad98be27eccc7b0f0ece016da602ccaa757a862b0e2 (from https://pypi.org/simple/pip/), version: 6.0.5
  Found link https://files.pythonhosted.org/packages/19/f2/58628768f618c8c9fea878e0fb97730c0b8a838d3ab3f325768bf12dac94/pip-6.0.5.tar.gz#sha256=3bf42d28be9085ab2e9aecfd69a6da2d31563fe833304bf71a620a30c38ab8a2 (from https://pypi.org/simple/pip/), version: 6.0.5
  Found link https://files.pythonhosted.org/packages/64/fc/4a49ccb18f55a0ceeb76e8d554bd4563217117492997825d194ed0017cc1/pip-6.0.6-py2.py3-none-any.whl#sha256=fb04f8afe1ba57626783f0c8e2f3d46bbaebaa446fcf124f434e968a2fee595e (from https://pypi.org/simple/pip/), version: 6.0.6
  Found link https://files.pythonhosted.org/packages/f6/ce/d9e4e178b66c766c117f62ddf4fece019ef9d50127a8926d2f60300d615e/pip-6.0.6.tar.gz#sha256=3a14091299dcdb9bab9e9004ae67ac401f2b1b14a7c98de074ca74fdddf4bfa0 (from https://pypi.org/simple/pip/), version: 6.0.6
  Found link https://files.pythonhosted.org/packages/7a/8e/2bbd4fcf3ee06ee90ded5f39ec12f53165dfdb9ef25a981717ad38a16670/pip-6.0.7-py2.py3-none-any.whl#sha256=93a326304c7db749896bcef822bbbac1ab29dad5651c6d732e245975239890e6 (from https://pypi.org/simple/pip/), version: 6.0.7
  Found link https://files.pythonhosted.org/packages/52/85/b160ebdaa84378df6bb0176d4eed9f57edca662446174eead7a9e2e566d6/pip-6.0.7.tar.gz#sha256=35a5a43ac6b7af83ed47ea5731a365f43d350a3a7267e039e5f06b61d42ab3c2 (from https://pypi.org/simple/pip/), version: 6.0.7
  Found link https://files.pythonhosted.org/packages/63/65/55b71647adec1ad595bf0e5d76d028506dfc002df30c256f022ff7a660a5/pip-6.0.8-py2.py3-none-any.whl#sha256=3c22b0a8ff92727bd737a82f72700790591f177541df08c07bc1f90d6b72ac19 (from https://pypi.org/simple/pip/), version: 6.0.8
  Found link https://files.pythonhosted.org/packages/ef/8a/e3a980bc0a7f791d72c1302f65763ed300f2e14c907ac033e01b44c79e5e/pip-6.0.8.tar.gz#sha256=0d58487a1b7f5be2e5e965c11afbea1dc44ecec8069de03491a4d0d6c85f4551 (from https://pypi.org/simple/pip/), version: 6.0.8
  Found link https://files.pythonhosted.org/packages/24/fb/8a56a46243514681e569bbafd8146fa383476c4b7c725c8598c452366f31/pip-6.1.0-py2.py3-none-any.whl#sha256=435a018f6d29e34d4f901bf4e6860d8a5fa1816b68d62008c18ca062a306db31 (from https://pypi.org/simple/pip/), version: 6.1.0
  Found link https://files.pythonhosted.org/packages/6c/84/432eb60bbcb414b9cdfcb135d5f4925e253c74e7d6916ada79990d6cc1a0/pip-6.1.0.tar.gz#sha256=89f120e2ab3d25ab70c36eb28ad4f280fc9ba71736e74d3055f609c1f9173768 (from https://pypi.org/simple/pip/), version: 6.1.0
  Found link https://files.pythonhosted.org/packages/67/f0/ba0fb41dbdbfc4aa3e0c16b40269aca6b9e3d59cacdb646218aa2e9b1d2c/pip-6.1.1-py2.py3-none-any.whl#sha256=a67e54aa0f26b6d62ccec5cc6735eff205dd0fed075f56ac3d3111e91e4467fc (from https://pypi.org/simple/pip/), version: 6.1.1
  Found link https://files.pythonhosted.org/packages/bf/85/871c126b50b8ee0b9819e8a63b614aedd264577e73478caedcd447e8f28c/pip-6.1.1.tar.gz#sha256=89f3b626d225e08e7f20d85044afa40f612eb3284484169813dc2d0631f2a556 (from https://pypi.org/simple/pip/), version: 6.1.1
  Found link https://files.pythonhosted.org/packages/5a/9b/56d3c18d0784d5f2bbd446ea2dc7ffa7476c35e3dc223741d20cfee3b185/pip-7.0.0-py2.py3-none-any.whl#sha256=309c48399c7d68501a10ef206abd6e5c541fedbf84b95435d9063bd454b39df7 (from https://pypi.org/simple/pip/), version: 7.0.0
  Found link https://files.pythonhosted.org/packages/c6/16/6475b142927ca5d03e3b7968efa5b0edd103e4684ecfde181a25f6fa2505/pip-7.0.0.tar.gz#sha256=7b46bfc1b95494731de306a688e2a7bc056d7fa7ad27e026908fb2ae67fed23d (from https://pypi.org/simple/pip/), version: 7.0.0
  Found link https://files.pythonhosted.org/packages/5a/10/bb7a32c335bceba636aa673a4c977effa1e73a79f88856459486d8d670cf/pip-7.0.1-py2.py3-none-any.whl#sha256=d26b8573ba1ac1ec99a9bdbdffee2ff2b06c7790815211d0eb4dc1462a089705 (from https://pypi.org/simple/pip/), version: 7.0.1
  Found link https://files.pythonhosted.org/packages/4a/83/9ae4362a80739657e0c8bb628ea3fa0214a9aba7c8590dacc301ea293f73/pip-7.0.1.tar.gz#sha256=cfec177552fdd0b2d12b72651c8e874f955b4c62c1c2c9f2588cbdc1c0d0d416 (from https://pypi.org/simple/pip/), version: 7.0.1
  Found link https://files.pythonhosted.org/packages/64/7f/7107800ae0919a80afbf1ecba21b90890431c3ee79d700adac3c79cb6497/pip-7.0.2-py2.py3-none-any.whl#sha256=83c869c5ab7113866e2d69641ec470d47f0faae68ca4550a289a4d3db515ad65 (from https://pypi.org/simple/pip/), version: 7.0.2
  Found link https://files.pythonhosted.org/packages/75/b1/66532c273bca0133e42c3b4540a1609289f16e3046f1830f18c60794d661/pip-7.0.2.tar.gz#sha256=ba28fa60b573a9444e7b78ccb3b0f261d1f66f46d20403f9dce37b18a6aed405 (from https://pypi.org/simple/pip/), version: 7.0.2
  Found link https://files.pythonhosted.org/packages/96/76/33a598ae42dd0554207d83c7acc60e3b166dbde723cbf282f1f73b7a127c/pip-7.0.3-py2.py3-none-any.whl#sha256=7b1cb03e827d58d2d05e68ea96a9e27487ed4b0afcd951ac6e40847ce94f0738 (from https://pypi.org/simple/pip/), version: 7.0.3
  Found link https://files.pythonhosted.org/packages/35/59/5b23115758ba0f2fc465c459611865173ef006202ba83f662d1f58ed2fb8/pip-7.0.3.tar.gz#sha256=b4c598825a6f6dc2cac65968feb28e6be6c1f7f1408493c60a07eaa731a0affd (from https://pypi.org/simple/pip/), version: 7.0.3
  Found link https://files.pythonhosted.org/packages/f7/c0/9f8dac88326609b4b12b304e8382f64f7d5af7735a00d2fac36cf135fc30/pip-7.1.0-py2.py3-none-any.whl#sha256=80c29f899d3a00a448d65f8158544d22935baec7159af8da1a4fa1490ced481d (from https://pypi.org/simple/pip/), version: 7.1.0
  Found link https://files.pythonhosted.org/packages/7e/71/3c6ece07a9a885650aa6607b0ebfdf6fc9a3ef8691c44b5e724e4eee7bf2/pip-7.1.0.tar.gz#sha256=d5275ba3221182a5dd1b6bcfbfc5ec277fb399dd23226d6fa018048f7e0f10f2 (from https://pypi.org/simple/pip/), version: 7.1.0
  Found link https://files.pythonhosted.org/packages/1c/56/094d563c508917081bccff365e4f621ba33073c1c13aca9267a43cfcaf13/pip-7.1.1-py2.py3-none-any.whl#sha256=ce13000878d34c1178af76cb8cf269e232c00508c78ed46c165dd5b0881615f4 (from https://pypi.org/simple/pip/), version: 7.1.1
  Found link https://files.pythonhosted.org/packages/3b/bb/b3f2a95494fd3f01d3b3ae530e7c0e910dc25e88e30787b0a5e10cbc0640/pip-7.1.1.tar.gz#sha256=b22fe3c93a13fc7c04f145a42fd2ad50a9e3e1b8a7eed2e2b1c66e540a0951da (from https://pypi.org/simple/pip/), version: 7.1.1
  Found link https://files.pythonhosted.org/packages/b2/d0/cd115fe345dd6f07ec1c780020a7dfe74966fceeb171e0f20d1d4905b0b7/pip-7.1.2-py2.py3-none-any.whl#sha256=b9d3983b5cce04f842175e30169d2f869ef12c3546fd274083a65eada4e9708c (from https://pypi.org/simple/pip/), version: 7.1.2
  Found link https://files.pythonhosted.org/packages/d0/92/1e8406c15d9372084a5bf79d96da3a0acc4e7fcf0b80020a4820897d2a5c/pip-7.1.2.tar.gz#sha256=ca047986f0528cfa975a14fb9f7f106271d4e0c3fe1ddced6c1db2e7ae57a477 (from https://pypi.org/simple/pip/), version: 7.1.2
  Found link https://files.pythonhosted.org/packages/00/ae/bddef02881ee09c6a01a0d6541aa6c75a226a4e68b041be93142befa0cd6/pip-8.0.0-py2.py3-none-any.whl#sha256=262ed1823eb7fbe3f18a9bedb4800e59c4ab9a6682aff8c37b5ee83ea840910b (from https://pypi.org/simple/pip/), version: 8.0.0
  Found link https://files.pythonhosted.org/packages/e3/2d/03c014d11e66628abf2fda5ca00f779cbe7b5292c5cd13d42a95b94aa9b8/pip-8.0.0.tar.gz#sha256=90112b296152f270cb8dddcd19b7b87488d9e002e8cf622e14c4da9c2f6319b1 (from https://pypi.org/simple/pip/), version: 8.0.0
  Found link https://files.pythonhosted.org/packages/45/9c/6f9a24917c860873e2ce7bd95b8f79897524353df51d5d920cd6b6c1ec33/pip-8.0.1-py2.py3-none-any.whl#sha256=dedaac846bc74e38a3253671f51a056331ffca1da70e3f48d8128f2aa0635bba (from https://pypi.org/simple/pip/), version: 8.0.1
  Found link https://files.pythonhosted.org/packages/ea/66/a3d6187bd307159fedf8575c0d9ee2294d13b1cdd11673ca812e6a2dda8f/pip-8.0.1.tar.gz#sha256=477c50b3e538a7ac0fa611fb8b877b04b33fb70d325b12a81b9dbf3eb1158a4d (from https://pypi.org/simple/pip/), version: 8.0.1
  Found link https://files.pythonhosted.org/packages/e7/a0/bd35f5f978a5e925953ce02fa0f078a232f0f10fcbe543d8cfc043f74fda/pip-8.0.2-py2.py3-none-any.whl#sha256=249a6f3194be8c2e8cb4d4be3f6fd16a9f1e3336218caffa8e7419e3816f9988 (from https://pypi.org/simple/pip/), version: 8.0.2
  Found link https://files.pythonhosted.org/packages/ce/15/ee1f9a84365423e9ef03d0f9ed0eba2fb00ac1fffdd33e7b52aea914d0f8/pip-8.0.2.tar.gz#sha256=46f4bd0d8dfd51125a554568d646fe4200a3c2c6c36b9f2d06d2212148439521 (from https://pypi.org/simple/pip/), version: 8.0.2
  Found link https://files.pythonhosted.org/packages/ae/d4/2b127310f5364610b74c28e2e6a40bc19e2d3c9a9a4e012d3e333e767c99/pip-8.0.3-py2.py3-none-any.whl#sha256=b0335bc837f9edb5aad03bd43d0973b084a1cbe616f8188dc23ba13234dbd552 (from https://pypi.org/simple/pip/), version: 8.0.3
  Found link https://files.pythonhosted.org/packages/22/f3/14bc87a4f6b5ec70b682765978a6f3105bf05b6781fa97e04d30138bd264/pip-8.0.3.tar.gz#sha256=30f98b66f3fe1069c529a491597d34a1c224a68640c82caf2ade5f88aa1405e8 (from https://pypi.org/simple/pip/), version: 8.0.3
  Found link https://files.pythonhosted.org/packages/1e/c7/78440b3fb882ed001e6e12d8770bd45e73d6eced4e57f7c072b829ce8a3d/pip-8.1.0-py2.py3-none-any.whl#sha256=a542b99e08002ead83200198e19a3983270357e1cb4fe704247990b5b35471dc (from https://pypi.org/simple/pip/), version: 8.1.0
  Found link https://files.pythonhosted.org/packages/3c/72/6981d5adf880adecb066a1a1a4c312a17f8d787a3b85446967964ac66d55/pip-8.1.0.tar.gz#sha256=d8faa75dd7d0737b16d50cd0a56dc91a631c79ecfd8d38b80f6ee929ec82043e (from https://pypi.org/simple/pip/), version: 8.1.0
  Found link https://files.pythonhosted.org/packages/31/6a/0f19a7edef6c8e5065f4346137cc2a08e22e141942d66af2e1e72d851462/pip-8.1.1-py2.py3-none-any.whl#sha256=44b9c342782ab905c042c207d995aa069edc02621ddbdc2b9f25954a0fdac25c (from https://pypi.org/simple/pip/), version: 8.1.1
  Found link https://files.pythonhosted.org/packages/41/27/9a8d24e1b55bd8c85e4d022da2922cb206f183e2d18fee4e320c9547e751/pip-8.1.1.tar.gz#sha256=3e78d3066aaeb633d185a57afdccf700aa2e660436b4af618bcb6ff0fa511798 (from https://pypi.org/simple/pip/), version: 8.1.1
  Found link https://files.pythonhosted.org/packages/9c/32/004ce0852e0a127f07f358b715015763273799bd798956fa930814b60f39/pip-8.1.2-py2.py3-none-any.whl#sha256=6464dd9809fb34fc8df2bf49553bb11dac4c13d2ffa7a4f8038ad86a4ccb92a1 (from https://pypi.org/simple/pip/), version: 8.1.2
  Found link https://files.pythonhosted.org/packages/e7/a8/7556133689add8d1a54c0b14aeff0acb03c64707ce100ecd53934da1aa13/pip-8.1.2.tar.gz#sha256=4d24b03ffa67638a3fa931c09fd9e0273ffa904e95ebebe7d4b1a54c93d7b732 (from https://pypi.org/simple/pip/), version: 8.1.2
  Found link https://files.pythonhosted.org/packages/3f/ef/935d9296acc4f48d1791ee56a73781271dce9712b059b475d3f5fa78487b/pip-9.0.0-py2.py3-none-any.whl#sha256=c856ac18ca01e7127456f831926dc67cc7d3ab663f4c13b1ec156e36db4de574 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*), version: 9.0.0
  Found link https://files.pythonhosted.org/packages/5e/53/eaef47e5e2f75677c9de0737acc84b659b78a71c4086f424f55346a341b5/pip-9.0.0.tar.gz#sha256=f62fb70e7e000e46fce12aaeca752e5281a5446977fe5a75ab4189a43b3f8793 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*), version: 9.0.0
  Found link https://files.pythonhosted.org/packages/b6/ac/7015eb97dc749283ffdec1c3a88ddb8ae03b8fad0f0e611408f196358da3/pip-9.0.1-py2.py3-none-any.whl#sha256=690b762c0a8460c303c089d5d0be034fb15a5ea2b75bdf565f40421f542fefb0 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*), version: 9.0.1
  Found link https://files.pythonhosted.org/packages/11/b6/abcb525026a4be042b486df43905d6893fb04f05aac21c32c638e939e447/pip-9.0.1.tar.gz#sha256=09f243e1a7b461f654c26a725fa373211bb7ff17a9300058b205c61658ca940d (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*), version: 9.0.1
  Found link https://files.pythonhosted.org/packages/e7/f9/e801dcea22886cd513f6bd2e8f7e581bd6f67bb8e8f1cd8e7b92d8539280/pip-9.0.2-py2.py3-none-any.whl#sha256=b135491ddb061f39719b8472d8abb59c613816a2b86069c332db74d1cd208ab2 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*), version: 9.0.2
  Found link https://files.pythonhosted.org/packages/e5/8f/3fc66461992dc9e9fcf5e005687d5f676729172dda640df2fd8b597a6da7/pip-9.0.2.tar.gz#sha256=88110a224e9d30e5d76592a0b2130ef10e7e67a6426e8617bb918fffbfe91fe5 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*), version: 9.0.2
  Found link https://files.pythonhosted.org/packages/ac/95/a05b56bb975efa78d3557efa36acaf9cf5d2fd0ee0062060493687432e03/pip-9.0.3-py2.py3-none-any.whl#sha256=c3ede34530e0e0b2381e7363aded78e0c33291654937e7373032fda04e8803e5 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*), version: 9.0.3
  Found link https://files.pythonhosted.org/packages/c4/44/e6b8056b6c8f2bfd1445cc9990f478930d8e3459e9dbf5b8e2d2922d64d3/pip-9.0.3.tar.gz#sha256=7bf48f9a693be1d58f49f7af7e0ae9fe29fd671cde8a55e6edca3581c4ef5796 (from https://pypi.org/simple/pip/) (requires-python:>=2.6,!=3.0.*,!=3.1.*,!=3.2.*), version: 9.0.3
  Found link https://files.pythonhosted.org/packages/4b/5a/8544ae02a5bd28464e03af045e8aabde20a7b02db1911a9159328e1eb25a/pip-10.0.0b1-py2.py3-none-any.whl#sha256=dbd5d24cd461be23429625085a36cc8732cbcac4d2aaf673031f80f6ac07d844 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*), version: 10.0.0b1
  Found link https://files.pythonhosted.org/packages/aa/6d/ffbb86abf18b750fb26f27eda7c7732df2aacaa669c420d2eb2ad6df3458/pip-10.0.0b1.tar.gz#sha256=8d6e63d8b99752e4b53f272b66f9cd7b59e2b288e9a863a61c48d167203a2656 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*), version: 10.0.0b1
  Found link https://files.pythonhosted.org/packages/97/72/1d514201e7d7fc7fff5aac3de9c7b892cd72fb4bf23fd983630df96f7412/pip-10.0.0b2-py2.py3-none-any.whl#sha256=79f55588912f1b2b4f86f96f11e329bb01b25a484e2204f245128b927b1038a7 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*), version: 10.0.0b2
  Found link https://files.pythonhosted.org/packages/32/67/572f642e6e42c580d3154964cfbab7d9322c23b0f417c6c01fdd206a2777/pip-10.0.0b2.tar.gz#sha256=ad6adec2150ce4aed8f6134d9b77d928fc848dbcb887fb1a455988cf99da5cae (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*), version: 10.0.0b2
  Found link https://files.pythonhosted.org/packages/62/a1/0d452b6901b0157a0134fd27ba89bf95a857fbda64ba52e1ca2cf61d8412/pip-10.0.0-py2.py3-none-any.whl#sha256=86a60a96d85e329962a9e6f6af612cbc11106293dbc83f119802b5bee9874cf3 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*), version: 10.0.0
  Found link https://files.pythonhosted.org/packages/e0/69/983a8e47d3dfb51e1463c1e962b2ccd1d74ec4e236e232625e353d830ed2/pip-10.0.0.tar.gz#sha256=f05a3eeea64bce94e85cc6671d679473d66288a4d37c3fcf983584954096b34f (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*), version: 10.0.0
  Found link https://files.pythonhosted.org/packages/0f/74/ecd13431bcc456ed390b44c8a6e917c1820365cbebcb6a8974d1cd045ab4/pip-10.0.1-py2.py3-none-any.whl#sha256=717cdffb2833be8409433a93746744b59505f42146e8d37de6c62b430e25d6d7 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*), version: 10.0.1
  Found link https://files.pythonhosted.org/packages/ae/e8/2340d46ecadb1692a1e455f13f75e596d4eab3d11a57446f08259dee8f02/pip-10.0.1.tar.gz#sha256=f2bd08e0cd1b06e10218feaf6fef299f473ba706582eb3bd9d52203fdbd7ee68 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*), version: 10.0.1
  Found link https://files.pythonhosted.org/packages/5f/25/e52d3f31441505a5f3af41213346e5b6c221c9e086a166f3703d2ddaf940/pip-18.0-py2.py3-none-any.whl#sha256=070e4bf493c7c2c9f6a08dd797dd3c066d64074c38e9e8a0fb4e6541f266d96c (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 18.0
  Found link https://files.pythonhosted.org/packages/69/81/52b68d0a4de760a2f1979b0931ba7889202f302072cc7a0d614211bc7579/pip-18.0.tar.gz#sha256=a0e11645ee37c90b40c46d607070c4fd583e2cd46231b1c06e389c5e814eed76 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 18.0
  Found link https://files.pythonhosted.org/packages/c2/d7/90f34cb0d83a6c5631cf71dfe64cc1054598c843a92b400e55675cc2ac37/pip-18.1-py2.py3-none-any.whl#sha256=7909d0a0932e88ea53a7014dfd14522ffef91a464daaaf5c573343852ef98550 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 18.1
  Found link https://files.pythonhosted.org/packages/45/ae/8a0ad77defb7cc903f09e551d88b443304a9bd6e6f124e75c0fbbf6de8f7/pip-18.1.tar.gz#sha256=c0a292bd977ef590379a3f05d7b7f65135487b67470f6281289a94e015650ea1 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 18.1
  Found link https://files.pythonhosted.org/packages/60/64/73b729587b6b0d13e690a7c3acd2231ee561e8dd28a58ae1b0409a5a2b20/pip-19.0-py2.py3-none-any.whl#sha256=249ab0de4c1cef3dba4cf3f8cca722a07fc447b1692acd9f84e19c646db04c9a (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.0
  Found link https://files.pythonhosted.org/packages/11/31/c483614095176ddfa06ac99c2af4171375053b270842c7865ca0b4438dc1/pip-19.0.tar.gz#sha256=c82bf8bc00c5732f0dd49ac1dea79b6242a1bd42a5012e308ed4f04369b17e54 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.0
  Found link https://files.pythonhosted.org/packages/46/dc/7fd5df840efb3e56c8b4f768793a237ec4ee59891959d6a215d63f727023/pip-19.0.1-py2.py3-none-any.whl#sha256=aae79c7afe895fb986ec751564f24d97df1331bb99cdfec6f70dada2f40c0044 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.0.1
  Found link https://files.pythonhosted.org/packages/c8/89/ad7f27938e59db1f0f55ce214087460f65048626e2226531ba6cb6da15f0/pip-19.0.1.tar.gz#sha256=e81ddd35e361b630e94abeda4a1eddd36d47a90e71eb00f38f46b57f787cd1a5 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.0.1
  Found link https://files.pythonhosted.org/packages/d7/41/34dd96bd33958e52cb4da2f1bf0818e396514fd4f4725a79199564cd0c20/pip-19.0.2-py2.py3-none-any.whl#sha256=6a59f1083a63851aeef60c7d68b119b46af11d9d803ddc1cf927b58edcd0b312 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.0.2
  Found link https://files.pythonhosted.org/packages/4c/4d/88bc9413da11702cbbace3ccc51350ae099bb351febae8acc85fec34f9af/pip-19.0.2.tar.gz#sha256=f851133f8b58283fa50d8c78675eb88d4ff4cde29b6c41205cd938b06338e0e5 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.0.2
  Found link https://files.pythonhosted.org/packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl#sha256=bd812612bbd8ba84159d9ddc0266b7fbce712fc9bc98c82dee5750546ec8ec64 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.0.3
  Found link https://files.pythonhosted.org/packages/36/fa/51ca4d57392e2f69397cd6e5af23da2a8d37884a605f9e3f2d3bfdc48397/pip-19.0.3.tar.gz#sha256=6e6f197a1abfb45118dbb878b5c859a0edbdd33fd250100bc015b67fded4b9f2 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.0.3
  Found link https://files.pythonhosted.org/packages/f9/fb/863012b13912709c13cf5cfdbfb304fa6c727659d6290438e1a88df9d848/pip-19.1-py2.py3-none-any.whl#sha256=8f59b6cf84584d7962d79fd1be7a8ec0eb198aa52ea864896551736b3614eee9 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.1
  Found link https://files.pythonhosted.org/packages/51/5f/802a04274843f634469ef299fcd273de4438386deb7b8681dd059f0ee3b7/pip-19.1.tar.gz#sha256=d9137cb543d8a4d73140a3282f6d777b2e786bb6abb8add3ac5b6539c82cd624 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.1
  Found link https://files.pythonhosted.org/packages/5c/e0/be401c003291b56efc55aeba6a80ab790d3d4cece2778288d65323009420/pip-19.1.1-py2.py3-none-any.whl#sha256=993134f0475471b91452ca029d4390dc8f298ac63a712814f101cd1b6db46676 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.1.1
  Found link https://files.pythonhosted.org/packages/93/ab/f86b61bef7ab14909bd7ec3cd2178feb0a1c86d451bc9bccd5a1aedcde5f/pip-19.1.1.tar.gz#sha256=44d3d7d3d30a1eb65c7e5ff1173cdf8f7467850605ac7cc3707b6064bddd0958 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*), version: 19.1.1
  Found link https://files.pythonhosted.org/packages/3a/6f/35de4f49ae5c7fdb2b64097ab195020fb48faa8ad3a85386ece6953c11b1/pip-19.2-py2.py3-none-any.whl#sha256=468c67b0b1120cd0329dc72972cf0651310783a922e7609f3102bd5fb4acbf17 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.2
  Found link https://files.pythonhosted.org/packages/41/13/b6e68eae78405af6e4e9a93319ae5bb371057786f1590b157341f7542d7d/pip-19.2.tar.gz#sha256=aa6fdd80d13caac75d92b5eced06778712859b1606ba92d62389c11be12b2dad (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.2
  Found link https://files.pythonhosted.org/packages/62/ca/94d32a6516ed197a491d17d46595ce58a83cbb2fca280414e57cd86b84dc/pip-19.2.1-py2.py3-none-any.whl#sha256=80d7452630a67c1e7763b5f0a515690f2c1e9ad06dda48e0ae85b7fdf2f59d97 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.2.1
  Found link https://files.pythonhosted.org/packages/8b/8a/1b2aadd922db1afe6bc107b03de41d6d37a28a5923383e60695fba24ae81/pip-19.2.1.tar.gz#sha256=258d702483dd749400aec59c23d638a5b2249ae28a0f478b6cab12ad45681a80 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.2.1
  Found link https://files.pythonhosted.org/packages/8d/07/f7d7ced2f97ca3098c16565efbe6b15fafcba53e8d9bdb431e09140514b0/pip-19.2.2-py2.py3-none-any.whl#sha256=4b956bd8b7b481fc5fa222637ff6d0823a327e5118178f1ec47618a480e61997 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.2.2
  Found link https://files.pythonhosted.org/packages/aa/1a/62fb0b95b1572c76dbc3cc31124a8b6866cbe9139eb7659ac7349457cf7c/pip-19.2.2.tar.gz#sha256=e05103825871e210d50a44c7e448587b0ed99dd775d3ef586304c58f40224a53 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.2.2
  Found link https://files.pythonhosted.org/packages/30/db/9e38760b32e3e7f40cce46dd5fb107b8c73840df38f0046d8e6514e675a1/pip-19.2.3-py2.py3-none-any.whl#sha256=340a0ba40fdeb16413914c0fcd8e0b4ebb0bf39a900ec80e11c05d836c05103f (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.2.3
  Found link https://files.pythonhosted.org/packages/00/9e/4c83a0950d8bdec0b4ca72afd2f9cea92d08eb7c1a768363f2ea458d08b4/pip-19.2.3.tar.gz#sha256=e7a31f147974362e6c82d84b91c7f2bdf57e4d3163d3d454e6c3e71944d67135 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.2.3
  Found link https://files.pythonhosted.org/packages/4a/08/6ca123073af4ebc4c5488a5bc8a010ac57aa39ce4d3c8a931ad504de4185/pip-19.3-py2.py3-none-any.whl#sha256=e100a7eccf085f0720b4478d3bb838e1c179b1e128ec01c0403f84e86e0e2dfb (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.3
  Found link https://files.pythonhosted.org/packages/af/7a/5dd1e6efc894613c432ce86f1011fcc3bbd8ac07dfeae6393b7b97f1de8b/pip-19.3.tar.gz#sha256=324d234b8f6124846b4e390df255cacbe09ce22791c3b714aa1ea6e44a4f2861 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.3
  Found link https://files.pythonhosted.org/packages/00/b6/9cfa56b4081ad13874b0c6f96af8ce16cfbc1cb06bedf8e9164ce5551ec1/pip-19.3.1-py2.py3-none-any.whl#sha256=6917c65fc3769ecdc61405d3dfd97afdedd75808d200b2838d7d961cebc0c2c7 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.3.1
  Found link https://files.pythonhosted.org/packages/ce/ea/9b445176a65ae4ba22dce1d93e4b5fe182f953df71a145f557cffaffc1bf/pip-19.3.1.tar.gz#sha256=21207d76c1031e517668898a6b46a9fb1501c7a4710ef5dfd6a40ad9e6757ea7 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 19.3.1
  Skipping link: yanked for reason: <none given>: https://files.pythonhosted.org/packages/60/65/16487a7c4e0f95bb3fc89c2e377be331fd496b7a9b08fd3077de7f3ae2cf/pip-20.0-py2.py3-none-any.whl#sha256=eea07b449d969dbc8c062c157852cf8ed2ad1b8b5ac965a6b819e62929e41703 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*)
  Skipping link: yanked for reason: <none given>: https://files.pythonhosted.org/packages/8c/5c/c18d58ab5c1a702bf670e0bd6a77cd4645e4aeca021c6118ef850895cc96/pip-20.0.tar.gz#sha256=5128e9a9401f1d16c1d15b2ed766a79d7813db1538428d0b0ce74838249e3a41 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*)
  Found link https://files.pythonhosted.org/packages/57/36/67f809c135c17ec9b8276466cc57f35b98c240f55c780689ea29fa32f512/pip-20.0.1-py2.py3-none-any.whl#sha256=b7110a319790ae17e8105ecd6fe07dbcc098a280c6d27b6dd7a20174927c24d7 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.0.1
  Found link https://files.pythonhosted.org/packages/28/af/2c76c8aa46ccdf7578b83d97a11a2d1858794d4be4a1610ade0d30182e8b/pip-20.0.1.tar.gz#sha256=3cebbac2a1502e09265f94e5717408339de846b3c0f0ed086d7b817df9cab822 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.0.1
  Found link https://files.pythonhosted.org/packages/54/0c/d01aa759fdc501a58f431eb594a17495f15b88da142ce14b5845662c13f3/pip-20.0.2-py2.py3-none-any.whl#sha256=4ae14a42d8adba3205ebeb38aa68cfc0b6c346e1ae2e699a0b3bad4da19cef5c (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.0.2
  Found link https://files.pythonhosted.org/packages/8e/76/66066b7bc71817238924c7e4b448abdb17eb0c92d645769c223f9ace478f/pip-20.0.2.tar.gz#sha256=7db0c8ea4c7ea51c8049640e8e6e7fde949de672bfa4949920675563a5a6967f (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.0.2
  Found link https://files.pythonhosted.org/packages/ec/05/82d3fababbf462d876883ebc36f030f4fa057a563a80f5a26ee63679d9ea/pip-20.1b1-py2.py3-none-any.whl#sha256=4cf0348b683937da883ccaae8c8bcfc9b4c7ba4c48b38cc2d89cd7b8d0b220d9 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.1b1
  Found link https://files.pythonhosted.org/packages/cd/81/c1184456fe506bd50992571c9f8581907976ce71502e36741f033e2da1f1/pip-20.1b1.tar.gz#sha256=699880a47f6d306f4f9a87ca151ef33d41d2223b81ff343b786d38c297923a19 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.1b1
  Found link https://files.pythonhosted.org/packages/54/2e/df11ea7e23e7e761d484ed3740285a34e38548cf2bad2bed3dd5768ec8b9/pip-20.1-py2.py3-none-any.whl#sha256=4fdc7fd2db7636777d28d2e1432e2876e30c2b790d461f135716577f73104369 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.1
  Found link https://files.pythonhosted.org/packages/d1/05/059c78cd5d740d2299266ffa15514dad6692d4694df571bf168e2cdd98fb/pip-20.1.tar.gz#sha256=572c0f25eca7c87217b21f6945b7192744103b18f4e4b16b8a83b227a811e192 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.1
  Found link https://files.pythonhosted.org/packages/43/84/23ed6a1796480a6f1a2d38f2802901d078266bda38388954d01d3f2e821d/pip-20.1.1-py2.py3-none-any.whl#sha256=b27c4dedae8c41aa59108f2fa38bf78e0890e590545bc8ece7cdceb4ba60f6e4 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.1.1
  Found link https://files.pythonhosted.org/packages/08/25/f204a6138dade2f6757b4ae99bc3994aac28a5602c97ddb2a35e0e22fbc4/pip-20.1.1.tar.gz#sha256=27f8dc29387dd83249e06e681ce087e6061826582198a425085e0bf4c1cf3a55 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.1.1
  Found link https://files.pythonhosted.org/packages/fe/3b/0fc5e63eb277d5a50a95ce5c896f742ef243be27382303a4a44dd0197e29/pip-20.2b1-py2.py3-none-any.whl#sha256=b4e230e2b8ece18c5a19b818f3c20a8d4eeac8172962779fd9898d7c4ceb1636 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2b1
  Found link https://files.pythonhosted.org/packages/77/3e/6a1fd8e08a06e3e0f54182c7c937bba3f4e9cf1b26f54946d3915021ea2e/pip-20.2b1.tar.gz#sha256=dbf65ecb1c30d35d72f5fda052fcd2f1ea9aca8eaf03d930846d990f51d3f6f6 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2b1
  Found link https://files.pythonhosted.org/packages/36/74/38c2410d688ac7b48afa07d413674afc1f903c1c1f854de51dc8eb2367a5/pip-20.2-py2.py3-none-any.whl#sha256=d75f1fc98262dabf74656245c509213a5d0f52137e40e8f8ed5cc256ddd02923 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2
  Found link https://files.pythonhosted.org/packages/b9/27/a9007a575c8a8e80c22144fec5df3943fd304dfa791bed44a0130e984803/pip-20.2.tar.gz#sha256=912935eb20ea6a3b5ed5810dde9754fde5563f5ca9be44a8a6e5da806ade970b (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2
  Found link https://files.pythonhosted.org/packages/bd/b1/56a834acdbe23b486dea16aaf4c27ed28eb292695b90d01dff96c96597de/pip-20.2.1-py2.py3-none-any.whl#sha256=7792c1a4f60fca3a9d674e7dee62c24e21a32df1f47d308524d3507455784f29 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2.1
  Found link https://files.pythonhosted.org/packages/68/1a/8cfcf3a8cba0dd0f125927c986b1502f2eed284c63fdfd6797ea74300ae4/pip-20.2.1.tar.gz#sha256=c87c2b2620f2942dfd5f3cf1bb2a18a99ae70de07384e847c8e3afd1d1604cf2 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2.1
  Found link https://files.pythonhosted.org/packages/5a/4a/39400ff9b36e719bdf8f31c99fe1fa7842a42fa77432e584f707a5080063/pip-20.2.2-py2.py3-none-any.whl#sha256=5244e51494f5d1dfbb89da492d4250cb07f9246644736d10ed6c45deb1a48500 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2.2
  Found link https://files.pythonhosted.org/packages/73/8e/7774190ac616c69194688ffce7c1b2a097749792fea42e390e7ddfdef8bc/pip-20.2.2.tar.gz#sha256=58a3b0b55ee2278104165c7ee7bc8e2db6f635067f3c66cf637113ec5aa71584 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2.2
  Found link https://files.pythonhosted.org/packages/4e/5f/528232275f6509b1fff703c9280e58951a81abe24640905de621c9f81839/pip-20.2.3-py2.py3-none-any.whl#sha256=0f35d63b7245205f4060efe1982f5ea2196aa6e5b26c07669adcf800e2542026 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2.3
  Found link https://files.pythonhosted.org/packages/59/64/4718738ffbc22d98b5223dbd6c5bb87c476d83a4c71719402935170064c7/pip-20.2.3.tar.gz#sha256=30c70b6179711a7c4cf76da89e8a0f5282279dfb0278bec7b94134be92543b6d (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2.3
  Found link https://files.pythonhosted.org/packages/cb/28/91f26bd088ce8e22169032100d4260614fc3da435025ff389ef1d396a433/pip-20.2.4-py2.py3-none-any.whl#sha256=51f1c7514530bd5c145d8f13ed936ad6b8bfcb8cf74e10403d0890bc986f0033 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2.4
  Found link https://files.pythonhosted.org/packages/0b/f5/be8e741434a4bf4ce5dbc235aa28ed0666178ea8986ddc10d035023744e6/pip-20.2.4.tar.gz#sha256=85c99a857ea0fb0aedf23833d9be5c40cf253fe24443f0829c7b472e23c364a1 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.2.4
  Found link https://files.pythonhosted.org/packages/fb/46/26d13ba147ba430f9cda0d0cf599a041d142a5c8b1a90ff845ebce7fba0f/pip-20.3b1-py2.py3-none-any.whl#sha256=122fcd82deac1153c1699f29815bfab3f876e5bbe018cc2df1297f9802572a97 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3b1
  Found link https://files.pythonhosted.org/packages/7f/61/2da3c027ad7bd4bc87a3ee7e7160c93e7500dac3536e02ff93008e9b3460/pip-20.3b1.tar.gz#sha256=819c710a5c8d8c5e44695d03e51cb23b08c070e1ae6a5d6910a89e248e0ff29c (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3b1
  Found link https://files.pythonhosted.org/packages/55/73/bce122d1ed0217b3c1a3439ab16dfa94bbeabd0d31755fcf907493abf39b/pip-20.3-py2.py3-none-any.whl#sha256=3236fe7288d155c238bb6c85d3e784db3a8e592e827b83fea4d36d8b749ecc4b (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3
  Found link https://files.pythonhosted.org/packages/03/41/6da553f689d530bc2c337d2c496a40dc9c0fdc6481e5df1f3ee3b8574479/pip-20.3.tar.gz#sha256=9ae7ca6656eac22d2a9b49d024fc24e00f68f4c4d4db673d2d9b525c3dea6e0e (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3
  Found link https://files.pythonhosted.org/packages/ab/11/2dc62c5263d9eb322f2f028f7b56cd9d096bb8988fcf82d65fa2e4057afe/pip-20.3.1-py2.py3-none-any.whl#sha256=425e79b20939abbffa7633a91151a882aedc77564d9313e3584eb0416c28c558 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3.1
  Found link https://files.pythonhosted.org/packages/cb/5f/ae1eb8bda1cde4952bd12e468ab8a254c345a0189402bf1421457577f4f3/pip-20.3.1.tar.gz#sha256=43f7d3811f05db95809d39515a5111dd05994965d870178a4fe10d5482f9d2e2 (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3.1
  Skipping link: yanked for reason: <none given>: https://files.pythonhosted.org/packages/3d/0c/01014c0442830eb38d6baef0932fdcb389279ce74295350ecb9fe09e048a/pip-20.3.2-py2.py3-none-any.whl#sha256=8d779b6a85770bc5f624b5c8d4d922ea2e3cd9ce6ee92aa260f12a9f072477bc (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*)
  Skipping link: yanked for reason: <none given>: https://files.pythonhosted.org/packages/51/63/86e147c44335b03055e58a27c791d94fff4baaf08d67852f925ab9b90240/pip-20.3.2.tar.gz#sha256=aa1516c1c8f6f634919cbd8a58fc81432b0fa96f421a97d05a205ee86b07c43d (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*)
  Found link https://files.pythonhosted.org/packages/54/eb/4a3642e971f404d69d4f6fa3885559d67562801b99d7592487f1ecc4e017/pip-20.3.3-py2.py3-none-any.whl#sha256=fab098c8a1758295dd9f57413c199f23571e8fde6cc39c22c78c961b4ac6286d (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3.3
  Found link https://files.pythonhosted.org/packages/ca/1e/d91d7aae44d00cd5001957a1473e4e4b7d1d0f072d1af7c34b5899c9ccdf/pip-20.3.3.tar.gz#sha256=79c1ac8a9dccbec8752761cb5a2df833224263ca661477a2a9ed03ddf4e0e3ba (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3.3
  Found link https://files.pythonhosted.org/packages/27/79/8a850fe3496446ff0d584327ae44e7500daf6764ca1a382d2d02789accf7/pip-20.3.4-py2.py3-none-any.whl#sha256=217ae5161a0e08c0fb873858806e3478c9775caffce5168b50ec885e358c199d (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3.4
  Found link https://files.pythonhosted.org/packages/53/7f/55721ad0501a9076dbc354cc8c63ffc2d6f1ef360f49ad0fbcce19d68538/pip-20.3.4.tar.gz#sha256=6773934e5f5fc3eaa8c5a44949b5b924fc122daa0a8aa9f80c835b4ca2a543fc (from https://pypi.org/simple/pip/) (requires-python:>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*), version: 20.3.4
  Found link https://files.pythonhosted.org/packages/de/47/58b9f3e6f611dfd17fb8bd9ed3e6f93b7ee662fb85bdfee3565e8979ddf7/pip-21.0-py3-none-any.whl#sha256=cf2410eedf8735fd842e0fecd4117ca79025d7fe7c161e32f8640ed6ebe5ecb9 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.0
  Found link https://files.pythonhosted.org/packages/9e/24/bc928987f35dd0167f21b13a1777c21b9c5917c9894cff93f1c1a6cb8f3b/pip-21.0.tar.gz#sha256=b330cf6467afd5d15f4c1c56f5c95e56a2bfb941c869bed4c1aa517bcb16de25 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.0
  Found link https://files.pythonhosted.org/packages/fe/ef/60d7ba03b5c442309ef42e7d69959f73aacccd0d86008362a681c4698e83/pip-21.0.1-py3-none-any.whl#sha256=37fd50e056e2aed635dec96594606f0286640489b0db0ce7607f7e51890372d5 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.0.1
  Found link https://files.pythonhosted.org/packages/b7/2d/ad02de84a4c9fd3b1958dc9fb72764de1aa2605a9d7e943837be6ad82337/pip-21.0.1.tar.gz#sha256=99bbde183ec5ec037318e774b0d8ae0a64352fe53b2c7fd630be1d07e94f41e5 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.0.1
  Found link https://files.pythonhosted.org/packages/ac/cf/0cc542fc93de2f3b9b53cb979c7d1118cffb93204afb46299a9f858e113f/pip-21.1-py3-none-any.whl#sha256=ea9f2668484893e90149fd5a6124e04651ffedd67203a8aaf030d31406b937a4 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.1
  Found link https://files.pythonhosted.org/packages/de/62/77b8b1a9f9c710988e5a58c22a7cd025b63b204df57a6ea939d6d39da421/pip-21.1.tar.gz#sha256=a810bf07c3723a28621c29abe8e34429fa082c337f89aea9a795865416b66d3e (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.1
  Found link https://files.pythonhosted.org/packages/cd/6f/43037c7bcc8bd8ba7c9074256b1a11596daa15555808ec748048c1507f08/pip-21.1.1-py3-none-any.whl#sha256=11d095ed5c15265fc5c15cc40a45188675c239fb0f9913b673a33e54ff7d45f0 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.1.1
  Found link https://files.pythonhosted.org/packages/94/b0/e10bdc8809c81796c80aa3644a8e3dc16594fb1bd68f5996929f26cad980/pip-21.1.1.tar.gz#sha256=51ad01ddcd8de923533b01a870e7b987c2eb4d83b50b89e1bf102723ff9fed8b (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.1.1
  Found link https://files.pythonhosted.org/packages/cd/82/04e9aaf603fdbaecb4323b9e723f13c92c245f6ab2902195c53987848c78/pip-21.1.2-py3-none-any.whl#sha256=f8ea1baa693b61c8ad1c1d8715e59ab2b93cd3c4769bacab84afcc4279e7a70e (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.1.2
  Found link https://files.pythonhosted.org/packages/b1/44/6e26d5296b83c6aac166e48470d57a00d3ed1f642e89adc4a4e412a01643/pip-21.1.2.tar.gz#sha256=eb5df6b9ab0af50fe1098a52fd439b04730b6e066887ff7497357b9ebd19f79b (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.1.2
  Found link https://files.pythonhosted.org/packages/47/ca/f0d790b6e18b3a6f3bd5e80c2ee4edbb5807286c21cdd0862ca933f751dd/pip-21.1.3-py3-none-any.whl#sha256=78cb760711fedc073246543801c84dc5377affead832e103ad0211f99303a204 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.1.3
  Found link https://files.pythonhosted.org/packages/4d/0c/3b63fe024414a8a48661cf04f0993d4b2b8ef92daed45636474c018cd5b7/pip-21.1.3.tar.gz#sha256=b5b1eb91b36894bd01b8e5a56a422c2f3838573da0b0a1c63a096bb454e3b23f (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.1.3
  Skipping link: yanked for reason: See https://github.com/pypa/pip/issues/8711: https://files.pythonhosted.org/packages/03/0f/b125bfdd145c1d018d75ce87603e7e9ff2416e742c71b5ac7deba13ca699/pip-21.2-py3-none-any.whl#sha256=71f447dff669d8e2f72b880e3d7ddea2c85cfeba0d14f3307f66fc40ff755176 (from https://pypi.org/simple/pip/) (requires-python:>=3.6)
  Skipping link: yanked for reason: See https://github.com/pypa/pip/issues/8711: https://files.pythonhosted.org/packages/9f/74/0e4d75529e8bf6e594d532a28308a5e369c3f7105e1fec2ff0bf86d478b0/pip-21.2.tar.gz#sha256=9254a86b6ff4409f9a6077a93f9b6d27f5d81192a94b8fc94d55ffb763a72c8b (from https://pypi.org/simple/pip/) (requires-python:>=3.6)
  Found link https://files.pythonhosted.org/packages/7c/02/9ab8b431aca1b46fcc1ac830a5870a28a12ba1abfa681904b1d2da876a86/pip-21.2.1-py3-none-any.whl#sha256=da0ac9d9032d1d7bac69e9e301778f77b8b6626b85203f99edd2b545434d90a7 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.2.1
  Found link https://files.pythonhosted.org/packages/f7/ce/e359cf283c0c0f2e0af7df8f16c8d79047aa1887a00a5b39b27d8afc49e2/pip-21.2.1.tar.gz#sha256=303a82aaa24cdc01f7ebbd1afc7d1b871a4aa0a88bb5bedef1fa86a3ee44ca0a (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.2.1
  Found link https://files.pythonhosted.org/packages/8a/d7/f505e91e2cdea53cfcf51f4ac478a8cd64fb0bc1042629cedde20d9a6a9b/pip-21.2.2-py3-none-any.whl#sha256=b02a9d345f913e03fde2ed41896687cc1a2053c6adbe142ec03cff6b0827233d (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.2.2
  Found link https://files.pythonhosted.org/packages/83/37/3f344e392de7792748ee32e05d7dd6f867eb2166c21c8711280fb30e2128/pip-21.2.2.tar.gz#sha256=38e9250dfb0d7fa842492bede9259d4b3289a936ce454f7c58f059f28a94c01d (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.2.2
  Found link https://files.pythonhosted.org/packages/ca/bf/4133a0e05eac641ec270bbcef30512b5ad307d7838adb994acd652cc30e3/pip-21.2.3-py3-none-any.whl#sha256=895df6014c2f02f9d278a8ad6e31cdfd312952b4a93c3068d0556964f4490057 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.2.3
  Found link https://files.pythonhosted.org/packages/e1/63/7c0e553ae0513ebf1858f08030158ff5998324013e0ba4c2e1c00b85df79/pip-21.2.3.tar.gz#sha256=91e66f2a2702e7d2dcc092ed8c5ebe923e69b9997ea28ba25823943bcd3bf820 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.2.3
  Found link https://files.pythonhosted.org/packages/ca/31/b88ef447d595963c01060998cb329251648acf4a067721b0452c45527eb8/pip-21.2.4-py3-none-any.whl#sha256=fa9ebb85d3fd607617c0c44aca302b1b45d87f9c2a1649b46c26167ca4296323 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.2.4
  Found link https://files.pythonhosted.org/packages/52/e1/06c018197d8151383f66ebf6979d951995cf495629fc54149491f5d157d0/pip-21.2.4.tar.gz#sha256=0eb8a1516c3d138ae8689c0c1a60fde7143310832f9dc77e11d8a4bc62de193b (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.2.4
  Found link https://files.pythonhosted.org/packages/90/a9/1ea3a69a51dcc679724e3512fc2aa1668999eed59976f749134eb02229c8/pip-21.3-py3-none-any.whl#sha256=4a1de8f97884ecfc10b48fe61c234f7e7dcf4490a37217011ad9369d899ad5a6 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.3
  Found link https://files.pythonhosted.org/packages/00/5f/d6959d6f25f202e3e68e3a53b815af42d770c829c19382d0acbf2c3e2112/pip-21.3.tar.gz#sha256=741a61baab1dbce2d8ca415effa48a2b6a964564f81a9f4f1fce4c433346c034 (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.3
  Found link https://files.pythonhosted.org/packages/a4/6d/6463d49a933f547439d6b5b98b46af8742cc03ae83543e4d7688c2420f8b/pip-21.3.1-py3-none-any.whl#sha256=deaf32dcd9ab821e359cd8330786bcd077604b5c5730c0b096eda46f95c24a2d (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.3.1
  Found link https://files.pythonhosted.org/packages/da/f6/c83229dcc3635cdeb51874184241a9508ada15d8baa337a41093fab58011/pip-21.3.1.tar.gz#sha256=fd11ba3d0fdb4c07fbc5ecbba0b1b719809420f25038f8ee3cd913d3faa3033a (from https://pypi.org/simple/pip/) (requires-python:>=3.6), version: 21.3.1
  Found link https://files.pythonhosted.org/packages/9f/8b/a094f5da22d7abf5098205367b3296dd15b914f4232af5ca39ba6214d08c/pip-22.0-py3-none-any.whl#sha256=6cb1ea2bd7fda0668e26ae8c3e45188f301a7ef17ff22efe1f70f3643e56a822 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0
  Found link https://files.pythonhosted.org/packages/4a/ca/e72b3b399d7a8cb34311aa8f52924108591c013b09f0268820afb4cd96fb/pip-22.0.tar.gz#sha256=d3fa5c3e42b33de52bddce89de40268c9a263cd6ef7c94c40774808dafb32c82 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0
  Found link https://files.pythonhosted.org/packages/89/a1/2f4e58eda11e591fbfa518233378835679fc5ab766b690b3df85215014d5/pip-22.0.1-py3-none-any.whl#sha256=30739ac5fb973cfa4399b0afff0523d4fe6bed2f7a5229333f64d9c2ce0d1933 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0.1
  Found link https://files.pythonhosted.org/packages/63/71/5686e51f06fa59da55f7e81c3101844e57434a30f4a0d7456674d1459841/pip-22.0.1.tar.gz#sha256=7fd7a92f2fb1d2ac2ae8c72fb10b1e640560a0361ed4427453509e2bcc18605b (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0.1
  Found link https://files.pythonhosted.org/packages/83/b5/df8640236faa5a3cb80bfafd68e9fb4b22578208b8398c032ccff803f9e0/pip-22.0.2-py3-none-any.whl#sha256=682eabc4716bfce606aca8dab488e9c7b58b0737e9001004eb858cdafcd8dbdd (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0.2
  Found link https://files.pythonhosted.org/packages/d9/c1/146b24a7648fdf3f8b4dc6521ab0b26ac151ef903bac0b63a4e1450cb4d1/pip-22.0.2.tar.gz#sha256=27b4b70c34ec35f77947f777070d8331adbb1e444842e98e7150c288dc0caea4 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0.2
  Found link https://files.pythonhosted.org/packages/6a/df/a6ef77a6574781a668791419ffe366c8acd1c3cf4709d210cb53cd5ce1c2/pip-22.0.3-py3-none-any.whl#sha256=c146f331f0805c77017c6bb9740cec4a49a0d4582d0c3cc8244b057f83eca359 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0.3
  Found link https://files.pythonhosted.org/packages/88/d9/761f0b1e0551a3559afe4d34bd9bf68fc8de3292363b3775dda39b62ce84/pip-22.0.3.tar.gz#sha256=f29d589df8c8ab99c060e68ad294c4a9ed896624f6368c5349d70aa581b333d0 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0.3
  Found link https://files.pythonhosted.org/packages/4d/16/0a14ca596f30316efd412a60bdfac02a7259bf8673d4d917dc60b9a21812/pip-22.0.4-py3-none-any.whl#sha256=c6aca0f2f081363f689f041d90dab2a07a9a07fb840284db2218117a52da800b (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0.4
  Found link https://files.pythonhosted.org/packages/33/c9/e2164122d365d8f823213a53970fa3005eb16218edcfc56ca24cb6deba2b/pip-22.0.4.tar.gz#sha256=b3a9de2c6ef801e9247d1527a4b16f92f2cc141cd1489f3fffaf6a9e96729764 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.0.4
  Found link https://files.pythonhosted.org/packages/79/3a/d341ae105c8b49eac912bee40739d496ae80f9441efa7df6c68f4997bbc8/pip-22.1b1-py3-none-any.whl#sha256=09e9e8f8e10f2515134b59600ad3630219430eabb734336079cbc6ffb2e01a0e (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.1b1
  Found link https://files.pythonhosted.org/packages/a7/c0/794f22836ef3202a7ad61f0872278ee7ac62e8c7617e4c9a08f01b5e82da/pip-22.1b1.tar.gz#sha256=f54ab61985754b56c5589178cfd7dfca5ed9f98d5c8f2de2eecb29f1341200f1 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.1b1
  Found link https://files.pythonhosted.org/packages/f3/77/23152f90de45957b59591c34dcb39b78194eb67d088d4f8799e9aa9726c4/pip-22.1-py3-none-any.whl#sha256=802e797fb741be1c2d475533d4ea951957e4940091422bd4a24848a7ac95609d (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.1
  Found link https://files.pythonhosted.org/packages/99/bb/696e256f4f445809f25efd4e4ce42ff99664dc089cafa1e097d5fec7fc33/pip-22.1.tar.gz#sha256=2debf847016cfe643fa1512e2d781d3ca9e5c878ba0652583842d50cc2bcc605 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.1
  Found link https://files.pythonhosted.org/packages/9b/e6/aa8149e048eda381f2a433599be9b1f5e5e3a189636cd6cf9614aa2ff5be/pip-22.1.1-py3-none-any.whl#sha256=e7bcf0b2cbdec2af84cc1b7b79b25fdbd7228fbdb61a4dca0b82810d0ba9d18b (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.1.1
  Found link https://files.pythonhosted.org/packages/3e/0a/6125e67aa4d3245faeed476e4e26f190b5209f84f01efd733ac6372eb247/pip-22.1.1.tar.gz#sha256=8dfb15d8a1c3d3085a4cbe11f29e19527dfaf2ba99354326fd62cec013eaee81 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.1.1
  Found link https://files.pythonhosted.org/packages/96/2f/caec18213f6a67852f6997fb0673ae08d2e93d1b81573edb93ba4ef06970/pip-22.1.2-py3-none-any.whl#sha256=a3edacb89022ef5258bf61852728bf866632a394da837ca49eb4303635835f17 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.1.2
  Found link https://files.pythonhosted.org/packages/4b/b6/0fa7aa968a9fa4ef63a51b3ff0644e59f49dcd7235b3fd6cceb23f202e08/pip-22.1.2.tar.gz#sha256=6d55b27e10f506312894a87ccc59f280136bad9061719fac9101bdad5a6bce69 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.1.2
  Found link https://files.pythonhosted.org/packages/9b/9e/9e0610f25e65e2cdf90b1ee9c47ca710865401904038558ac0129ea23cbc/pip-22.2-py3-none-any.whl#sha256=9abf423d5d64f3289ab9d5bf31da9e6234f2e9c5d8dcf1423bcb46b809a02c2c (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.2
  Found link https://files.pythonhosted.org/packages/cd/b6/cf07132d631444dd7ce0ed199f2327eb34e2418f1675145e5b10e1ee65cd/pip-22.2.tar.gz#sha256=8d63fcd4ee293e30b644827268a0a973d080e5c7425ef26d427f5eb2126c7681 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.2
  Found link https://files.pythonhosted.org/packages/84/25/5734a44897751d8bac6822efb819acda2d969bcc1b915bbd7d48102952cb/pip-22.2.1-py3-none-any.whl#sha256=0bbbc87dfbe6eed217beff0021f8b7dea04c8f4a0baa9d31dc4cff281ffc5b2b (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.2.1
  Found link https://files.pythonhosted.org/packages/46/28/addd7e66bb3af799d35a5dcbb79407b591a7ed674f4efd2bd8f930c40821/pip-22.2.1.tar.gz#sha256=50516e47a2b79e77446f0d05649f0d53772c192571486236b1905492bfc24bac (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.2.1
  Found link https://files.pythonhosted.org/packages/1f/2c/d9626f045e7b49a6225c6b09257861f24da78f4e5f23af2ddbdf852c99b8/pip-22.2.2-py3-none-any.whl#sha256=b61a374b5bc40a6e982426aede40c9b5a08ff20e640f5b56977f4f91fed1e39a (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.2.2
  Found link https://files.pythonhosted.org/packages/4b/30/e15b806597e67057e07a5acdc135216ccbf76a5f1681a324533b61066b0b/pip-22.2.2.tar.gz#sha256=3fd1929db052f056d7a998439176d3333fa1b3f6c1ad881de1885c0717608a4b (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.2.2
  Found link https://files.pythonhosted.org/packages/47/ef/8b5470b5b94b36231ed9c0bde90caa71c0d4322d4a15f009b2b7f4287fe0/pip-22.3-py3-none-any.whl#sha256=1daab4b8d3b97d1d763caeb01a4640a2250a0ea899e257b1e44b9eded91e15ab (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.3
  Found link https://files.pythonhosted.org/packages/f8/08/7f92782ff571c7c7cb6c5eeb8ebbb1f68cb02bdb24e55c5de4dd9ce98bc3/pip-22.3.tar.gz#sha256=8182aec21dad6c0a49a2a3d121a87cd524b950e0b6092b181625f07ebdde7530 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.3
  Found link https://files.pythonhosted.org/packages/09/bd/2410905c76ee14c62baf69e3f4aa780226c1bbfc9485731ad018e35b0cb5/pip-22.3.1-py3-none-any.whl#sha256=908c78e6bc29b676ede1c4d57981d490cb892eb45cd8c214ab6298125119e077 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.3.1
  Found link https://files.pythonhosted.org/packages/a3/50/c4d2727b99052780aad92c7297465af5fe6eec2dbae490aa9763273ffdc1/pip-22.3.1.tar.gz#sha256=65fd48317359f3af8e593943e6ae1506b66325085ea64b706a998c6e83eeaf38 (from https://pypi.org/simple/pip/) (requires-python:>=3.7), version: 22.3.1
Skipping link: not a file: https://pypi.org/simple/pip/
Given no hashes to check 207 links for project 'pip': discarding no candidates
Removed build tracker: '/private/var/folders/4l/qjt4zjdj6fgcmp_prmp4y2_80000gn/T/pip-req-tracker-_mieb17w'
antoneri commented 1 year ago

Thanks!

For now, as your goal is to run Infomap from Matlab, you can download the C++ version without OpenMP here.

If you download Infomap you need to allow it in the system settings by first running it once, then opening system settings and clicking Allow Anyway.

Screenshot 2022-11-06 at 19 15 53

You can also try building the C++ version from sources by running make or make noomp in the source directory.

There seems to be a problem in the build step on GitHub Actions. We had some indications of this a couple of days ago but we thought everything was fine. Apparently not!

MatildeVaghi commented 1 year ago

Thanks Anton! appreciated - I am getting some problems here as well (everything worked fine on the old Mac!). Here, as you suggested, I downloaded the the C++ version without OpenMP . I ran it once and proceeded to Allow Anyway as you indicated.

I double click on the Executable and I get the following in the terminal

The default interactive shell is now zsh.
To update your account to use zsh, please run `chsh -s /bin/zsh`.
For more details, please visit https://support.apple.com/kb/HT208050.
(base) Matildes-MacBook-Pro:~ matilde$ /Users/matilde/Documents/Experiments/Dense_sampling/MSCcodebase-master/Resources/infomap_v2.6.0/Infomap ; exit;
Infomap version 2.6.0
Missing required arguments.
Usage: Infomap network_file out_directory [options]. Run with option '-h' for more information.
logout

Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.

Infomap is not recognized in Matlab (having the path added).

antoneri commented 1 year ago

Great!

I'm no Matlab expert, but it seems like you have to set your PATH inside Matlab: https://se.mathworks.com/matlabcentral/answers/10451-how-do-i-add-to-the-path-of-system

Hope this helps!

MatildeVaghi commented 1 year ago

Thanks! I was missing some basics.

FYI on M1 Mac I built the C++ version from sources by running make noomp in the source directory. I am able to run InfoMap from from Matlab with the following: system([infomapfolder '/Infomap-2.6.0/Infomap]

Thank you both for prompt and helpful assistance ! I will check to see when the the steps in the build step on GitHub Actions are resolved. Cheers!

antoneri commented 1 year ago

Happy to help! Cheers!