Giter Site home page Giter Site logo

crypticsignal / video-quality-metrics Goto Github PK

View Code? Open in Web Editor NEW
110.0 5.0 18.0 22.67 MB

Test specified presets/CRF values for the x264 or x265 encoder. Compares VMAF/SSIM/PSNR numerically & via graphs.

License: MIT License

Python 100.00%
vmaf ssim psnr video x264 x265 ffmpeg quality crf transcode

video-quality-metrics's Introduction

Video Quality Metrics (VQM)

VQM is a command line program that has 2 main features.

  1. It can calculate the VMAF, SSIM and PSNR of a transcoded video as long as you have the original video as well. Example:

    python main.py -ntm -ovp original.mp4 -tvp transcoded.mp4 -ssim -psnr

  2. It can transcode a video using the x264 (H.264), x265 (H.265) or libaom (AV1) encoder with specified presets (if using x264 or x265) or CRF values.

    When using this feature, VQM will transcode the video with each preset/CRF value and calculate the VMAF/SSIM/PSNR of each transcode. A table will be created as well as graphs, so you can see how the values of the quality metrics change depending on the preset/CRF value.

You can find more details about feature 2 as well as example commands, under the Feature 2 section.

Table of Contents

Example Table

VQM creates a table in a file named Table.txt, and it contains the following:

  • Filesize (MB)
  • Bitrate (Mbps)
  • Filesize compared to the original video (as a percentage)
  • Video Multimethod Assessment Fusion (VMAF) values. VMAF is a perceptual video quality assessment algorithm developed by Netflix.
  • [Optional] Peak Signal-to-Noise-Ratio (PSNR). You must use the -psnr argument.
  • [Optional] Structural Similarity Index (SSIM). You must use the -ssim argument.
  • [Optional] Multi-Scale Structural Similarity Index (MS-SSIM). You must use the -msssim argument.

If feature [2] is used, in addition to the above, the following colums are present:

  • Preset/CRF value
  • Time taken to transcode the video (in seconds)

You can find an example table below. Please note that when feature [1] is used, the first two columns will not exist as they are not applicable.

+-----------+-------------------+----------+-----------+----------------------+
|   Preset  | Encoding Time (s) |   Size   |  Bitrate  |         VMAF         |
+-----------+-------------------+----------+-----------+----------------------+
|  veryslow |       68.12       | 18.70 MB | 2.48 Mbps | 89.75 | 2.51 | 97.62 |
|   slower  |       32.57       | 20.43 MB | 2.71 Mbps | 89.54 | 2.44 | 97.72 |
|    slow   |       17.84       | 20.62 MB | 2.74 Mbps | 89.08 | 2.55 | 97.58 |
|   medium  |       12.16       | 21.24 MB | 2.82 Mbps | 88.88 | 2.56 | 97.57 |
|    fast   |       10.39       | 22.85 MB | 3.04 Mbps | 88.59 | 2.72 | 97.37 |
|   faster  |        8.37       | 21.11 MB | 2.80 Mbps | 88.66 | 2.83 | 97.18 |
|  veryfast |        5.78       | 17.71 MB | 2.35 Mbps | 84.75 | 4.00 | 95.18 |
| superfast |        3.83       | 34.95 MB | 4.64 Mbps | 88.52 | 3.19 | 96.71 |
| ultrafast |        2.34       | 49.38 MB | 6.56 Mbps | 90.03 | 2.11 | 98.24 |
+-----------+-------------------+----------+-----------+----------------------+
File Transcoded: aqp60.mkv
Bitrate: 12.34 Mbps
Encoder used for the transcodes: x264
CRF 23 was used.
Filter(s) used: None
n_subsample: 1

The following command was used to produce such a table:

python main.py -ovp aqp60.mkv -p veryslow slower slow medium fast faster veryfast superfast ultrafast

Example Graphs

When using feature [2], two types of graphs are created:

  • A graph where the average VMAF is plotted against the presets/CRF values. If one opts to compare CRF values, the following type of graph will produced:

CRF vs VMAF graph

  • A graph for each preset/CRF value, showing the variation of the VMAF/SSIM/PSNR throughout the video. An example is shown below.

VMAF variation graph

Example SSIM and PSNR graphs can be found in the example_graphs folder.

Feature 2

There are two modes; CRF comparison mode and presets comparison mode. You must specify multiple CRF values OR presets and this program will automatically transcode the video with each preset/CRF value, and the quality of each transcode is calculated using the VMAF and (optionally) the SSIM and PSNR metrics.

CRF comparison mode example:

python main.py -ovp original.mp4 -crf 18 19 20 -p veryfast -ssim -psnr

You must specify the CRF values that you want to compare and (optionally) one preset. If you do not specify a preset, the medium preset will be used.

Presets comparison mode example:

python main.py -ovp original.mp4 -p medium fast faster -crf 18 -ssim -psnr

You must specify the presets that you want to compare and (optionally) one CRF value. If you do specify a CRF value, a CRF of 23 will be used.

Overview Mode:

A recent addition to this program is "overview mode", which can be used with feature [2] by specifying the --interval and --clip-length arguments. The benefit of this mode is especially apparent with long videos, such as movies. What this mode does is create a lossless "overview video" by grabbing a <clip length> seconds long segment every <interval> seconds from the original video. The transcodes and computation of the quality metrics are done using this overview video instead of the original video. As the overview video can be much shorter than the original, the process of trancoding and computing the quality metrics is much quicker, while still being a fairly accurate representation of the original video as the program goes through the whole video and grabs, say, a two-second-long segment every 60 seconds.

Example: python main.py -ovp original.mp4 -crf 17 18 19 --interval 60 --clip-length 2

In the example above, we're grabbing a two-second-long clip (--clip-length 2) every minute (--interval 60) in the video. These 2-second long clips are concatenated to make the overview video. A 1-hour long video is turned into an overview video that is 1 minute and 58 seconds long. The benefit of overview mode should now be clear - transcoding and computing the quality metrics of a <2 minutes long video is much quicker than doing so with an hour long video.

An alternative method of reducing the execution time of this program is by only using the first x seconds of the original video (you can do this with the -t argument), but Overview Mode provides a better representation of the whole video.

Available Arguments

You can check the available arguments with python main.py -h:

usage: main.py [-h] [--av1-cpu-used <1-8>] [-cl <1-60>] [-crf <0-51> [<0-51> ...]] [-dp DECIMAL_PLACES] [-e {x264,x265,libaom-av1}] [-i <1-600>] [-subsample SUBSAMPLE]
               [--n-threads N_THREADS] [-ntm] [-o OUTPUT_FOLDER] -ovp ORIGINAL_VIDEO_PATH [-p <preset/s> [<preset/s> ...]] [--phone-model] [-sc] [-psnr] [-ssim] [-msssim]
               [-t SECONDS] [-tvp TRANSCODED_VIDEO_PATH] [-vf VIDEO_FILTERS]

optional arguments:
  -h, --help            show this help message and exit

Encoding Arguments:
  --av1-cpu-used <1-8>  Only applicable if the libaom-av1 (AV1) encoder is chosen. Set the quality/encoding speed tradeoff. Lower values mean slower encoding but better
                        quality, and vice-versa (default: 5)
  -crf <0-51> [<0-51> ...]
                        Specify the CRF value(s) to use
  -e {x264,x265,libaom-av1}, --video-encoder {x264,x265,libaom-av1}
                        Specify whether to use the x264 (H.264), x265 (H.265) or libaom-av1 (AV1) encoder (default: x264)
  -p <preset/s> [<preset/s> ...], --preset <preset/s> [<preset/s> ...]
                        Specify the preset(s) to use (default: medium)

VMAF Arguments:
  -subsample SUBSAMPLE  Set a value for libvmaf's n_subsample option if you only want the VMAF/SSIM/PSNR to be calculated for every nth frame. Without this argument,
                        VMAF/SSIM/PSNR scores will be calculated for every frame (default: 1)
  --n-threads N_THREADS
                        Specify the number of threads to use when calculating VMAF
  --phone-model         Enable VMAF phone model (default: False)

Overview Mode Arguments:
  -cl <1-60>, --clip-length <1-60>
                        When using Overview Mode, a X seconds long segment is taken from the original video every --interval seconds and these segments are concatenated to
                        create the overview video. Specify a value for X (in the range 1-60) (default: 1)
  -i <1-600>, --interval <1-600>
                        To activate Overview Mode, this argument must be specified. Overview Mode creates a lossless overview video by grabbing a --clip-length long segment
                        every X seconds from the original video. Specify a value for X (in the range 1-600) (default: None)

General Arguments:
  -dp DECIMAL_PLACES, --decimal-places DECIMAL_PLACES
                        The number of decimal places to use for the data in the table (default: 2)
  -ntm, --no-transcoding-mode
                        Enable "no transcoding mode", which allows you to calculate the VMAF/SSIM/PSNR for a video that you have already transcoded. The original and
                        transcoded video paths must be specified using the -ovp and -tvp arguments, respectively. Example: python main.py -ntm -ovp original.mp4 -tvp
                        transcoded.mp4 (default: False)
  -o OUTPUT_FOLDER, --output-folder OUTPUT_FOLDER
                        Use this argument if you want a specific name for the output folder. If you want the name of the output folder to contain a space, the string must
                        be surrounded in double quotes (default: None)
  -ovp ORIGINAL_VIDEO_PATH, --original-video-path ORIGINAL_VIDEO_PATH
                        Enter the path of the original video. A relative or absolute path can be specified. If the path contains a space, it must be surrounded in double
                        quotes (default: None)
  -sc, --show-commands  Show the FFmpeg commands that are being run. (default: False)
  -t SECONDS, --encode-length SECONDS
                        Create a lossless version of the original video that is just the first x seconds of the video. This cut version of the original video is what will
                        be transcoded and used as the reference video. You cannot use this option in conjunction with the -i or -cl arguments (default: None)
  -tvp TRANSCODED_VIDEO_PATH, --transcoded-video-path TRANSCODED_VIDEO_PATH
                        The path of the transcoded video (only applicable when using the -ntm mode) (default: None)
  -vf VIDEO_FILTERS, --video-filters VIDEO_FILTERS
                        Add FFmpeg video filter(s). Each filter must be separated by a comma. Example: -vf bwdif=mode=0,crop=1920:800:0:140 (default: None)

Optional Metrics:
  -psnr, --calculate-psnr
                        Enable PSNR calculation in addition to VMAF (default: False)
  -ssim, --calculate-ssim
                        Enable SSIM calculation in addition to VMAF (default: False)
  -msssim, --calculate-msssim
                        Enable MS-SSIM calculation in addition to VMAF (default: False)

