Skip to content

Commit

Permalink
v3.2.1 (build_docs) ci release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 5, 2024
1 parent e7221c2 commit 4dc5a7b
Show file tree
Hide file tree
Showing 124 changed files with 1,011 additions and 538 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: f6c207ec8201dfb87786bd1ee5ace303
config: f89a69d68ae343c520dd32225a249bd3
tags: 645f666f9bcd5a90fca523b33c5a78b7
Binary file modified .doctrees/changelog/index.doctree
Binary file not shown.
Binary file modified .doctrees/changelog/v3.2.x.doctree
Binary file not shown.
Binary file modified .doctrees/environment.pickle
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_annotate_corners.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_annotate_speed_trace.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_driver_laptimes.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_gear_shifts_on_track.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_laptimes_distribution.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_position_changes.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_qualifying_results.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_results_tracker.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_speed_on_track.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_speed_traces.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_strategy.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_team_pace_ranking.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/plot_who_can_still_win_wdc.doctree
Binary file not shown.
Binary file modified .doctrees/examples_gallery/sg_execution_times.doctree
Binary file not shown.
Binary file modified .doctrees/index.doctree
Binary file not shown.
Binary file modified .doctrees/sg_execution_times.doctree
Binary file not shown.
Binary file modified .doctrees/utils.doctree
Binary file not shown.
10 changes: 5 additions & 5 deletions _modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta name="viewport" content="width=device-width,initial-scale=1"/>
<meta name="color-scheme" content="light dark"><link rel="index" title="Index" href="../genindex.html" /><link rel="search" title="Search" href="../search.html" />

<!-- Generated with Sphinx 7.2.6 and Furo 2023.09.10 -->
<title>Overview: module code - FastF1 3.2.0</title>
<!-- Generated with Sphinx 7.2.6 and Furo 2024.01.29 -->
<title>Overview: module code - FastF1 3.2.1</title>
<link rel="stylesheet" type="text/css" href="../_static/pygments.css?v=a746c00c" />
<link rel="stylesheet" type="text/css" href="../_static/styles/furo.css?v=135e06be" />
<link rel="stylesheet" type="text/css" href="../_static/plot_directive.css?v=7f9a90b1" />
Expand Down Expand Up @@ -128,7 +128,7 @@
</label>
</div>
<div class="header-center">
<a href="../index.html"><div class="brand">FastF1 <small>3.2.0</small></div></a>
<a href="../index.html"><div class="brand">FastF1 <small>3.2.1</small></div></a>
</div>
<div class="header-right">
<div class="theme-toggle-container theme-toggle-header">
Expand All @@ -151,7 +151,7 @@
<div class="sidebar-sticky"><a class="sidebar-brand" href="../index.html">


<span class="sidebar-brand-text">FastF1 <small>3.2.0</small></span>
<span class="sidebar-brand-text">FastF1 <small>3.2.1</small></span>

</a><form class="sidebar-search-container" method="get" action="../search.html" role="search">
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
Expand Down Expand Up @@ -292,7 +292,7 @@ <h1>All modules for which code is available</h1>

</aside>
</div>
</div><script src="../_static/documentation_options.js?v=4f6ddb47"></script>
</div><script src="../_static/documentation_options.js?v=eb155f5e"></script>
<script src="../_static/doctools.js?v=888ff710"></script>
<script src="../_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="../_static/scripts/furo.js?v=32e29ea5"></script>
Expand Down
21 changes: 21 additions & 0 deletions _sources/changelog/v3.2.x.rst.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
What's new in v3.2.1
--------------------

(released 05/02/2024)


Bug Fixes
^^^^^^^^^

- Fixed a bug that caused timestamps of telemetry data to have (apparent)
microseconds precision (even though this is not the case). As a result,
merging position data and car data did not have a well matching timestamp
index resulting in additional interpolated values. This problem only occurred
in combination with recent versions of Pandas.

Other
^^^^^

- Various changes to address deprecations in Pandas.


What's new in v3.2.0
--------------------

Expand Down
36 changes: 34 additions & 2 deletions _sources/examples_gallery/plot_annotate_corners.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,38 @@ track map. (You could also use any other lap instead.)
.. rst-class:: sphx-glr-script-out

.. code-block:: none
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
Expand Down Expand Up @@ -117,7 +149,7 @@ the track map is oriented correctly. After that, plot the rotated track map.
.. code-block:: none
[<matplotlib.lines.Line2D object at 0x7f00d50901c0>]
[<matplotlib.lines.Line2D object at 0x7f41f5bb8c70>]
Expand Down Expand Up @@ -206,7 +238,7 @@ so that the track is not distorted and show the plot.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.580 seconds)
**Total running time of the script:** (0 minutes 12.878 seconds)


