Skip to content

Commit

Permalink
Rename 'master' branch to 'main'. (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski authored Dec 4, 2020
1 parent 152c736 commit 750ee72
Show file tree
Hide file tree
Showing 111 changed files with 117 additions and 117 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: "Test build"

on:
push:
branches: [ "master" ]
branches: [ "main" ]
pull_request:
branches: [ "master" ]
branches: [ "main" ]

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img src="https://raw.githubusercontent.com/scikit-hep/uproot4/master/docs-img/logo/logo-300px.png">
<img src="https://raw.githubusercontent.com/scikit-hep/uproot4/main/docs-img/logo/logo-300px.png">

[![Scikit-HEP](https://scikit-hep.org/assets/images/Scikit--HEP-Project-blue.svg)](https://scikit-hep.org/)
[![NSF-1836650](https://img.shields.io/badge/NSF-1836650-blue.svg)](https://nsf.gov/awardsearch/showAward?AWD_ID=1836650)
Expand All @@ -8,7 +8,7 @@

Uproot is a reader and a writer of the [ROOT file format](https://root.cern/) using only Python and Numpy. Unlike the standard C++ ROOT implementation, Uproot is only an I/O library, primarily intended to stream data into machine learning libraries in Python. Unlike PyROOT and root_numpy, Uproot does not depend on C++ ROOT. Instead, it uses Numpy to cast blocks of data from the ROOT file as Numpy arrays.

<p align="center"><img src="https://raw.githubusercontent.com/scikit-hep/uproot4/master/docs-img/diagrams/abstraction-layers.png" width="700px"></p>
<p align="center"><img src="https://raw.githubusercontent.com/scikit-hep/uproot4/main/docs-img/diagrams/abstraction-layers.png" width="700px"></p>

# Installation

Expand Down
4 changes: 2 additions & 2 deletions build-uproot4.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

set -e

Expand All @@ -8,7 +8,7 @@ mkdir build
mkdir build/uproot4

cat > build/uproot4/__init__.py << EOF
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE
from __future__ import absolute_import
Expand Down
2 changes: 1 addition & 1 deletion docs-sphinx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

<br/>

.. image:: https://github.com/scikit-hep/uproot4/raw/master/docs-img/logo/logo-300px.png
.. image:: https://github.com/scikit-hep/uproot4/raw/main/docs-img/logo/logo-300px.png
:width: 300px
:alt: Uproot

Expand Down
6 changes: 3 additions & 3 deletions docs-sphinx/make_changelog.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

import math
import json
Expand Down Expand Up @@ -97,7 +97,7 @@ def pypi_exists(tag):
numprs += 1

if first:
header_text = "\nUnreleased (`master branch <https://github.com/scikit-hep/uproot4>`__ on GitHub)\n"
header_text = "\nUnreleased (`main branch <https://github.com/scikit-hep/uproot4>`__ on GitHub)\n"
outfile.write(header_text)
outfile.write("="*len(header_text) + "\n\n")

Expand Down Expand Up @@ -146,6 +146,6 @@ def pypi_exists(tag):
This was to allow users to transition from Awkward Array 0.x and Uproot 3.x, which had different interfaces (especially Awkward Array). The transition completed on December 1, 2020.
.. image:: https://raw.githubusercontent.com/scikit-hep/uproot4/master/docs-img/diagrams/uproot-awkward-timeline.png
.. image:: https://raw.githubusercontent.com/scikit-hep/uproot4/main/docs-img/diagrams/uproot-awkward-timeline.png
:width: 100%
""")
2 changes: 1 addition & 1 deletion docs-sphinx/prepare_docstrings.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

import importlib
import inspect
Expand Down
2 changes: 1 addition & 1 deletion docs-sphinx/uproot3-to-4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Thus, it was also a good time to introduce interface changes to Uproot itself—

Fundamental changes were also required to streamline remote reading (HTTP and XRootD), so Uproot 4 was distributed as a separate project in parallel with Uproot 3 (like Awkward 1 and 0). For the latter half of 2020, adventurous users and downstream developers could install `uproot <https://pypi.org/project/uproot/>`__ as a separate project.

.. image:: https://raw.githubusercontent.com/scikit-hep/uproot4/master/docs-img/diagrams/uproot-awkward-timeline.png
.. image:: https://raw.githubusercontent.com/scikit-hep/uproot4/main/docs-img/diagrams/uproot-awkward-timeline.png
:width: 100%

On December 1, 2020, however, Awkward 0 and Uproot 3 were deprecated, moved to PyPI packages `awkward0 <https://pypi.org/project/awkward0/>`__ and `uproot3 <https://pypi.org/project/uproot3/>`__, while Awkward 1 and Uproot 4 became unqualified as `awkward <https://pypi.org/project/awkward/>`__ and `uproot <https://pypi.org/project/uproot/>`__.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

import os.path
from setuptools import setup
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE
2 changes: 1 addition & 1 deletion tests/test_0001-source-class.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0006-notify-when-downloaded.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0007-single-chunk-interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0008-start-interpretation.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0009-nested-directories.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0010-start-streamers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0011-generate-classes-from-streamers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0013-rntuple-anchor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0014-all-ttree-versions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0016-interpretations.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0017-multi-basket-multi-branch-fetch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0018-array-fetching-interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0022-number-of-branches.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0023-more-interpretations-1.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0023-ttree-versions.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0028-fallback-to-read-streamer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0029-more-string-types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0031-test-stl-containers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0033-more-interpretations-2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0034-generic-objects-in-ttrees.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0035-datatype-generality.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0043-iterate-function.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0044-concatenate-function.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0045-lazy-arrays-1.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0046-histograms-bh-hist.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0053-parents-should-not-be-bases.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0058-detach-model-objects-from-files.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0066-fix-http-fallback-freeze.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0067-common-entry-offsets.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0081-dont-parse-colons.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0088-read-with-http.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0099-read-from-file-object.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0112-fix-pandas-with-cut.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0118-fix-name-fetch-again.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0123-atlas-issues.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0167-use-the-common-histogram-interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0172-allow-allocators-in-vector-typenames.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0173-empty-and-multiprocessing-bugs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0182-complain-about-missing-files.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion tests/test_0194-fix-lost-cuts-in-iterate.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

from __future__ import absolute_import

Expand Down
2 changes: 1 addition & 1 deletion uproot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

"""
Uproot: ROOT I/O in pure Python and NumPy.
Expand Down
2 changes: 1 addition & 1 deletion uproot/_util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

"""
This module defines utilities for internal use. This is not a public interface
Expand Down
2 changes: 1 addition & 1 deletion uproot/behaviors/TAxis.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

"""
This module defines the behaviors of ``TAxis``, an axis of a histogram or profile plot.
Expand Down
2 changes: 1 addition & 1 deletion uproot/behaviors/TBranch.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

"""
This module defines behaviors for :doc:`uproot.behaviors.TBranch.TBranch` and
Expand Down
2 changes: 1 addition & 1 deletion uproot/behaviors/TBranchElement.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

"""
This module defines the behaviors of ``TBranchElement``, which is entirely inherited from
Expand Down
2 changes: 1 addition & 1 deletion uproot/behaviors/TH1.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

"""
This module defines the behaviors of ``TH1`` and its subclasses (not including ``TH2``,
Expand Down
2 changes: 1 addition & 1 deletion uproot/behaviors/TH2.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

"""
This module defines the behaviors of ``TH2`` and its subclasses (not including
Expand Down
2 changes: 1 addition & 1 deletion uproot/behaviors/TH2Poly.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/master/LICENSE
# BSD 3-Clause License; see https://github.com/scikit-hep/uproot4/blob/main/LICENSE

"""
This module defines the behavior of ``TH2Poly``.
Expand Down
Loading

0 comments on commit 750ee72

Please sign in to comment.