Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
project = "unravelsports"
copyright = "2024, Joris Bekkers"
author = "Joris Bekkers"
release = "2.0.0"
release = "1.2.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 4 additions & 0 deletions tests/test_soccer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import matplotlib

matplotlib.use("Agg") # Use non-interactive backend for tests

from pathlib import Path
from unravel.soccer import (
SoccerGraphConverter,
Expand Down
2 changes: 1 addition & 1 deletion unravel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "2.0.0"
__version__ = "1.2.0"

from .soccer import *
from .american_football import *
Expand Down