.. _sphx_glr_download_examples_gallery_plot_annotate_corners.py:
Expand Down
34 changes: 33 additions & 1 deletion _sources/examples_gallery/plot_annotate_speed_trace.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,38 @@ of the corners.
.. rst-class:: sphx-glr-script-out

.. code-block:: none
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
Expand Down Expand Up @@ -142,7 +174,7 @@ markers.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.836 seconds)
**Total running time of the script:** (0 minutes 2.289 seconds)


.. _sphx_glr_download_examples_gallery_plot_annotate_speed_trace.py:
Expand Down
34 changes: 33 additions & 1 deletion _sources/examples_gallery/plot_driver_laptimes.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,38 @@ Load the race session.
.. rst-class:: sphx-glr-script-out

.. code-block:: none
/home/runner/work/Fast-F1/Fast-F1/fastf1/_api.py:1183: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/_api.py:1183: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/_api.py:1183: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
Expand Down Expand Up @@ -156,7 +188,7 @@ Make the plot more aesthetic.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 4.092 seconds)
**Total running time of the script:** (0 minutes 21.388 seconds)


.. _sphx_glr_download_examples_gallery_plot_driver_laptimes.py:
Expand Down
34 changes: 33 additions & 1 deletion _sources/examples_gallery/plot_gear_shifts_on_track.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,38 @@ Import FastF1 and load the data
.. rst-class:: sphx-glr-script-out

.. code-block:: none
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
Expand Down Expand Up @@ -156,7 +188,7 @@ are centered for each color segment.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 4.509 seconds)
**Total running time of the script:** (0 minutes 12.033 seconds)


.. _sphx_glr_download_examples_gallery_plot_gear_shifts_on_track.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ Make the plot more aesthetic

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.992 seconds)
**Total running time of the script:** (0 minutes 3.303 seconds)


.. _sphx_glr_download_examples_gallery_plot_laptimes_distribution.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples_gallery/plot_position_changes.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ Because this plot is very crowed, add the legend outside the plot area.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.138 seconds)
**Total running time of the script:** (0 minutes 7.216 seconds)


.. _sphx_glr_download_examples_gallery_plot_position_changes.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples_gallery/plot_qualifying_results.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ Finally, give the plot a meaningful title

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.689 seconds)
**Total running time of the script:** (0 minutes 1.812 seconds)


.. _sphx_glr_download_examples_gallery_plot_qualifying_results.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples_gallery/plot_results_tracker.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ The final step is to plot a heatmap using plotly

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 34.569 seconds)
**Total running time of the script:** (0 minutes 37.287 seconds)


.. _sphx_glr_download_examples_gallery_plot_results_tracker.py:
Expand Down
61 changes: 60 additions & 1 deletion _sources/examples_gallery/plot_speed_on_track.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,65 @@ Next, we load the session and select the desired data.
.. rst-class:: sphx-glr-script-out

.. code-block:: none
/home/runner/work/Fast-F1/Fast-F1/fastf1/_api.py:1183: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/_api.py:1183: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/_api.py:1183: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
/home/runner/work/Fast-F1/Fast-F1/fastf1/core.py:478: FutureWarning:
A value is trying to be set on a copy of a DataFrame or Series through chained assignment using an inplace method.
The behavior will change in pandas 3.0. This inplace method will never work because the intermediate object on which we are setting values always behaves as a copy.
For example, when doing 'df[col].method(value, inplace=True)', try using 'df.method({col: value}, inplace=True)' or df[col] = df[col].method(value) instead, to perform the operation inplace on the original object.
Expand Down Expand Up @@ -171,7 +230,7 @@ After this, we can actually plot the data.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 5.263 seconds)
**Total running time of the script:** (0 minutes 24.535 seconds)


.. _sphx_glr_download_examples_gallery_plot_speed_on_track.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples_gallery/plot_speed_traces.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ We color the individual lines with the driver's team colors.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 4.319 seconds)
**Total running time of the script:** (0 minutes 13.989 seconds)


.. _sphx_glr_download_examples_gallery_plot_speed_traces.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples_gallery/plot_strategy.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ Plot aesthetics

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 11.222 seconds)
**Total running time of the script:** (0 minutes 20.555 seconds)


.. _sphx_glr_download_examples_gallery_plot_strategy.py:
Expand Down
Loading

0 comments on commit 4dc5a7b

Please sign in to comment.