Requirements

  1. Python 3.6+
  2. pip install -r requirements.txt
  3. FFmpeg and FFprobe installed and in your PATH (or in the same directory as this program). Your build of FFmpeg must have v2.1.1 (or above) of the libvmaf filter. Depending on the encoder(s) that you wish to test, FFmpeg must also be built with libx264, libx265 and libaom.

You can check whether your build of FFmpeg has libvmaf/libx264/libx265/libaom with ffmpeg -buildconf.

Look for --enable-libvmaf, --enable-libx265, --enable-libx264 and --enable-libaom.

Recommended FFmpeg Builds

Windows: https://www.gyan.dev/ffmpeg/builds/ffmpeg-git-essentials.7z

macOS: https://evermeet.cx/ffmpeg - download both ffmpeg and ffprobe and add the binaries to your PATH.

Alternatively, you can install FFmpeg using Homebrew - brew install ffmpeg

Linux (kernels 3.2.0+): https://johnvansickle.com/ffmpeg.

Download the git master build. Installation instructions, as well as how to add FFmpeg and FFprobe to your PATH, can be found here.

About the model files

Two model files are provided, vmaf_v0.6.1.json and vmaf_4k_v0.6.1.json. There is also the phone model that can be enabled by using the -pm argument.

This program uses the vmaf_v0.6.1.json model file by default, which is "based on the assumption that the viewers sit in front of a 1080p display in a living room-like environment with the viewing distance of 3x the screen height (3H)."

The phone model was created because the original model "did not accurately reflect how a viewer perceives quality on a phone. In particular, due to smaller screen size and longer viewing distance relative to the screen height (>3H), viewers perceive high-quality videos with smaller noticeable differences. For example, on a mobile phone, there is less distinction between 720p and 1080p videos compared to other devices. With this in mind, we trained and released a VMAF phone model."

The 4K model (vmaf_4k_v0.6.1.json) "predicts the subjective quality of video displayed on a 4K TV and viewed from a distance of 1.5H. A viewing distance of 1.5H is the maximum distance for the average viewer to appreciate the sharpness of 4K content. The 4K model is similar to the default model in the sense that both models capture quality at the critical angular frequency of 1/60 degree/pixel. However, the 4K model assumes a wider viewing angle, which affects the foveal vs peripheral vision that the subject uses."

The source of the quoted text, plus additional information about VMAF (such as the correct way to calculate VMAF), can be found here.

  • If you are transcoding a video that will be viewed on a mobile phone, you can add the -pm argument which will enable the phone model.

  • If you are transcoding a video that will be viewed on a 4K display, the default model (vmaf_v0.6.1.json) is fine if you are only interested in relative VMAF scores, i.e. the score differences between different presets/CRF values, but if you are interested in absolute scores, it may be better to use the 4K model file which predicts the subjective quality of video displayed on a 4K screen at a distance of 1.5x the height of the screen. To use the 4K model, replace the value of the model_file_path variable in libvmaf.py with 'vmaf_models/vmaf_4k_v0.6.1.json'.

video-quality-metrics's People

Contributors

crypticsignal avatar inb4devops avatar jared-02 avatar polarathene avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

video-quality-metrics's Issues

Grab segments from the original video and concatenate them to create an overview video file.

Hey,
I read the comment linked below on reddit and it inspired me to make just that:

  • take the first (or even two or more) second(s) of every minute of a movie and encode it @ CRF 0 preset ultrafast x264 (which is lossless)
    (I chose to encode at CRF 0 because copying via -ss <timestamp> -i <file> -t <length> often creates distorted video)
  • concatenate those files to a new "overview" video file
  • use that as input for VQM

This should give a much better understanding of the overall quality in a movie than just using consecutive seconds.
Is this something you'd like in VQM?

https://www.reddit.com/r/ffmpeg/comments/hu4xkf/a_small_amount_of_data_related_to_encoding_time/fyldikw?utm_source=share&utm_medium=web2x&context=3

Small performance increase?

Possibly a dumb idea / a lot of work for a little benefit:

Consider calculating VMAF in a separate thread queue and start the next encode while VMAF is being calculated.

I own an AMD Ryzen 3600. A lot of my encodes only use ~90% of the processor. Threads bounce around quite a bit though. I'll often run two CPU video encodes to bring total CPU usage closer to 95%. My friend says that his i7 9700 also hovers around 80-90%, depending on the encode.

I suspect that calculating VMAF simultaneous to encoding, you'd get 5% on x265 (and possibly a good bit more on x264) performance improvement after all is said and done. If a person has an overclocked machine, they'll see more of a benefit (assuming their overclock is stable) than someone running stock. Modern processors will potentially boost a bit higher in clock if underutilized, but I suspect filling the pipeline / higher utilization will be more performant than the boost clock.

Conjecture: Intel supposedly has a better pipeline than AMD, so I expect the performance uplift to be more on AMD machines. I'm also not sure how (locked / stock) Intel CPU will respond as they typically lower base clocks and power limits, particularly when using AVX.

I think I'm more curious about the potential for additional performance than the performance improvement merits XD x265 scales pretty well up to 32 cores / 64 threads, so it's not like there's a ton of people with hardware that is significantly under-utilized by the current implementation. VMAF seems to be better fill the pipeline (even when running alone), so it's mostly optimizing whatever x264 / x265 can't efficiently use.

As for implementation, plot generation would probably also move to the VMAF thread due to timing. I think setting VMAF as lower priority than x265 would eek out best results as VMAF is used to fill the "gap" of whatever x264/ x265 can't fill. If equal priority, VMAF would finish sooner than long encodes, leaving a the remainder of the encode time under-utilized. On shorter encodes, it doesn't matter if VMAF lags and is all calculated at the end as it's a more core-efficient workload.

Not creating /clips/ folder

python3 main.py -ovp 'file.mp4' -crf 20 22 24 26 28 30 32 34 36 38 40 42 44 46 --interval 60 --clip-length 2 -e x265 -ssim -psnr

produces

Transcoding the video with CRF 20...
(file.mp4)/clips/../2-60 (ClipLength-IntervalSeconds).mp4: No such file or directory

Traceback (most recent call last):
File "main.py", line 364, in
main()
File "main.py", line 184, in main
transcode_size = os.path.getsize(transcode_output_path) / 1_000_000
File "/usr/lib/python3.8/genericpath.py", line 50, in getsize
return os.stat(filename).st_size
FileNotFoundError: [Errno 2] No such file or directory: '(file.mp4)/CRF comparison at preset medium/CRF 20 at preset medium.mp4'

The code generates the /clips/ folder, but deletes it before attempting to navigate & transcode.

libvmaf encountered an error, check log for details

First of all, thanks for this; I was just about to get started building something just like this when I found your post on reddit; saved me a ton of time that would get me 25% as far as you have.

Anyway, a bug which I think might just be a version problem. Does this need a specific version of ffmpeg, built against a specific version of libvmaf? I just built ffmpeg and libvmaf using the latest versions of each (ffmpeg-4.3.1 and vmaf-2.0.0) and I'm getting a libvmaf error:

python main.py -ovp inputfile.mp4 -crf 16 18 20 22 24 --interval 120 --clip-length 2

-----------------------------------------------------------------------------------------------------------
Here's some information about the original video:
Filename: input.mp4
Bitrate: 16318 kbit/s
Framerate: 30000/1001 (29.97) FPS
-----------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------------------
Creating a 2 second clip every 120 seconds from /home/user/workspace/video-quality-metrics/input.mp4...
-----------------------------------------------------------------------------------------------------------
Creating clip 1 which starts at 00:02:00...
frame=   59 fps=0.0 q=-1.0 Lsize=   49995kB time=00:00:01.97 bitrate=207896.8kbits/s speed=2.61x    
Creating clip 2 which starts at 00:04:00...
frame=   60 fps=0.0 q=-1.0 Lsize=   29043kB time=00:00:01.97 bitrate=120773.8kbits/s speed=3.01x    
Creating clip 3 which starts at 00:06:00...
frame=   59 fps=0.0 q=-1.0 Lsize=   31836kB time=00:00:01.97 bitrate=132386.4kbits/s speed=3.06x    
Creating clip 4 which starts at 00:08:00...
frame=   60 fps=0.0 q=-1.0 Lsize=   63059kB time=00:00:01.97 bitrate=262223.2kbits/s speed=2.59x    
Creating clip 5 which starts at 00:10:00...
frame=   59 fps=0.0 q=-1.0 Lsize=   26968kB time=00:00:01.97 bitrate=112144.4kbits/s speed=2.54x    
Creating clip 6 which starts at 00:12:00...
frame=   59 fps=0.0 q=-1.0 Lsize=   34119kB time=00:00:01.97 bitrate=141880.5kbits/s speed= 2.1x    
Creating clip 7 which starts at 00:14:00...
frame=   60 fps=0.0 q=-1.0 Lsize=   32754kB time=00:00:01.97 bitrate=136204.1kbits/s speed=2.19x    
Creating clip 8 which starts at 00:16:00...
frame=   59 fps= 44 q=-1.0 Lsize=   47558kB time=00:00:01.97 bitrate=197764.6kbits/s speed=1.47x    
Creating clip 9 which starts at 00:18:00...
frame=   60 fps= 42 q=-1.0 Lsize=   59101kB time=00:00:01.97 bitrate=245763.1kbits/s speed=1.38x    
Creating clip 10 which starts at 00:20:00...
frame=   59 fps= 44 q=-1.0 Lsize=   54827kB time=00:00:01.97 bitrate=227989.8kbits/s speed=1.47x    
-----------------------------------------------------------------------------------------------------------
Concatenating the clips to create the overview video...
frame=  594 fps=170 q=-1.0 Lsize=  429257kB time=00:00:19.98 bitrate=175937.3kbits/s speed=5.71x    


Done!
The clips have been deleted as they are no longer needed.
Overview Video: 2-120 (ClipLength-IntervalSeconds).mp4
-----------------------------------------------------------------------------------------------------------
CRF comparison mode activated.
CRF values 16, 18, 20, 22, 24 will be compared and the medium preset will be used.
-----------------------------------------------------------------------------------------------------------

