From 6724f3c2a36a560f6a34144cf6b8bd904df10e56 Mon Sep 17 00:00:00 2001 From: Martin Schubert Date: Sat, 18 Oct 2025 14:47:11 -0700 Subject: [PATCH] update copyright statements --- LICENSE | 2 +- src/invrs_utils/__init__.py | 2 +- src/invrs_utils/experiment/checkpoint.py | 2 +- src/invrs_utils/experiment/data.py | 2 +- src/invrs_utils/experiment/experiment.py | 2 +- src/invrs_utils/experiment/sweep.py | 2 +- src/invrs_utils/experiment/work_unit.py | 2 +- tests/experiment/test_checkpoint.py | 2 +- tests/experiment/test_data.py | 2 +- tests/experiment/test_experiment.py | 2 +- tests/experiment/test_gym_experiment.py | 2 +- tests/experiment/test_sweep.py | 2 +- tests/experiment/test_work_unit.py | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/LICENSE b/LICENSE index 01c4870..8856897 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/src/invrs_utils/__init__.py b/src/invrs_utils/__init__.py index c0f8d21..230adb9 100644 --- a/src/invrs_utils/__init__.py +++ b/src/invrs_utils/__init__.py @@ -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" diff --git a/src/invrs_utils/experiment/checkpoint.py b/src/invrs_utils/experiment/checkpoint.py index 40488d0..b8dd2ec 100644 --- a/src/invrs_utils/experiment/checkpoint.py +++ b/src/invrs_utils/experiment/checkpoint.py @@ -1,6 +1,6 @@ """Defines a simple checkpoint manager. -Copyright (c) 2023 The INVRS-IO authors. +Copyright (c) 2025 invrs.io LLC """ import dataclasses diff --git a/src/invrs_utils/experiment/data.py b/src/invrs_utils/experiment/data.py index bf75646..bf7f335 100644 --- a/src/invrs_utils/experiment/data.py +++ b/src/invrs_utils/experiment/data.py @@ -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 diff --git a/src/invrs_utils/experiment/experiment.py b/src/invrs_utils/experiment/experiment.py index 48190b8..94cec59 100644 --- a/src/invrs_utils/experiment/experiment.py +++ b/src/invrs_utils/experiment/experiment.py @@ -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 diff --git a/src/invrs_utils/experiment/sweep.py b/src/invrs_utils/experiment/sweep.py index 141934d..96217f6 100644 --- a/src/invrs_utils/experiment/sweep.py +++ b/src/invrs_utils/experiment/sweep.py @@ -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 diff --git a/src/invrs_utils/experiment/work_unit.py b/src/invrs_utils/experiment/work_unit.py index bb554d7..84c28d9 100644 --- a/src/invrs_utils/experiment/work_unit.py +++ b/src/invrs_utils/experiment/work_unit.py @@ -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 diff --git a/tests/experiment/test_checkpoint.py b/tests/experiment/test_checkpoint.py index 11c8d30..e1c1513 100644 --- a/tests/experiment/test_checkpoint.py +++ b/tests/experiment/test_checkpoint.py @@ -1,6 +1,6 @@ """Tests for `experiment.checkpoint`. -Copyright (c) 2023 The INVRS-IO authors. +Copyright (c) 2025 invrs.io LLC """ import glob diff --git a/tests/experiment/test_data.py b/tests/experiment/test_data.py index 67ac2d7..786d8bf 100644 --- a/tests/experiment/test_data.py +++ b/tests/experiment/test_data.py @@ -1,6 +1,6 @@ """Tests for `experiment.data`. -Copyright (c) 2023 The INVRS-IO authors. +Copyright (c) 2025 invrs.io LLC """ import json diff --git a/tests/experiment/test_experiment.py b/tests/experiment/test_experiment.py index 59d23e0..ee7cf4d 100644 --- a/tests/experiment/test_experiment.py +++ b/tests/experiment/test_experiment.py @@ -1,6 +1,6 @@ """Tests for `experiment.experiment`. -Copyright (c) 2023 The INVRS-IO authors. +Copyright (c) 2025 invrs.io LLC """ import glob diff --git a/tests/experiment/test_gym_experiment.py b/tests/experiment/test_gym_experiment.py index 5476af7..5ce6f3b 100644 --- a/tests/experiment/test_gym_experiment.py +++ b/tests/experiment/test_gym_experiment.py @@ -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 diff --git a/tests/experiment/test_sweep.py b/tests/experiment/test_sweep.py index 451f434..0d1b0f0 100644 --- a/tests/experiment/test_sweep.py +++ b/tests/experiment/test_sweep.py @@ -1,6 +1,6 @@ """Tests for `experiment.sweep`. -Copyright (c) 2023 The INVRS-IO authors. +Copyright (c) 2025 invrs.io LLC """ import unittest diff --git a/tests/experiment/test_work_unit.py b/tests/experiment/test_work_unit.py index c792957..819b73e 100644 --- a/tests/experiment/test_work_unit.py +++ b/tests/experiment/test_work_unit.py @@ -1,6 +1,6 @@ """Tests for `experiment.work_unit`. -Copyright (c) 2023 The INVRS-IO authors. +Copyright (c) 2025 invrs.io LLC """ import dataclasses