Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
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 LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""invrs_utils - Utilities for the invrs-io ecosystem.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

__version__ = "v1.4.0"
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_utils/experiment/checkpoint.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Defines a simple checkpoint manager.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_utils/experiment/data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Functions for loading and analyzing experiments.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import glob
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_utils/experiment/experiment.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Functions that enable running an optimization experiment.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import json
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_utils/experiment/sweep.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Functions that assist in defining experiments with multiple work units.
Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import itertools
Expand Down
2 changes: 1 addition & 1 deletion src/invrs_utils/experiment/work_unit.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Functions related to a single optimization work unit.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import functools
Expand Down
2 changes: 1 addition & 1 deletion tests/experiment/test_checkpoint.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for `experiment.checkpoint`.
Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import glob
Expand Down
2 changes: 1 addition & 1 deletion tests/experiment/test_data.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for `experiment.data`.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import json
Expand Down
2 changes: 1 addition & 1 deletion tests/experiment/test_experiment.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for `experiment.experiment`.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import glob
Expand Down
2 changes: 1 addition & 1 deletion tests/experiment/test_gym_experiment.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Test that runs an actual optimization experiemnt of an invrs-gym challenge.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import glob
Expand Down
2 changes: 1 addition & 1 deletion tests/experiment/test_sweep.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for `experiment.sweep`.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import unittest
Expand Down
2 changes: 1 addition & 1 deletion tests/experiment/test_work_unit.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Tests for `experiment.work_unit`.

Copyright (c) 2023 The INVRS-IO authors.
Copyright (c) 2025 invrs.io LLC
"""

import dataclasses
Expand Down