Transcoding the video with CRF 16...
frame=  599 fps=9.7 q=-1.0 Lsize=   43880kB time=00:00:19.88 bitrate=18075.7kbits/s dup=5 drop=0 speed=0.322x    
Done!
Computing the VMAF...
[LIBVMAF] `compute_vmaf()` is deprecated and will be removed in a future libvmaf version
problem loading model file: vmaf_v0.6.1.pkl
[Parsed_libvmaf_2 @ 0x559896d6fd80] libvmaf encountered an error, check log for details
Error while filtering: Invalid argument
Failed to inject frame into filter network: Invalid argument
Error while processing the decoded data for stream #1:0
Done!
Traceback (most recent call last):
  File "main.py", line 368, in <module>
    main()
  File "main.py", line 204, in main
    create_table_plot_metrics(json_file_path, args, decimal_places, data_for_current_row, graph_filename,
  File "/home/user/workspace/video-quality-metrics/save_metrics.py", line 12, in create_table_plot_metrics
    with open(json_file_path, 'r') as f:
FileNotFoundError: [Errno 2] No such file or directory: '(inputfile.mp4)/CRF comparison at preset medium/Raw JSON Data/CRF 16.json'

Also, in terms of helping to debug this:
Does the vmaf log get written somewhere? I'm not seeing anything by grepping /var/log for vmaf (other than my installation of that library) and there's not an obvious verbose mode I could turn on to see what commands it is trying to run, to help with the debugging; perhaps I could add that in a PR.

[Bug] ModuleNotFoundError: No module named 'tqdm'

Following your README, I ran the following and ran into this failure:

python main.py -ntm -ovp /tmp/video/a.mp4 -tvp /tmp/video/b.mkv -o test -psnr -ssim

Traceback (most recent call last):
  File "/tmp/video-quality-metrics-master/main.py", line 9, in <module>
    from arguments_validator import ArgumentsValidator
  File "/tmp/video-quality-metrics-master/arguments_validator.py", line 3, in <module>
    from utils import is_list
  File "/tmp/video-quality-metrics-master/utils.py", line 11, in <module>
    from tqdm import tqdm
ModuleNotFoundError: No module named 'tqdm'

A quick search revealed that's a package used for displaying a progress bar, so pip install tqdm resolved that. Probably should be added to requirements.txt?

[2] (presets comparison mode):

I'm trying to compare presets. I've tried crafting a full command manually as well as using the example from the documentation.

[2] (presets comparison mode):
Example: python main.py -ovp original.mp4 -p medium fast faster -crf 18 -ssim -psnr

Thus I input:

allen@allen-desktop:/media/allen/2637acd8-fd84-4e6e-b830-018fc7f8703c/allen/Desktop/video-quality-metrics-master$ python3 main.py -ovp P3.mp4 -p medium fast faster -crf 18

Here's some information about the original video:
Filename: P3.mp4
Bitrate: 1018 kbit/s
Framerate: 30/1 (30.0) FPS

Presets comparison mode activated.
Presets medium, fast, faster will be compared at a CRF of 18.

Transcoding the video with preset medium...
Traceback (most recent call last):
File "main.py", line 367, in
main()
File "main.py", line 248, in main
process.run()
File "/media/allen/2637acd8-fd84-4e6e-b830-018fc7f8703c/allen/Desktop/video-quality-metrics-master/ffmpeg_process_factory.py", line 129, in run
subprocess.run(self.__arguments)
File "/usr/lib/python3.8/subprocess.py", line 489, in run
with Popen(*popenargs, **kwargs) as process:
File "/usr/lib/python3.8/subprocess.py", line 854, in init
self._execute_child(args, executable, preexec_fn, close_fds,
File "/usr/lib/python3.8/subprocess.py", line 1637, in _execute_child
self.pid = _posixsubprocess.fork_exec(
TypeError: expected str, bytes or os.PathLike object, not int

Comma in input file title, m4v, encoder parameters

It seems to be that it fails if there is a comma in input filename.

Ubuntu 20.10

Computing the VMAF...
[AVFilterGraph @ 0x76ffec0] No such filter: 'FILENAME_AFTER_COMMA)/CRF comparison at preset medium/Raw JSON Data/CRF 30.json:log_fmt'
Error initializing complex filters.
Invalid argument
Done!
Traceback (most recent call last):
File "main.py", line 363, in
main()
File "main.py", line 203, in main
create_table_plot_metrics(json_file_path, args, decimal_places, data_for_current_row, graph_filename,
File "/media/allen/2637acd8-fd84-4e6e-b830-018fc7f8703c/allen/Desktop/video-quality-metrics-master/save_metrics.py", line 12, in create_table_plot_metrics
with open(json_file_path, 'r') as f:
FileNotFoundError: [Errno 2] No such file or directory: '(ENTIRE_FILENAME.mp4)/CRF comparison at preset medium/Raw JSON Data/CRF 30.json'

A more trivial issue is that handbrake's default of unencrypted m4v doesn't work. If I rename the files, they work fine as they're based off the mp4 codec.

Also, is there any way possible to pass additional parameters to the encoder? I'm thinking the encoder tunings like psnr, ssim, animation, stillimage, grain, etc. Or various color bit depths like 8 bit (default), 10 bit, 12 bit.

Thanks for the project.

Requirements.txt - opencv_python 4.3.0.36 does not exist (python 3.9.0)

Trying to install requirements via pip I get this:

pip install -r requirements.txt
ERROR: Could not find a version that satisfies the requirement opencv_python==4.3.0.36 (from -r requirements.txt (line 1)) (from versions: 3.4.10.37, 3.4.11.39, 3.4.11.41, 3.4.11.43, 4.3.0.38, 4.4.0.40, 4.4.0.42, 4.4.0.44)
ERROR: No matching distribution found for opencv_python==4.3.0.36 (from -r requirements.txt (line 1))

Filename issues [Brackets]

More filename issues, this time on [brackets]

Ubuntu 20.10

Desktop/video-quality-metrics-master$ python3 main.py -ovp ./[stuff].mkv --interval 60 --clip-length 5 -e x265 --preset medium slow slower veryslow

[AVFilterGraph @ 0x5b9e880] Unable to parse graph description substring: ".mkv)/Presets comparison at CRF 23/Raw JSON Data/medium.json:log_fmt=json"
Error initializing complex filters.
Invalid argument
Done!
Traceback (most recent call last):
File "main.py", line 367, in
main()
File "main.py", line 270, in main
create_table_plot_metrics(json_file_path, args, decimal_places, data_for_current_row, graph_filename,
File "/media/allen/2637acd8-fd84-4e6e-b830-018fc7f8703c/allen/Desktop/video-quality-metrics-master/save_metrics.py", line 12, in create_table_plot_metrics
with open(json_file_path, 'r') as f:
FileNotFoundError: [Errno 2] No such file or directory: '([stuff].mkv)/Presets comparison at CRF 23/Raw JSON Data/medium.json'

It runs fine if I rename the video file to stuff.mkv

Running into errors trying to install requirements on macOS 11.2.3 on MacBook Air 2020 (Intel)

When trying to install the requirements I get

  error: command '/usr/bin/clang' failed with exit code 1
  ----------------------------------------
  ERROR: Failed building wheel for matplotlib

Any ideas?

Full log here:

thekryz@thekryzs-MacBook-Air video-quality-metrics-master % pip3 install -r requirements.txt
Collecting ffmpeg-python==0.2.0
  Using cached ffmpeg_python-0.2.0-py3-none-any.whl (25 kB)
Collecting matplotlib==3.3.0
  Using cached matplotlib-3.3.0.tar.gz (38.8 MB)
Requirement already satisfied: numpy==1.18.2 in /usr/local/lib/python3.9/site-packages (from -r requirements.txt (line 3)) (1.18.2)
Requirement already satisfied: prettytable==0.7.2 in /usr/local/lib/python3.9/site-packages (from -r requirements.txt (line 4)) (0.7.2)
Requirement already satisfied: PTable==0.9.2 in /usr/local/lib/python3.9/site-packages (from -r requirements.txt (line 5)) (0.9.2)
Requirement already satisfied: future in /usr/local/lib/python3.9/site-packages (from ffmpeg-python==0.2.0->-r requirements.txt (line 1)) (0.18.2)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.9/site-packages (from matplotlib==3.3.0->-r requirements.txt (line 2)) (0.10.0)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.9/site-packages (from matplotlib==3.3.0->-r requirements.txt (line 2)) (1.3.1)
Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.9/site-packages (from matplotlib==3.3.0->-r requirements.txt (line 2)) (8.2.0)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.3 in /usr/local/lib/python3.9/site-packages (from matplotlib==3.3.0->-r requirements.txt (line 2)) (2.4.7)
Requirement already satisfied: python-dateutil>=2.1 in /usr/local/lib/python3.9/site-packages (from matplotlib==3.3.0->-r requirements.txt (line 2)) (2.8.1)
Requirement already satisfied: six in /usr/local/lib/python3.9/site-packages (from cycler>=0.10->matplotlib==3.3.0->-r requirements.txt (line 2)) (1.15.0)
Building wheels for collected packages: matplotlib
  Building wheel for matplotlib (setup.py) ... error
  ERROR: Command errored out with exit status 1:
   command: /usr/local/opt/[email protected]/bin/python3.9 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/setup.py'"'"'; __file__='"'"'/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-wheel-aonqnyy9
       cwd: /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/
  Complete output (968 lines):
  
  Edit setup.cfg to change the build options; suppress output with --quiet.
  
  BUILDING MATPLOTLIB
    matplotlib: yes [3.3.0]
        python: yes [3.9.4 (default, Apr  5 2021, 01:50:46)  [Clang 12.0.0
                    (clang-1200.0.32.29)]]
      platform: yes [darwin]
   sample_data: yes [installing]
         tests: no  [skipping due to configuration]
        macosx: yes [installing]
  
  running bdist_wheel
  running build
  running build_py
  creating build
  creating build/lib.macosx-11-x86_64-3.9
  copying lib/pylab.py -> build/lib.macosx-11-x86_64-3.9
  creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits
  copying lib/mpl_toolkits/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits
  creating build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/hatch.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/transforms.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_text_layout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/legend_handler.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/axis.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/textpath.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/quiver.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/backend_bases.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/units.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/pylab.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/colorbar.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_version.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_cm.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/backend_managers.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/mathtext.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/font_manager.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/bezier.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/cm.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/legend.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/figure.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/ttconv.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/offsetbox.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/tight_bbox.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/container.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/gridspec.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/lines.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/widgets.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/blocking_input.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/dviread.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/animation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/type1font.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_mathtext_data.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/artist.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/backend_tools.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/docstring.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_internal_utils.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_color_data.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/texmanager.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/afm.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/patches.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/stackplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/collections.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/spines.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/text.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/markers.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/mlab.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/fontconfig_pattern.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_pylab_helpers.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/tight_layout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_cm_listed.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/dates.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/table.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_animation_data.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/pyplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/rcsetup.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/ticker.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/path.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/contour.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_layoutbox.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/image.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/scale.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/category.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/_constrained_layout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/sankey.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/patheffects.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/streamplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  copying lib/matplotlib/colors.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
  creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/inset_locator.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/axes_grid.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/parasite_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/colorbar.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/anchored_artists.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/axes_size.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/mpl_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/axes_rgb.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  copying lib/mpl_toolkits/axes_grid1/axes_divider.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
  creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/inset_locator.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/axislines.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/axes_grid.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/grid_finder.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/parasite_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/colorbar.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/anchored_artists.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/axis_artist.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/axisline_style.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/axes_size.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/angle_helper.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/clip_path.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/floating_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/axes_rgb.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  copying lib/mpl_toolkits/axes_grid/axes_divider.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
  creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axisartist_axislines.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/conftest.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axisartist_grid_finder.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axisartist_floating_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axisartist_axis_artist.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axisartist_angle_helper.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axes_grid.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axisartist_clip_path.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_mplot3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  copying lib/mpl_toolkits/tests/test_axes_grid1.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
  creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
  copying lib/mpl_toolkits/mplot3d/proj3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
  copying lib/mpl_toolkits/mplot3d/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
  copying lib/mpl_toolkits/mplot3d/axes3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
  copying lib/mpl_toolkits/mplot3d/axis3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
  copying lib/mpl_toolkits/mplot3d/art3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
  creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/axislines.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/axes_grid.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/grid_finder.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/parasite_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/axis_artist.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/axisline_style.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/angle_helper.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/grid_helper_curvelinear.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/clip_path.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/floating_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/axes_rgb.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  copying lib/mpl_toolkits/axisartist/axes_divider.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/compat
  copying lib/matplotlib/compat/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/compat
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/trirefine.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/tripcolor.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/trifinder.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/triplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/tritools.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/tricontour.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/triangulation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  copying lib/matplotlib/tri/triinterpolate.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/axes
  copying lib/matplotlib/axes/_axes.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
  copying lib/matplotlib/axes/_base.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
  copying lib/matplotlib/axes/_subplots.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
  copying lib/matplotlib/axes/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
  copying lib/matplotlib/axes/_secondary_axes.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/sphinxext
  copying lib/matplotlib/sphinxext/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/sphinxext
  copying lib/matplotlib/sphinxext/mathmpl.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/sphinxext
  copying lib/matplotlib/sphinxext/plot_directive.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/sphinxext
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/cbook
  copying lib/matplotlib/cbook/deprecation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/cbook
  copying lib/matplotlib/cbook/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/cbook
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_template.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_qt4agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_gtk3cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_tkagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_qt5agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_qt5.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_gtk3agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_pdf.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_wxagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_pgf.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_mixed.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_macosx.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_qt4.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_tkcairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_qt4cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_gtk3.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_wxcairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_nbagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_webagg_core.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_wx.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_qt5cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/_backend_tk.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/qt_compat.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_svg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/_backend_pdf_ps.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_webagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_ps.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  copying lib/matplotlib/backends/backend_agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_marker.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_determinism.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_tk.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_skew.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_cycles.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_artist.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_webagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_pdf.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_lines.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_basic.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_bases.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_pgf.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/conftest.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_simplification.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_spines.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_mathtext.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_arrow_patches.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_streamplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_tightlayout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_ps.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_type1font.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_animation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_container.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_pickle.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_dates.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_table.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_texmanager.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_pyplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backends_interactive.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_subplots.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_ticker.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_image.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_fontconfig_pattern.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_scale.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_sankey.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_colorbar.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_colors.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_usetex.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_mlab.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_font_manager.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_polar.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_quiver.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_text.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_units.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_dviread.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_widgets.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_preprocess_data.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_constrainedlayout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_nbagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_patheffects.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_patches.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_rcparams.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_tools.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_agg_filter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_style.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_category.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_offsetbox.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_contour.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_triangulation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_bbox_tight.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_png.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_transforms.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_cbook.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_qt.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_gridspec.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_afm.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_path.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_collections.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_axes.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_figure.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_legend.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_sphinxext.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_matplotlib.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_compare_images.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_ttconv.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_backend_svg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  copying lib/matplotlib/tests/test_testing.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/style
  copying lib/matplotlib/style/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/style
  copying lib/matplotlib/style/core.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/style
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/projections
  copying lib/matplotlib/projections/geo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/projections
  copying lib/matplotlib/projections/polar.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/projections
  copying lib/matplotlib/projections/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/projections
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/testing
  copying lib/matplotlib/testing/conftest.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
  copying lib/matplotlib/testing/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
  copying lib/matplotlib/testing/widgets.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
  copying lib/matplotlib/testing/exceptions.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
  copying lib/matplotlib/testing/disable_internet.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
  copying lib/matplotlib/testing/compare.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
  copying lib/matplotlib/testing/decorators.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
  copying lib/matplotlib/backends/qt_editor/_formlayout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
  copying lib/matplotlib/backends/qt_editor/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
  copying lib/matplotlib/backends/qt_editor/_formsubplottool.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
  copying lib/matplotlib/backends/qt_editor/formsubplottool.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
  copying lib/matplotlib/backends/qt_editor/figureoptions.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  copying lib/matplotlib/testing/jpl_units/UnitDblFormatter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  copying lib/matplotlib/testing/jpl_units/UnitDbl.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  copying lib/matplotlib/testing/jpl_units/EpochConverter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  copying lib/matplotlib/testing/jpl_units/Duration.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  copying lib/matplotlib/testing/jpl_units/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  copying lib/matplotlib/testing/jpl_units/UnitDblConverter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  copying lib/matplotlib/testing/jpl_units/Epoch.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  copying lib/matplotlib/testing/jpl_units/StrConverter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/pplr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/filesave.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/filesave_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/subplots.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/zoom_to_rect.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Bold.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/pncbi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/backends/web_backend/all_figures.html -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/qt4_editor_options.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/pcrro8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/forward_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/move.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/filesave_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/hand_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/help.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/stylelib/seaborn-white.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
  copying lib/matplotlib/backends/web_backend/css/fbm.css -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/sample_data/ada.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/pagdo8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/phvr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/help-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/cmsy10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/move_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Bold.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/pagk8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/stylelib/seaborn-talk.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/stylelib/seaborn-dark-palette.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/js
  copying lib/matplotlib/backends/web_backend/js/mpl_tornado.js -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/js
  copying lib/matplotlib/mpl-data/sample_data/aapl.npz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/images/zoom_to_rect.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/back.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/phvlo8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/pncri8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/back.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/stylelib/classic.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/images/forward-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/move.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/ggplot.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/images/home-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/seaborn-notebook.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/subplots-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/help_large.ppm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-BoldItalic.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/sample_data/demodata.csv -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/images/hand.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/sample_data/eeg.dat -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/sample_data/msft.csv -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerifDisplay.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/putri8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/pzdr.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/phvbo8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/backends/web_backend/.prettierrc -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/mpl-data/sample_data/grace_hopper.jpg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/images/subplots_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/grayscale.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/images/help.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/cmr10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/stylelib/seaborn-bright.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/sample_data/embedding_in_wx3.xrc -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/sample_data/None_vs_nearest-pdf.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/backends/web_backend/js/nbagg_mpl.js -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/js
  copying lib/matplotlib/mpl-data/images/zoom_to_rect-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Oblique.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/matplotlib.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/sample_data/topobathy.npz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/afm/psyr.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/home_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/seaborn-colorblind.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/sample_data/data_x_x2_x3.csv -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/hand.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/backends/web_backend/nbagg_uat.ipynb -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/mpl-data/sample_data/grace_hopper.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/afm/phvro8an.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/sample_data/ct.raw.gz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/qt4_editor_options.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/LICENSE_DEJAVU -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/stylelib/bmh.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/backends/web_backend/single_figure.html -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/mpl-data/stylelib/fivethirtyeight.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/subplots.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/seaborn-whitegrid.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/afm/pbkli8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Bold.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/stylelib/seaborn-darkgrid.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/stylelib/Solarize_Light2.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/afm/pbkd8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/qt4_editor_options_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/backends/web_backend/ipython_inline_figure.html -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/mpl-data/images/filesave.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/seaborn-dark.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/images/forward.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/help_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/sample_data/goog.npz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/afm/putbi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/backends/web_backend/css/mpl.css -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
  copying lib/matplotlib/mpl-data/images/filesave-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/sample_data/s1045.ima.gz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/images/filesave.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/pplri8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-BoldOblique.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/subplots.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/hand.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/sample_data/percent_bachelors_degrees_women_usa.csv -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/sample_data/jacksboro_fault_dem.npz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/images/move.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/move_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/phvb8an.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/phvr8an.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/home.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/ptmb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/putb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/stylelib/seaborn-paper.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/afm/cmex10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/help.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/ptmr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-BoldOblique.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/ttf/cmex10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/sample_data/README.txt -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/ttf/cmb10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/sample_data/membrane.dat -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Oblique.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/ptmri8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/cmmi10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/zoom_to_rect_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/back.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/matplotlib_128.ppm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/pagd8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/sample_data/logo2.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
  copying lib/matplotlib/mpl-data/stylelib/seaborn-deep.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/backends/web_backend/.prettierignore -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/mpl-data/images/zoom_to_rect.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/fonts/afm/pcrr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/filesave.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/phvl8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/help.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/home_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/pplbi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/back_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/move.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/seaborn-muted.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/afm/pagko8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/qt4_editor_options.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/help.ppm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/fonts/afm/phvbo8an.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/backends/web_backend/.eslintrc.js -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/mpl-data/fonts/afm/pplb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/images/forward.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/cmtt10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/backends/web_backend/package.json -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
  copying lib/matplotlib/mpl-data/fonts/ttf/LICENSE_STIX -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/home.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/images/forward_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Italic.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/images/hand.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/afm/pncb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/matplotlib_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/forward.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/back_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/subplots_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/backends/web_backend/css/page.css -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
  copying lib/matplotlib/backends/web_backend/css/boilerplate.css -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
  creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data/axes_grid
  copying lib/matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data/axes_grid
  copying lib/matplotlib/mpl-data/fonts/afm/putr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/cmr10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/backends/web_backend/js/mpl.js -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/js
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/images/move-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/phvb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/back.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/seaborn-poster.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/images/matplotlib.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/seaborn-ticks.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/stylelib/fast.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/images/back-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/home.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/tableau-colorblind10.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/images/subplots.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/phvro8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/pbkl8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/fonts/afm/pcrb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/matplotlib.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
  copying lib/matplotlib/mpl-data/images/home.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/stylelib/seaborn-pastel.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/stylelib/dark_background.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/fonts/ttf/cmss10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
  copying lib/matplotlib/mpl-data/fonts/afm/pncr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
  copying lib/matplotlib/mpl-data/images/zoom_to_rect_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/zoom_to_rect.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/images/forward.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
  copying lib/matplotlib/mpl-data/stylelib/seaborn.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  copying lib/matplotlib/mpl-data/stylelib/_classic_test_patch.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
  UPDATING build/lib.macosx-11-x86_64-3.9/matplotlib/_version.py
  set build/lib.macosx-11-x86_64-3.9/matplotlib/_version.py to '3.3.0'
  running build_ext
  creating var
  creating var/folders
  creating var/folders/bg
  creating var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn
  creating var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T
  /usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c /var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmpcrg53top.cpp -o var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmpcrg53top.o -fvisibility=hidden
  clang: error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11'
  /usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c /var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmp9g8imd9q.cpp -o var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmp9g8imd9q.o -fvisibility-inlines-hidden
  clang: error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11'
  /usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c /var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmp5ul2uuho.cpp -o var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmp5ul2uuho.o -flto
  clang: error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11'
  Extracting freetype-2.6.1.tar.gz
  Building freetype in build/freetype-2.6.1
  
  FreeType build system -- automatic system detection
  
  The following settings are used:
  
    platform                    unix
    compiler                    /usr/bin/clang
    configuration directory     ./builds/unix
    configuration rules         ./builds/unix/unix.mk
  
  If this does not correspond to your system or settings please remove the file
  `config.mk' from this directory then read the INSTALL file for help.
  
  Otherwise, simply type `/Library/Developer/CommandLineTools/usr/bin/make' again to build the library,
  or `/Library/Developer/CommandLineTools/usr/bin/make refdoc' to build the API reference (this needs python >= 2.6).
  
  Generating modules list in ./objs/ftmodule.h...
  * module: truetype  (Windows/Mac font files with extension *.ttf or *.ttc)
  * module: type1     (Postscript font files with extension *.pfa or *.pfb)
  * module: cff       (OpenType fonts with extension *.otf)
  * module: cid       (Postscript CID-keyed fonts, no known extension)
  * module: pfr       (PFR/TrueDoc font files with extension *.pfr)
  * module: type42    (Type 42 font files with no known extension)
  * module: winfnt    (Windows bitmap fonts with extension *.fnt or *.fon)
  * module: pcf       (pcf bitmap fonts)
  * module: bdf       (bdf bitmap fonts)
  * module: sfnt      (helper module for TrueType & OpenType formats)
  * module: autofit   (automatic hinting module)
  * module: pshinter  (Postscript hinter module)
  * module: raster    (monochrome bitmap renderer)
  * module: smooth    (anti-aliased bitmap renderer)
  * module: smooth    (anti-aliased bitmap renderer for LCDs)
  * module: smooth    (anti-aliased bitmap renderer for vertical LCDs)
  * module: psaux     (Postscript Type 1 & Type 2 helper module)
  * module: psnames   (Postscript & Unicode Glyph name handling)
  done.
  cd builds/unix; \
  	        ./configure  '--with-zlib=no' '--with-bzip2=no' '--with-png=no' '--with-harfbuzz=no' '--enable-static' '--disable-shared'
  checking build system type... x86_64-apple-darwin20.3.0
  checking host system type... x86_64-apple-darwin20.3.0
  checking for gcc... /usr/bin/clang
  checking whether the C compiler works... yes
  checking for C compiler default output file name... a.out
  checking for suffix of executables...
  checking whether we are cross compiling... no
  checking for suffix of object files... o
  checking whether we are using the GNU C compiler... yes
  checking whether /usr/bin/clang accepts -g... yes
  checking for /usr/bin/clang option to accept ISO C89... none needed
  checking how to run the C preprocessor... /usr/bin/clang -E
  checking for pkg-config... /usr/local/bin/pkg-config
  checking pkg-config is at least version 0.24... yes
  checking how to print strings... printf
  checking for a sed that does not truncate output... /usr/bin/sed
  checking for grep that handles long lines and -e... /usr/bin/grep
  checking for egrep... /usr/bin/grep -E
  checking for fgrep... /usr/bin/grep -F
  checking for ld used by /usr/bin/clang... /Library/Developer/CommandLineTools/usr/bin/ld
  checking if the linker (/Library/Developer/CommandLineTools/usr/bin/ld) is GNU ld... no
  checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
  checking the name lister (/usr/bin/nm -B) interface... BSD nm
  checking whether ln -s works... yes
  checking the maximum length of command line arguments... 786432
  checking how to convert x86_64-apple-darwin20.3.0 file names to x86_64-apple-darwin20.3.0 format... func_convert_file_noop
  checking how to convert x86_64-apple-darwin20.3.0 file names to toolchain format... func_convert_file_noop
  checking for /Library/Developer/CommandLineTools/usr/bin/ld option to reload object files... -r
  checking for objdump... objdump
  checking how to recognize dependent libraries... pass_all
  checking for dlltool... no
  checking how to associate runtime and link libraries... printf %s\n
  checking for ar... ar
  checking for archiver @FILE support... no
  checking for strip... strip
  checking for ranlib... ranlib
  checking for gawk... no
  checking for mawk... no
  checking for nawk... no
  checking for awk... awk
  checking command to parse /usr/bin/nm -B output from /usr/bin/clang object... ok
  checking for sysroot... no
  checking for a working dd... /bin/dd
  checking how to truncate binary pipes... /bin/dd bs=4096 count=1
  checking for mt... no
  checking if : is a manifest tool... no
  checking for dsymutil... dsymutil
  checking for nmedit... nmedit
  checking for lipo... lipo
  checking for otool... otool
  checking for otool64... no
  checking for -single_module linker flag... yes
  checking for -exported_symbols_list linker flag... yes
  checking for -force_load linker flag... yes
  checking for ANSI C header files... yes
  checking for sys/types.h... yes
  checking for sys/stat.h... yes
  checking for stdlib.h... yes
  checking for string.h... yes
  checking for memory.h... yes
  checking for strings.h... yes
  checking for inttypes.h... yes
  checking for stdint.h... yes
  checking for unistd.h... yes
  checking for dlfcn.h... yes
  checking for objdir... .libs
  checking if /usr/bin/clang supports -fno-rtti -fno-exceptions... yes
  checking for /usr/bin/clang option to produce PIC... -fno-common -DPIC
  checking if /usr/bin/clang PIC flag -fno-common -DPIC works... yes
  checking if /usr/bin/clang static flag -static works... no
  checking if /usr/bin/clang supports -c -o file.o... yes
  checking if /usr/bin/clang supports -c -o file.o... (cached) yes
  checking whether the /usr/bin/clang linker (/Library/Developer/CommandLineTools/usr/bin/ld) supports shared libraries... yes
  checking dynamic linker characteristics... darwin20.3.0 dyld
  checking how to hardcode library paths into programs... immediate
  checking whether stripping libraries is possible... yes
  checking if libtool supports shared libraries... yes
  checking whether to build shared libraries... no
  checking whether to build static libraries... yes
  checking for a BSD-compatible install... /usr/bin/install -c
  checking for a thread-safe mkdir -p... ./install-sh -c -d
  checking for ANSI C header files... (cached) yes
  checking fcntl.h usability... yes
  checking fcntl.h presence... yes
  checking for fcntl.h... yes
  checking for unistd.h... (cached) yes
  checking for an ANSI C-conforming const... yes
  checking size of int... 4
  checking size of long... 8
  checking whether cpp computation of bit length in ftconfig.in works... yes
  checking for stdlib.h... (cached) yes
  checking for unistd.h... (cached) yes
  checking for sys/param.h... yes
  checking for getpagesize... yes
  checking for working mmap... yes
  checking whether munmap is declared... yes
  checking for munmap's first parameter type... void *
  checking for memcpy... yes
  checking for memmove... yes
  checking gcc compiler flag -pedantic to assure ANSI C works correctly... ok, add it to XX_ANSIFLAGS
  checking gcc compiler flag -ansi to assure ANSI C works correctly... ok, add it to XX_ANSIFLAGS
  configure: creating ./config.status
  config.status: creating unix-cc.mk
  config.status: creating unix-def.mk
  config.status: creating ftconfig.h
  config.status: executing libtool commands
  configure:
  
  Library configuration:
    external zlib: no
    bzip2:         no
    libpng:        no
    harfbuzz:      no
  
  make: Nothing to be done for `unix'.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftsystem.lo builds/unix/ftsystem.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" builds/unix/ftsystem.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftsystem.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftdebug.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftdebug.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftdebug.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftdebug.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftinit.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftinit.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftinit.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftinit.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbase.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbase.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbase.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbase.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbase.c:26:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftcalc.c:38:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbbox.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbbox.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbbox.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbbox.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbbox.c:33:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbdf.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbdf.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbdf.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbdf.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbitmap.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbitmap.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftbitmap.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbitmap.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftcid.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftcid.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftcid.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftcid.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftfntfmt.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftfntfmt.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftfntfmt.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftfntfmt.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftfstype.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftfstype.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftfstype.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftfstype.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgasp.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftgasp.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftgasp.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgasp.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftglyph.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftglyph.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftglyph.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftglyph.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgxval.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftgxval.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftgxval.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgxval.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftlcdfil.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftlcdfil.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftlcdfil.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftlcdfil.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftmm.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftmm.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftmm.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftmm.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftotval.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftotval.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftotval.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftotval.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftpatent.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftpatent.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftpatent.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftpatent.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftpfr.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftpfr.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftpfr.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftpfr.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftstroke.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftstroke.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftstroke.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftstroke.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftsynth.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftsynth.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftsynth.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftsynth.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/fttype1.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/fttype1.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/fttype1.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/fttype1.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftwinfnt.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftwinfnt.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/base/ftwinfnt.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftwinfnt.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/truetype -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/truetype.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/truetype/truetype.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/truetype -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/truetype/truetype.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/truetype.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/truetype/truetype.c:25:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/truetype/ttgload.c:21:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type1 -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type1.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type1/type1.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type1 -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type1/type1.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type1.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type1/type1.c:23:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type1/t1load.c:68:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cff -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/cff.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cff/cff.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cff -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cff/cff.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/cff.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cff/cff.c:27:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cff/cffobjs.c:22:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cid -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type1cid.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cid/type1cid.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cid -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cid/type1cid.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type1cid.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cid/type1cid.c:26:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cid/cidgload.c:25:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pfr -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pfr.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pfr/pfr.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pfr -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pfr/pfr.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pfr.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pfr/pfr.c:25:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pfr/pfrobjs.c:26:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type42 -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type42.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type42/type42.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type42 -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/type42/type42.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type42.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/winfonts -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/winfnt.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/winfonts/winfnt.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/winfonts -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/winfonts/winfnt.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/winfnt.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pcf -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pcf.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pcf/pcf.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pcf -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pcf/pcf.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pcf.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/bdf -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/bdf.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/bdf/bdf.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/bdf -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/bdf/bdf.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/bdf.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/sfnt -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/sfnt.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/sfnt/sfnt.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/sfnt -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/sfnt/sfnt.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/sfnt.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/autofit -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/autofit.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/autofit/autofit.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/autofit -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/autofit/autofit.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/autofit.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/autofit/autofit.c:25:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/autofit/afhints.c:21:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pshinter -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pshinter.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pshinter/pshinter.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pshinter -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pshinter/pshinter.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pshinter.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pshinter/pshinter.c:23:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/pshinter/pshrec.c:23:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/raster -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/raster.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/raster/raster.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/raster -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/raster/raster.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/raster.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/raster/raster.c:23:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/raster/ftraster.c:67:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/smooth -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/smooth.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/smooth/smooth.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/smooth -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/smooth/smooth.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/smooth.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cache -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftcache.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cache/ftcache.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cache -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/cache/ftcache.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftcache.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgzip.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/gzip/ftgzip.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/gzip/ftgzip.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgzip.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/lzw -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftlzw.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/lzw/ftlzw.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/lzw -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/lzw/ftlzw.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftlzw.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbzip2.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/bzip2/ftbzip2.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/bzip2/ftbzip2.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbzip2.o
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psaux -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/psaux.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psaux/psaux.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psaux -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psaux/psaux.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/psaux.o
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psaux/psaux.c:22:
  In file included from /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psaux/psobjs.c:22:
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      long long  ret, tmp;
      ^
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:198:5: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/internal/ftcalc.h:201:13: warning: 'long long' is an extension when C99 mode is not enabled [-Wlong-long]
      ret  = (long long)a * b;
              ^
  3 warnings generated.
  ./builds/unix/libtool --mode=compile /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psnames -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include  -c -Wall  -fPIC -DDARWIN_NO_CARBON -DFT_CONFIG_CONFIG_H="<ftconfig.h>" -DFT2_BUILD_LIBRARY -DFT_CONFIG_MODULES_H="<ftmodule.h>"  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/psnames.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psnames/psnames.c
  libtool: compile:  /usr/bin/clang -pedantic -ansi -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psnames -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs -I./builds/unix -I/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include -c -Wall -fPIC -DDARWIN_NO_CARBON "-DFT_CONFIG_CONFIG_H=<ftconfig.h>" -DFT2_BUILD_LIBRARY "-DFT_CONFIG_MODULES_H=<ftmodule.h>" /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/psnames/psnames.c -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/psnames.o
  /usr/bin/clang		  -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/apinames /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/src/tools/apinames.c
  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/apinames -o/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftexport.sym  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/freetype.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftadvanc.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftautoh.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftbbox.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftbdf.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftbitmap.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftbzip2.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftcache.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftcffdrv.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftchapters.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftcid.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/fterrdef.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/fterrors.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftfntfmt.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftgasp.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftglyph.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftgxval.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftgzip.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftimage.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftincrem.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftlcdfil.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftlist.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftlzw.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftmac.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftmm.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftmodapi.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftmoderr.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftotval.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftoutln.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftpfr.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftrender.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftsizes.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftsnames.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftstroke.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftsynth.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftsystem.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/fttrigon.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftttdrv.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/fttypes.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ftwinfnt.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/t1tables.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ttnameid.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/tttables.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/tttags.h /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/include/freetype/ttunpat.h
  ./builds/unix/libtool --mode=link /usr/bin/clang -o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/libfreetype.la  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftsystem.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftdebug.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftinit.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbase.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbbox.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbdf.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbitmap.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftcid.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftfntfmt.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftfstype.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgasp.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftglyph.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgxval.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftlcdfil.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftmm.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftotval.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftpatent.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftpfr.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftstroke.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftsynth.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/fttype1.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftwinfnt.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/truetype.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type1.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/cff.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type1cid.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pfr.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type42.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/winfnt.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pcf.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/bdf.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/sfnt.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/autofit.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pshinter.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/raster.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/smooth.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftcache.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgzip.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftlzw.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbzip2.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/psaux.lo /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/psnames.lo -rpath /usr/local/lib -version-info 18:1:12  -no-undefined
  libtool: link: ar cru /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/.libs/libfreetype.a  /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftsystem.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftdebug.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftinit.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbase.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbbox.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbdf.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbitmap.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftcid.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftfntfmt.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftfstype.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgasp.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftglyph.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgxval.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftlcdfil.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftmm.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftotval.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftpatent.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftpfr.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftstroke.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftsynth.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/fttype1.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftwinfnt.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/truetype.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type1.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/cff.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type1cid.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pfr.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/type42.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/winfnt.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pcf.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/bdf.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/sfnt.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/autofit.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/pshinter.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/raster.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/smooth.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftcache.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftgzip.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftlzw.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/ftbzip2.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/psaux.o /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/psnames.o
  libtool: link: ranlib /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/.libs/libfreetype.a
  libtool: link: ( cd "/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/objs/.libs" && rm -f "libfreetype.la" && ln -s "../libfreetype.la" "libfreetype.la" )
  rm -f builds/unix/freetype-config builds/unix/freetype-config.tmp
  sed -e 's|%LIBSSTATIC_CONFIG%|-lfreetype|'   \
  	    -e 's|%build_libtool_libs%||' \
  	    -e 's|%exec_prefix%|/usr/local|'               \
  	    -e 's|%ft_version%|18.1.12|'                 \
  	    -e 's|%includedir%|/usr/local/include|'                 \
  	    -e 's|%libdir%|/usr/local/lib|'                         \
  	    -e 's|%prefix%|/usr/local|'                         \
  	    /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/builds/unix/freetype-config.in                                                 \
  	    > builds/unix/freetype-config.tmp
  chmod +x builds/unix/freetype-config.tmp
  chmod a-w builds/unix/freetype-config.tmp
  mv builds/unix/freetype-config.tmp builds/unix/freetype-config
  rm -f builds/unix/freetype2.pc builds/unix/freetype2.pc.tmp
  sed -e 's|%REQUIRES_PRIVATE%||'     \
  	    -e 's|%LIBS_PRIVATE%||'             \
  	    -e 's|%build_libtool_libs%||' \
  	    -e 's|%exec_prefix%|/usr/local|'             \
  	    -e 's|%ft_version%|18.1.12|'                 \
  	    -e 's|%includedir%|/usr/local/include|'               \
  	    -e 's|%libdir%|/usr/local/lib|'                       \
  	    -e 's|%prefix%|/usr/local|'                       \
  	    /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/build/freetype-2.6.1/builds/unix/freetype2.in                                                 \
  	    > builds/unix/freetype2.pc.tmp
  chmod a-w builds/unix/freetype2.pc.tmp
  mv builds/unix/freetype2.pc.tmp builds/unix/freetype2.pc
  building 'matplotlib.backends._backend_agg' extension
  creating build/temp.macosx-11-x86_64-3.9
  creating build/temp.macosx-11-x86_64-3.9/extern
  creating build/temp.macosx-11-x86_64-3.9/extern/agg24-svn
  creating build/temp.macosx-11-x86_64-3.9/extern/agg24-svn/src
  creating build/temp.macosx-11-x86_64-3.9/src
  /usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=local -Ibuild/freetype-2.6.1/include -Iextern/agg24-svn/include -I/usr/local/lib/python3.9/site-packages/numpy/core/include -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-11-x86_64-3.9/extern/agg24-svn/src/agg_bezier_arc.o
  clang: error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11'
  error: command '/usr/bin/clang' failed with exit code 1
  ----------------------------------------
  ERROR: Failed building wheel for matplotlib
  Running setup.py clean for matplotlib
Failed to build matplotlib
Installing collected packages: matplotlib, ffmpeg-python
    Running setup.py install for matplotlib ... error
    ERROR: Command errored out with exit status 1:
     command: /usr/local/opt/[email protected]/bin/python3.9 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/setup.py'"'"'; __file__='"'"'/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-record-_2rw_jbj/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.9/matplotlib
         cwd: /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/
    Complete output (582 lines):
    
    Edit setup.cfg to change the build options; suppress output with --quiet.
    
    BUILDING MATPLOTLIB
      matplotlib: yes [3.3.0]
          python: yes [3.9.4 (default, Apr  5 2021, 01:50:46)  [Clang 12.0.0
                      (clang-1200.0.32.29)]]
        platform: yes [darwin]
     sample_data: yes [installing]
           tests: no  [skipping due to configuration]
          macosx: yes [installing]
    
    running install
    running build
    running build_py
    creating build/lib.macosx-11-x86_64-3.9
    copying lib/pylab.py -> build/lib.macosx-11-x86_64-3.9
    creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits
    copying lib/mpl_toolkits/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits
    creating build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/hatch.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/transforms.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_text_layout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/legend_handler.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/axis.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/textpath.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/quiver.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/backend_bases.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/units.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/pylab.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/colorbar.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_version.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_cm.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/backend_managers.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/mathtext.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/font_manager.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/bezier.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/cm.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/legend.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/figure.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/ttconv.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/offsetbox.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/tight_bbox.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/container.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/gridspec.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/lines.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/widgets.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/blocking_input.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/dviread.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/animation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/type1font.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_mathtext_data.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/artist.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/backend_tools.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/docstring.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_internal_utils.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_color_data.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/texmanager.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/afm.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/patches.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/stackplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/collections.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/spines.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/text.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/markers.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/mlab.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/fontconfig_pattern.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_pylab_helpers.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/tight_layout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_cm_listed.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/dates.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/table.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_animation_data.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/pyplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/rcsetup.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/ticker.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/path.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/contour.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_layoutbox.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/image.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/scale.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/category.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/_constrained_layout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/sankey.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/patheffects.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/streamplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    copying lib/matplotlib/colors.py -> build/lib.macosx-11-x86_64-3.9/matplotlib
    creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/inset_locator.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/axes_grid.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/parasite_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/colorbar.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/anchored_artists.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/axes_size.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/mpl_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/axes_rgb.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    copying lib/mpl_toolkits/axes_grid1/axes_divider.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid1
    creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/inset_locator.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/axislines.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/axes_grid.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/grid_finder.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/parasite_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/colorbar.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/anchored_artists.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/axis_artist.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/axisline_style.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/axes_size.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/angle_helper.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/clip_path.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/floating_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/axes_rgb.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    copying lib/mpl_toolkits/axes_grid/axes_divider.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axes_grid
    creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axisartist_axislines.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/conftest.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axisartist_grid_finder.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axisartist_floating_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axisartist_axis_artist.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axisartist_angle_helper.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axes_grid.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axisartist_clip_path.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_mplot3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axisartist_grid_helper_curvelinear.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    copying lib/mpl_toolkits/tests/test_axes_grid1.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/tests
    creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
    copying lib/mpl_toolkits/mplot3d/proj3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
    copying lib/mpl_toolkits/mplot3d/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
    copying lib/mpl_toolkits/mplot3d/axes3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
    copying lib/mpl_toolkits/mplot3d/axis3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
    copying lib/mpl_toolkits/mplot3d/art3d.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/mplot3d
    creating build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/axislines.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/axes_grid.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/grid_finder.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/parasite_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/axis_artist.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/axisline_style.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/__init__.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/angle_helper.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/grid_helper_curvelinear.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/clip_path.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/floating_axes.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/axes_rgb.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    copying lib/mpl_toolkits/axisartist/axes_divider.py -> build/lib.macosx-11-x86_64-3.9/mpl_toolkits/axisartist
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/compat
    copying lib/matplotlib/compat/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/compat
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/trirefine.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/tripcolor.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/trifinder.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/triplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/tritools.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/tricontour.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/triangulation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    copying lib/matplotlib/tri/triinterpolate.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tri
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/axes
    copying lib/matplotlib/axes/_axes.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
    copying lib/matplotlib/axes/_base.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
    copying lib/matplotlib/axes/_subplots.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
    copying lib/matplotlib/axes/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
    copying lib/matplotlib/axes/_secondary_axes.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/axes
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/sphinxext
    copying lib/matplotlib/sphinxext/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/sphinxext
    copying lib/matplotlib/sphinxext/mathmpl.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/sphinxext
    copying lib/matplotlib/sphinxext/plot_directive.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/sphinxext
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/cbook
    copying lib/matplotlib/cbook/deprecation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/cbook
    copying lib/matplotlib/cbook/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/cbook
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_template.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_qt4agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_gtk3cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_tkagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_qt5agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_qt5.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_gtk3agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_pdf.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_wxagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_pgf.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_mixed.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_macosx.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_qt4.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_tkcairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_qt4cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_gtk3.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_wxcairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_nbagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_webagg_core.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_wx.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_qt5cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/_backend_tk.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/qt_compat.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_svg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/_backend_pdf_ps.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_webagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_ps.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    copying lib/matplotlib/backends/backend_agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_marker.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_determinism.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_tk.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_skew.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_cycles.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_artist.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_webagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_pdf.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_lines.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_basic.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_bases.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_pgf.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/conftest.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_simplification.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_spines.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_mathtext.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_arrow_patches.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_streamplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_tightlayout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_ps.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_type1font.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_animation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_container.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_pickle.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_dates.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_table.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_texmanager.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_pyplot.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backends_interactive.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_subplots.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_ticker.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_image.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_fontconfig_pattern.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_scale.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_sankey.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_colorbar.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_colors.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_usetex.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_cairo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_mlab.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_font_manager.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_polar.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_agg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_quiver.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_text.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_units.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_dviread.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_widgets.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_preprocess_data.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_constrainedlayout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_nbagg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_patheffects.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_patches.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_rcparams.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_tools.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_agg_filter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_style.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_category.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_offsetbox.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_contour.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_triangulation.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_bbox_tight.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_png.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_transforms.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_cbook.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_qt.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_gridspec.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_afm.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_path.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_collections.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_axes.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_figure.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_legend.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_sphinxext.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_matplotlib.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_compare_images.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_ttconv.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_backend_svg.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    copying lib/matplotlib/tests/test_testing.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/tests
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/style
    copying lib/matplotlib/style/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/style
    copying lib/matplotlib/style/core.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/style
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/projections
    copying lib/matplotlib/projections/geo.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/projections
    copying lib/matplotlib/projections/polar.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/projections
    copying lib/matplotlib/projections/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/projections
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/testing
    copying lib/matplotlib/testing/conftest.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
    copying lib/matplotlib/testing/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
    copying lib/matplotlib/testing/widgets.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
    copying lib/matplotlib/testing/exceptions.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
    copying lib/matplotlib/testing/disable_internet.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
    copying lib/matplotlib/testing/compare.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
    copying lib/matplotlib/testing/decorators.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
    copying lib/matplotlib/backends/qt_editor/_formlayout.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
    copying lib/matplotlib/backends/qt_editor/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
    copying lib/matplotlib/backends/qt_editor/_formsubplottool.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
    copying lib/matplotlib/backends/qt_editor/formsubplottool.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
    copying lib/matplotlib/backends/qt_editor/figureoptions.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/qt_editor
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    copying lib/matplotlib/testing/jpl_units/UnitDblFormatter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    copying lib/matplotlib/testing/jpl_units/UnitDbl.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    copying lib/matplotlib/testing/jpl_units/EpochConverter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    copying lib/matplotlib/testing/jpl_units/Duration.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    copying lib/matplotlib/testing/jpl_units/__init__.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    copying lib/matplotlib/testing/jpl_units/UnitDblConverter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    copying lib/matplotlib/testing/jpl_units/Epoch.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    copying lib/matplotlib/testing/jpl_units/StrConverter.py -> build/lib.macosx-11-x86_64-3.9/matplotlib/testing/jpl_units
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/pzdr.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/putb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/cmmi10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/hand.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/stylelib/seaborn-ticks.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/images/forward-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/subplots_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/sample_data/topobathy.npz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/afm/pplbi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/LICENSE_STIX -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/subplots.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/images/matplotlib.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/filesave.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/hand.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/qt4_editor_options.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/forward_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/help-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/seaborn-pastel.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/ptmb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/zoom_to_rect.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-BoldOblique.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/sample_data/jacksboro_fault_dem.npz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/images/filesave_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Bold.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-BoldItalic.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerifDisplay.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/forward_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/home.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/fivethirtyeight.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/images/help.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
    copying lib/matplotlib/backends/web_backend/css/boilerplate.css -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
    copying lib/matplotlib/mpl-data/fonts/afm/phvl8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/phvr8an.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/pcrr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/cmex10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/subplots.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/back.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/stylelib/seaborn.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/home.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/images/filesave_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/matplotlib.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/help.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/subplots.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/back_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/pncbi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/phvb8an.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/stylelib/Solarize_Light2.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/phvro8an.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/subplots_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/subplots-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/images/move.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/pagd8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/backends/web_backend/.prettierignore -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    copying lib/matplotlib/mpl-data/images/hand.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/sample_data/membrane.dat -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/afm/ptmri8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/pagdo8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/qt4_editor_options.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/sample_data/grace_hopper.jpg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/sample_data/logo2.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/images/help_large.ppm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/dark_background.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/putri8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/back-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/home.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/forward.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/fonts/afm/pncb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/stylelib/seaborn-dark-palette.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/images/qt4_editor_options.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/sample_data/Minduka_Present_Blue_Pack.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/matplotlib_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/forward.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/pncr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/help.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/phvro8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Oblique.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/afm/psyr.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/cmb10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/forward.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/pagko8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/sample_data/README.txt -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/subplots.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/zoom_to_rect-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/ttf/cmex10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/afm/pcrro8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/stylelib/fast.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/cmsy10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/hand.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/backends/web_backend/.eslintrc.js -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    copying lib/matplotlib/backends/web_backend/single_figure.html -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    copying lib/matplotlib/mpl-data/fonts/afm/pbkd8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/fonts/afm/ptmr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/backends/web_backend/package.json -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    copying lib/matplotlib/mpl-data/images/home_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/afm/pncri8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Bold.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/sample_data/ada.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/images/filesave.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/pbkli8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/zoom_to_rect_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/js
    copying lib/matplotlib/backends/web_backend/js/mpl_tornado.js -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/js
    copying lib/matplotlib/mpl-data/sample_data/ct.raw.gz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/stylelib/seaborn-poster.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/putr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/pbkl8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/backends/web_backend/.prettierrc -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    copying lib/matplotlib/mpl-data/images/back.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/home.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/seaborn-dark.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/images/zoom_to_rect.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/seaborn-paper.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansMono-Bold.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/afm/phvlo8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/qt4_editor_options_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/sample_data/msft.csv -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/backends/web_backend/css/fbm.css -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
    copying lib/matplotlib/mpl-data/sample_data/grace_hopper.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/images/help.ppm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/sample_data/data_x_x2_x3.csv -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/images/move.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/LICENSE_DEJAVU -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/forward.pdf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/move.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    creating build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data/axes_grid
    copying lib/matplotlib/mpl-data/sample_data/axes_grid/bivariate_normal.npy -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data/axes_grid
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/stylelib/seaborn-bright.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/ttf/cmss10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/zoom_to_rect_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/backends/web_backend/nbagg_uat.ipynb -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/sample_data/eeg.dat -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/backends/web_backend/css/mpl.css -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
    copying lib/matplotlib/mpl-data/stylelib/seaborn-white.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/afm/phvbo8an.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/stylelib/_classic_test_patch.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/sample_data/None_vs_nearest-pdf.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/stylelib/grayscale.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/pplr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/afm/putbi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/stylelib/classic.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/stylelib/seaborn-notebook.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-Oblique.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/sample_data/goog.npz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSerif-Italic.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/ttf/cmr10.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/back.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/sample_data/embedding_in_wx3.xrc -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/images/filesave.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/seaborn-deep.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/images/filesave-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/hand_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/backends/web_backend/css/page.css -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/css
    copying lib/matplotlib/mpl-data/sample_data/demodata.csv -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/images/move_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSansDisplay.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/images/zoom_to_rect.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/help.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/ttf/DejaVuSans-BoldOblique.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/images/back_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/seaborn-whitegrid.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/backends/web_backend/js/mpl.js -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/js
    copying lib/matplotlib/mpl-data/fonts/afm/pplb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/pplri8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/stylelib/bmh.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/sample_data/s1045.ima.gz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/stylelib/seaborn-talk.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/pcrb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/phvbo8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/help_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/cmr10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/stylelib/seaborn-colorblind.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/images/home_large.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/tableau-colorblind10.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/sample_data/aapl.npz -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/sample_data/percent_bachelors_degrees_women_usa.csv -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/sample_data
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/fonts/afm/phvr8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/matplotlib.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/stylelib/seaborn-muted.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/backends/web_backend/js/nbagg_mpl.js -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend/js
    copying lib/matplotlib/mpl-data/images/zoom_to_rect.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/pagk8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/matplotlib_128.ppm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/backends/web_backend/ipython_inline_figure.html -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    copying lib/matplotlib/mpl-data/stylelib/seaborn-darkgrid.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/images/move.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/back.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/pdfcorefonts
    copying lib/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/ttf
    copying lib/matplotlib/mpl-data/stylelib/ggplot.mplstyle -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/stylelib
    copying lib/matplotlib/mpl-data/fonts/afm/cmtt10.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/move_large.png -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/fonts/afm/phvb8a.afm -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/fonts/afm
    copying lib/matplotlib/mpl-data/images/filesave.gif -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/backends/web_backend/all_figures.html -> build/lib.macosx-11-x86_64-3.9/matplotlib/backends/web_backend
    copying lib/matplotlib/mpl-data/images/home-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    copying lib/matplotlib/mpl-data/images/move-symbolic.svg -> build/lib.macosx-11-x86_64-3.9/matplotlib/mpl-data/images
    UPDATING build/lib.macosx-11-x86_64-3.9/matplotlib/_version.py
    set build/lib.macosx-11-x86_64-3.9/matplotlib/_version.py to '3.3.0'
    running build_ext
    /usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c /var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmpkahkij9v.cpp -o var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmpkahkij9v.o -fvisibility=hidden
    clang: error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11'
    /usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c /var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmp9b9eltwk.cpp -o var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmp9b9eltwk.o -fvisibility-inlines-hidden
    clang: error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11'
    /usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c /var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmpl2zohbrw.cpp -o var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/tmpl2zohbrw.o -flto
    clang: error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11'
    building 'matplotlib.backends._backend_agg' extension
    creating build/temp.macosx-11-x86_64-3.9
    creating build/temp.macosx-11-x86_64-3.9/extern
    creating build/temp.macosx-11-x86_64-3.9/extern/agg24-svn
    creating build/temp.macosx-11-x86_64-3.9/extern/agg24-svn/src
    creating build/temp.macosx-11-x86_64-3.9/src
    /usr/bin/clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_backends__backend_agg_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -DFREETYPE_BUILD_TYPE=local -Ibuild/freetype-2.6.1/include -Iextern/agg24-svn/include -I/usr/local/lib/python3.9/site-packages/numpy/core/include -I/usr/local/include -I/usr/local/opt/[email protected]/include -I/usr/local/opt/sqlite/include -I/usr/local/opt/[email protected]/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c extern/agg24-svn/src/agg_bezier_arc.cpp -o build/temp.macosx-11-x86_64-3.9/extern/agg24-svn/src/agg_bezier_arc.o
    clang: error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11'
    error: command '/usr/bin/clang' failed with exit code 1
    ----------------------------------------
ERROR: Command errored out with exit status 1: /usr/local/opt/[email protected]/bin/python3.9 -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/setup.py'"'"'; __file__='"'"'/private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-install-q1cvgpzw/matplotlib_c4566a4987464974815fb49f05d4bbc3/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record /private/var/folders/bg/h16wmjv17cq2l5_mgpn5m0lr0000gn/T/pip-record-_2rw_jbj/install-record.txt --single-version-externally-managed --compile --install-headers /usr/local/include/python3.9/matplotlib Check the logs for full command output.

Bitrate in table.txt

Hey @BassThatHertz
how about we take the avg bitrate that ffmpeg outputs at the end of an encode and add that to the table?
Just wanted to make sure that was something you'd like before I'd dive into it..

Invalid syntax when calculating the quality achieved with different CRF values

As described in your readme for calculating the quality achieved with different CRF values I tried this:
python video-metrics.py -ovp test.mp4 -e x264 -crf 18 19 20 -p veryfast -ssim -psnr

and I get this:

  File "video-metrics.py", line 61
    f.write(f'PSNR/SSIM/VMAF values are in the format: Min | Standard Deviation | Mean\n')
                                                                                        ^
SyntaxError: invalid syntax

Certain file names cause a problem

I'm having a problem with a file that has brackets in its name. I ran into the issue when using ntp mode with a reference input file that has brackets in the name.

How to reproduce: python3 main.py -ntm -ovp "/home/veikk0/Videos/[test] test.mkv" -tvp "/home/veikk0/Videos/vtest.mkv" -vf scale=-2:480

What happens when I execute the above command is that instead of the expected file name directory being created in the video-quality-metris directory, a directory named ( is created. This will have subdirectories with names derived from the full -ovp input. So the directory structure is video-quality-metrics/(/home/veikk0/Videos/vtest.mkv)/.

The VMAF calculation itself finishes and there is a QualityMetrics.json file in the vtest.mkv) directory, but the process crashes with the following output:

Traceback (most recent call last):
  File "main.py", line 191, in <module>
    transcoded_bitrate = provider.get_bitrate(args.transcoded_video_path)
  File "/home/veikk0/sources/video-quality-metrics/utils.py", line 71, in get_bitrate
    return f'{force_decimal_places(int(bitrate) / 1_000_000, decimal_places)} Mbps'
  File "/home/veikk0/sources/video-quality-metrics/utils.py", line 22, in force_decimal_places
    return '{:0.{dp}f}'.format(value, dp=decimal_places)
ValueError: Format specifier missing precision

This is on Linux Mint 19.

Invalid Preset when Calculating the quality achieved with different presets

Tried this:
python video-metrics.py -ovp test.mp4 -e x264 -p medium fast faster -crf 18 -ssim -psnr

Got this:

-----------------------------------------------------------------------------------------------------------
If the path contains a space, the path argument must be surrounded in double quotes. Example:
python video-metrics.py -ovp "C:/Users/H/Desktop/test file.mp4" -p fast veryfast
For more information, enter 'python video-metrics.py -h'
-----------------------------------------------------------------------------------------------------------
File: test.mp4
Framerate: 23.976023976023978 FPS
More than one CRF value specified. CRF comparison mode activated.
CRF values [18] will be compared and the ['medium', 'fast', 'faster'] will be used.
-----------------------------------------------------------------------------------------------------------
Transcoding the video with CRF 18...
Guessed Channel Layout for Input Stream #0.1 : 6.1
x264 [error]: invalid preset 'mediumfastfaster'
[libx264 @ 00000268bf4f00c0] Error setting preset/tune mediumfastfaster/(null).
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

Error initializing complex filters.

In commit 6c1f273 and earlier versions can be used normally.

All versions run after this commit will prompt the following message:

python3 main.py -ntm -ovp 00037.m2ts -tvp 00037-65.mkv
--------------------------------------------------------------------------------
Video Quality Metrics
GitHub.com/CrypticSignal/video-quality-metrics
--------------------------------------------------------------------------------
Here's some information about the original video:
Filename: 00037.m2ts
Bitrate: 15.19 Mbps
Framerate: 24000/1001 (23.976023976023978) FPS
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Calculating the VMAF...
[Parsed_libvmaf_2 @ 0x110608cb0] Option 'model' not found                       
[AVFilterGraph @ 0x110608130] Error initializing filter 'libvmaf' with args 'model=path=vmaf_models/vmaf_v0.6.1.json:log_fmt=json:log_path=\[VQM\] 00037-65.mkv/Metrics of each frame.json:n_subsample=1:n_threads=8:feature='
Error initializing complex filters.
Option not found
  0%|                                             | 0/2891 [00:00<?, ? frames/s]
Done!
Traceback (most recent call last):
  File "/Users/x/Movies/video-quality-metrics-master/main.py", line 325, in <module>
    get_metrics_save_table(
  File "/Users/x/Movies/video-quality-metrics-master/metrics.py", line 23, in get_metrics_save_table
    with open(json_file_path, "r") as f:
FileNotFoundError: [Errno 2] No such file or directory: '[VQM] 00037-65.mkv/Metrics of each frame.json'

Big performance increase?

I have a suggestion for a major performance increase in VMAF calculation; add an option to use the subsampling option, which only calculates VMAF for every x frames.

In FFmpeg's vmaf filter the parameter is called n_subsample, but I'm pretty sure this is a feature of the VMAF library itself.

However, this might cause some problems for and require some refactoring of the by-frame score graph generation or accuracy, since in this mode a score is not calculated for every frame. For the use case of preset comparison this isn't really a problem, since only calculating a score for every X frames doesn't change the average very much at all (as long as you use a value that's within reason).

What I've noticed in terms of performance changes is that the larger the subsample number, the more the bottleneck is moved to the decoder. The videos still need to decoded in their entirety, and for something like 4K this can be a major CPU hog, especially for AV1. So if this gets implemented, it might be a good idea to recommend that an FFmpeg build with dav1d is used, since that's significantly faster at decoding AV1 than libaom's decoder.

Apply FFmpeg filters on videos

Here's my problem/use case.

I have a file I've already transcoded with FFmpeg, and in the process of doing that I applied deinterlacing. When calculating VMAF for this file I'd need to apply the same filter to the original file. As a workaround I could create a lossless version of the original file with the filter applied, but that'd take time and a lot of storage space.

Being able to apply FFmpeg filters would also be useful for the other comparison modes, since there are many reasons one would apply FFmpeg filters to improve a video.

Deprecated calls to libvmaf

When trying out the project to compare a transcode to an original source, the following warnings were repeated 4 times before the progress bar showed:

[libvmaf @ 0x557882dceec0] The "model_path" option is deprecated: use model='path=...'.
[libvmaf @ 0x557882dceec0] The "phone_model" option is deprecated: use model='enable_transform=true'.
[libvmaf @ 0x557882dceec0] The "psnr" option is deprecated: use feature='name=psnr'.
[libvmaf @ 0x557882dceec0] The "ssim" option is deprecated: use feature='name=ssim'.

Processing completed (almost?), but failed at the end with the following:

100%|█████████████████████████████████████████████████████████████████████████████████████████▋| 317/318 [00:26<00:00, 12.15 frames/s]
Done!
Traceback (most recent call last):
  File "/tmp/video-quality-metrics-master/main.py", line 327, in <module>
    get_metrics_save_table(
  File "/tmp/video-quality-metrics-master/metrics.py", line 55, in get_metrics_save_table
    ssim_scores = [ssim["metrics"]["ssim"] for ssim in file_contents["frames"]]
  File "/tmp/video-quality-metrics-master/metrics.py", line 55, in <listcomp>
    ssim_scores = [ssim["metrics"]["ssim"] for ssim in file_contents["frames"]]
KeyError: 'ssim'

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.