From 72ca46840653e5f04f3393c625eec830978201ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Merc=C3=A8=20Mart=C3=ADn=20Prats?= Date: Mon, 13 Jan 2025 17:42:59 +0100 Subject: [PATCH 1/2] Fixing annotations update in images composite --- HISTORY.rst | 5 +++++ bigml/api_handlers/sourcehandler.py | 5 +++-- bigml/bigmlconnection.py | 1 - bigml/version.py | 2 +- docs/index.rst | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index ed2e7598..e4bd9d7d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +9.8.1 (2025-01-14) +------------------ + +- Fixing annotations update in images composite sources. + 9.8.0 (2024-10-02) ------------------ diff --git a/bigml/api_handlers/sourcehandler.py b/bigml/api_handlers/sourcehandler.py index ac897413..57edca45 100644 --- a/bigml/api_handlers/sourcehandler.py +++ b/bigml/api_handlers/sourcehandler.py @@ -553,8 +553,9 @@ def update_composite_annotations(self, source, images_file, pass # we need to limit the amount of changes per update - for offset in range(0, int(len(changes) / MAX_CHANGES) + 1): - new_batch = changes[offset: offset + MAX_CHANGES] + batches_number = int(len(changes) / MAX_CHANGES) + for offset in range(0, batches_number + 1): + new_batch = changes[offset * MAX_CHANGES: (offset + 1) * MAX_CHANGES] if new_batch: source = self.update_source(source, {"row_values": new_batch}) diff --git a/bigml/bigmlconnection.py b/bigml/bigmlconnection.py index f47e6b32..166dc692 100644 --- a/bigml/bigmlconnection.py +++ b/bigml/bigmlconnection.py @@ -650,7 +650,6 @@ def _update(self, url, body, organization=None, resource_id=None): location, resource, error) try: code = response.status_code - if code == HTTP_ACCEPTED: resource = json_load(response.content) resource_id = resource['resource'] diff --git a/bigml/version.py b/bigml/version.py index 3cd81c28..d33e46a3 100644 --- a/bigml/version.py +++ b/bigml/version.py @@ -1 +1 @@ -__version__ = '9.8.0' +__version__ = '9.8.1' diff --git a/docs/index.rst b/docs/index.rst index 2e9346ac..b2f20837 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -44,7 +44,7 @@ This module is licensed under the `Apache License, Version .. toctree:: :maxdepth: 2 :hidden: - :caption: Resouce Management + :caption: Resource Management ml_resources creating_resources From a8a97f1a1868545f0de01289afd0a9fe96a3a022 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Merc=C3=A8=20Mart=C3=ADn=20Prats?= Date: Mon, 13 Jan 2025 23:05:31 +0100 Subject: [PATCH 2/2] Updating copyright notices --- bigml/anomaly.py | 2 +- bigml/api.py | 2 +- bigml/api_handlers/anomalyhandler.py | 2 +- bigml/api_handlers/anomalyscorehandler.py | 2 +- bigml/api_handlers/associationhandler.py | 2 +- bigml/api_handlers/associationsethandler.py | 2 +- bigml/api_handlers/batchanomalyscorehandler.py | 2 +- bigml/api_handlers/batchcentroidhandler.py | 2 +- bigml/api_handlers/batchpredictionhandler.py | 2 +- bigml/api_handlers/batchprojectionhandler.py | 2 +- bigml/api_handlers/batchtopicdistributionhandler.py | 2 +- bigml/api_handlers/centroidhandler.py | 2 +- bigml/api_handlers/clusterhandler.py | 2 +- bigml/api_handlers/configurationhandler.py | 2 +- bigml/api_handlers/correlationhandler.py | 2 +- bigml/api_handlers/datasethandler.py | 2 +- bigml/api_handlers/deepnethandler.py | 2 +- bigml/api_handlers/ensemblehandler.py | 2 +- bigml/api_handlers/evaluationhandler.py | 2 +- bigml/api_handlers/executionhandler.py | 2 +- bigml/api_handlers/externalconnectorhandler.py | 2 +- bigml/api_handlers/forecasthandler.py | 2 +- bigml/api_handlers/fusionhandler.py | 2 +- bigml/api_handlers/libraryhandler.py | 2 +- bigml/api_handlers/linearhandler.py | 2 +- bigml/api_handlers/logistichandler.py | 2 +- bigml/api_handlers/modelhandler.py | 2 +- bigml/api_handlers/optimlhandler.py | 2 +- bigml/api_handlers/pcahandler.py | 2 +- bigml/api_handlers/predictionhandler.py | 2 +- bigml/api_handlers/projecthandler.py | 2 +- bigml/api_handlers/projectionhandler.py | 2 +- bigml/api_handlers/resourcehandler.py | 2 +- bigml/api_handlers/samplehandler.py | 2 +- bigml/api_handlers/scripthandler.py | 2 +- bigml/api_handlers/sourcehandler.py | 2 +- bigml/api_handlers/statisticaltesthandler.py | 2 +- bigml/api_handlers/timeserieshandler.py | 2 +- bigml/api_handlers/topicdistributionhandler.py | 2 +- bigml/api_handlers/topicmodelhandler.py | 2 +- bigml/association.py | 2 +- bigml/associationrule.py | 2 +- bigml/basemodel.py | 2 +- bigml/bigmlconnection.py | 2 +- bigml/centroid.py | 2 +- bigml/cluster.py | 2 +- bigml/constants.py | 2 +- bigml/dataset.py | 2 +- bigml/deepnet.py | 2 +- bigml/domain.py | 2 +- bigml/ensemble.py | 2 +- bigml/ensemblepredictor.py | 2 +- bigml/evaluation.py | 2 +- bigml/exceptions.py | 2 +- bigml/execution.py | 2 +- bigml/featurizer.py | 2 +- bigml/fields.py | 2 +- bigml/flatline.py | 2 +- bigml/flattree.py | 2 +- bigml/fusion.py | 2 +- bigml/generators/boosted_tree.py | 2 +- bigml/generators/model.py | 2 +- bigml/generators/tree.py | 2 +- bigml/generators/tree_common.py | 2 +- bigml/images/featurizers.py | 2 +- bigml/images/utils.py | 2 +- bigml/io.py | 4 ++-- bigml/item.py | 2 +- bigml/laminar/numpy_ops.py | 2 +- bigml/laminar/preprocess_np.py | 2 +- bigml/linear.py | 2 +- bigml/local_model.py | 2 +- bigml/logistic.py | 2 +- bigml/model.py | 2 +- bigml/modelfields.py | 2 +- bigml/multimodel.py | 2 +- bigml/multivote.py | 2 +- bigml/multivotelist.py | 2 +- bigml/path.py | 2 +- bigml/pca.py | 2 +- bigml/pipeline/pipeline.py | 2 +- bigml/pipeline/transformer.py | 2 +- bigml/predicate.py | 2 +- bigml/predicate_utils/utils.py | 2 +- bigml/predicates.py | 2 +- bigml/predict_utils/boosting.py | 2 +- bigml/predict_utils/classification.py | 2 +- bigml/predict_utils/common.py | 2 +- bigml/predict_utils/regression.py | 2 +- bigml/prediction.py | 2 +- bigml/shapwrapper.py | 2 +- bigml/supervised.py | 2 +- bigml/tests/compare_dataset_steps.py | 2 +- bigml/tests/compare_forecasts_steps.py | 2 +- bigml/tests/compare_pipeline_steps.py | 2 +- bigml/tests/compare_predictions_steps.py | 2 +- bigml/tests/compute_lda_prediction_steps.py | 2 +- bigml/tests/compute_multivote_prediction_steps.py | 2 +- bigml/tests/create_anomaly_steps.py | 2 +- bigml/tests/create_association_steps.py | 2 +- bigml/tests/create_batch_prediction_steps.py | 2 +- bigml/tests/create_batch_projection_steps.py | 2 +- bigml/tests/create_cluster_steps.py | 2 +- bigml/tests/create_configuration_steps.py | 2 +- bigml/tests/create_correlation_steps.py | 2 +- bigml/tests/create_dataset_steps.py | 2 +- bigml/tests/create_ensemble_steps.py | 2 +- bigml/tests/create_evaluation_steps.py | 2 +- bigml/tests/create_execution_steps.py | 2 +- bigml/tests/create_external_steps.py | 2 +- bigml/tests/create_forecast_steps.py | 2 +- bigml/tests/create_lda_steps.py | 2 +- bigml/tests/create_library_steps.py | 2 +- bigml/tests/create_linear_steps.py | 2 +- bigml/tests/create_model_steps.py | 2 +- bigml/tests/create_multimodel_steps.py | 2 +- bigml/tests/create_pca_steps.py | 2 +- bigml/tests/create_prediction_steps.py | 2 +- bigml/tests/create_project_steps.py | 2 +- bigml/tests/create_projection_steps.py | 2 +- bigml/tests/create_sample_steps.py | 2 +- bigml/tests/create_script_steps.py | 2 +- bigml/tests/create_source_steps.py | 2 +- bigml/tests/create_statistical_tst_steps.py | 2 +- bigml/tests/create_time_series_steps.py | 2 +- bigml/tests/delete_project_steps.py | 2 +- bigml/tests/fields_steps.py | 2 +- bigml/tests/inspect_model_steps.py | 2 +- bigml/tests/read_dataset_steps.py | 2 +- bigml/tests/read_resource_steps.py | 2 +- bigml/tests/test_01_prediction.py | 2 +- bigml/tests/test_03_local_prediction.py | 2 +- bigml/tests/test_04_multivote_prediction.py | 2 +- bigml/tests/test_05_compare_predictions.py | 2 +- bigml/tests/test_05_compare_predictions_b.py | 2 +- bigml/tests/test_06_batch_predictions.py | 2 +- bigml/tests/test_07_multimodel_batch_predictions.py | 2 +- bigml/tests/test_08_multimodel.py | 2 +- bigml/tests/test_09_ensemble_prediction.py | 2 +- bigml/tests/test_10_local_ensemble_prediction.py | 2 +- bigml/tests/test_11_multimodel_prediction.py | 2 +- bigml/tests/test_12_public_model_prediction.py | 2 +- bigml/tests/test_13_public_dataset.py | 2 +- bigml/tests/test_14_create_evaluations.py | 2 +- bigml/tests/test_15_download.py | 2 +- bigml/tests/test_16_sample_dataset.py | 2 +- bigml/tests/test_17_split_dataset.py | 2 +- bigml/tests/test_18_create_anomaly.py | 2 +- bigml/tests/test_19_missing_and_errors.py | 2 +- bigml/tests/test_20_rename_duplicated_names.py | 2 +- bigml/tests/test_21_projects.py | 2 +- bigml/tests/test_22_source_args.py | 2 +- bigml/tests/test_23_local_model_info.py | 2 +- bigml/tests/test_24_cluster_derived.py | 2 +- bigml/tests/test_25_correlation.py | 2 +- bigml/tests/test_26_statistical_test.py | 2 +- bigml/tests/test_27_fields.py | 2 +- bigml/tests/test_28_association.py | 2 +- bigml/tests/test_29_script.py | 2 +- bigml/tests/test_30_execution.py | 2 +- bigml/tests/test_31_library.py | 2 +- bigml/tests/test_32_topic_model_prediction.py | 2 +- bigml/tests/test_33_compare_predictions.py | 2 +- bigml/tests/test_34_time_series.py | 2 +- bigml/tests/test_35_b_compare_predictions.py | 2 +- bigml/tests/test_35_c_compare_predictions.py | 2 +- bigml/tests/test_35_compare_predictions.py | 2 +- bigml/tests/test_35_d_compare_predictions.py | 2 +- bigml/tests/test_35_e_compare_predictions.py | 2 +- bigml/tests/test_36_compare_predictions.py | 2 +- bigml/tests/test_37_configuration.py | 2 +- bigml/tests/test_38_organization.py | 2 +- bigml/tests/test_38_project_connection.py | 2 +- bigml/tests/test_39_optiml_fusion.py | 2 +- bigml/tests/test_40_local_from_file.py | 2 +- bigml/tests/test_41_multidataset.py | 2 +- bigml/tests/test_42_pca.py | 2 +- bigml/tests/test_43_linear.py | 2 +- bigml/tests/test_44_compare_predictions.py | 2 +- bigml/tests/test_45_external_connector.py | 2 +- bigml/tests/test_47_webhooks.py | 2 +- bigml/tests/test_48_local_dataset.py | 2 +- bigml/tests/test_49_local_pipeline.py | 2 +- bigml/tests/test_99_cleaning.py | 2 +- bigml/tests/world.py | 2 +- bigml/timeseries.py | 2 +- bigml/topicmodel.py | 2 +- bigml/tree_utils.py | 2 +- bigml/tsoutconstants.py | 2 +- bigml/tssubmodels.py | 2 +- bigml/util.py | 2 +- bigml/webhooks.py | 2 +- setup.py | 2 +- 193 files changed, 194 insertions(+), 194 deletions(-) diff --git a/bigml/anomaly.py b/bigml/anomaly.py index 07f3f6f0..4a345724 100644 --- a/bigml/anomaly.py +++ b/bigml/anomaly.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api.py b/bigml/api.py index 21d80679..55b1e591 100644 --- a/bigml/api.py +++ b/bigml/api.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=too-many-ancestors,non-parent-init-called, unused-import, no-member # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/anomalyhandler.py b/bigml/api_handlers/anomalyhandler.py index 1bb07dd0..03ece5e2 100644 --- a/bigml/api_handlers/anomalyhandler.py +++ b/bigml/api_handlers/anomalyhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/anomalyscorehandler.py b/bigml/api_handlers/anomalyscorehandler.py index fd0df39b..1398d539 100644 --- a/bigml/api_handlers/anomalyscorehandler.py +++ b/bigml/api_handlers/anomalyscorehandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/associationhandler.py b/bigml/api_handlers/associationhandler.py index c6957cf4..994a0050 100644 --- a/bigml/api_handlers/associationhandler.py +++ b/bigml/api_handlers/associationhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/associationsethandler.py b/bigml/api_handlers/associationsethandler.py index cd8176c8..f1c13bb1 100644 --- a/bigml/api_handlers/associationsethandler.py +++ b/bigml/api_handlers/associationsethandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/batchanomalyscorehandler.py b/bigml/api_handlers/batchanomalyscorehandler.py index b55f6d27..07516a27 100644 --- a/bigml/api_handlers/batchanomalyscorehandler.py +++ b/bigml/api_handlers/batchanomalyscorehandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/batchcentroidhandler.py b/bigml/api_handlers/batchcentroidhandler.py index a5859d4a..79c25f52 100644 --- a/bigml/api_handlers/batchcentroidhandler.py +++ b/bigml/api_handlers/batchcentroidhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/batchpredictionhandler.py b/bigml/api_handlers/batchpredictionhandler.py index 1f2da496..462d127a 100644 --- a/bigml/api_handlers/batchpredictionhandler.py +++ b/bigml/api_handlers/batchpredictionhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/batchprojectionhandler.py b/bigml/api_handlers/batchprojectionhandler.py index 5d9dcbe0..bfb05228 100644 --- a/bigml/api_handlers/batchprojectionhandler.py +++ b/bigml/api_handlers/batchprojectionhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/batchtopicdistributionhandler.py b/bigml/api_handlers/batchtopicdistributionhandler.py index 0f09a94a..2a1bd204 100644 --- a/bigml/api_handlers/batchtopicdistributionhandler.py +++ b/bigml/api_handlers/batchtopicdistributionhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2016-2023 BigML +# Copyright 2016-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/centroidhandler.py b/bigml/api_handlers/centroidhandler.py index 10a836ae..d0455649 100644 --- a/bigml/api_handlers/centroidhandler.py +++ b/bigml/api_handlers/centroidhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/clusterhandler.py b/bigml/api_handlers/clusterhandler.py index 1511a37b..ffc833eb 100644 --- a/bigml/api_handlers/clusterhandler.py +++ b/bigml/api_handlers/clusterhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/configurationhandler.py b/bigml/api_handlers/configurationhandler.py index 12a28a96..4e2e1ae1 100644 --- a/bigml/api_handlers/configurationhandler.py +++ b/bigml/api_handlers/configurationhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/correlationhandler.py b/bigml/api_handlers/correlationhandler.py index ab923aab..29fedc23 100644 --- a/bigml/api_handlers/correlationhandler.py +++ b/bigml/api_handlers/correlationhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/datasethandler.py b/bigml/api_handlers/datasethandler.py index 656158e8..04ac3ec6 100644 --- a/bigml/api_handlers/datasethandler.py +++ b/bigml/api_handlers/datasethandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/deepnethandler.py b/bigml/api_handlers/deepnethandler.py index 85d91485..ff966793 100644 --- a/bigml/api_handlers/deepnethandler.py +++ b/bigml/api_handlers/deepnethandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/ensemblehandler.py b/bigml/api_handlers/ensemblehandler.py index e03b96fa..6ebd035e 100644 --- a/bigml/api_handlers/ensemblehandler.py +++ b/bigml/api_handlers/ensemblehandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/evaluationhandler.py b/bigml/api_handlers/evaluationhandler.py index 37a9fe5b..82b224d4 100644 --- a/bigml/api_handlers/evaluationhandler.py +++ b/bigml/api_handlers/evaluationhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/executionhandler.py b/bigml/api_handlers/executionhandler.py index 436e64e1..2fbf6f7e 100644 --- a/bigml/api_handlers/executionhandler.py +++ b/bigml/api_handlers/executionhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/externalconnectorhandler.py b/bigml/api_handlers/externalconnectorhandler.py index 9a11de46..7d33a58e 100644 --- a/bigml/api_handlers/externalconnectorhandler.py +++ b/bigml/api_handlers/externalconnectorhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/forecasthandler.py b/bigml/api_handlers/forecasthandler.py index f09f2834..cfaba279 100644 --- a/bigml/api_handlers/forecasthandler.py +++ b/bigml/api_handlers/forecasthandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/fusionhandler.py b/bigml/api_handlers/fusionhandler.py index 315fa907..90e22ee7 100644 --- a/bigml/api_handlers/fusionhandler.py +++ b/bigml/api_handlers/fusionhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/libraryhandler.py b/bigml/api_handlers/libraryhandler.py index 18ee3a8e..36055eee 100644 --- a/bigml/api_handlers/libraryhandler.py +++ b/bigml/api_handlers/libraryhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/linearhandler.py b/bigml/api_handlers/linearhandler.py index 4804fd51..3f24a5f8 100644 --- a/bigml/api_handlers/linearhandler.py +++ b/bigml/api_handlers/linearhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2019-2023 BigML +# Copyright 2019-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/logistichandler.py b/bigml/api_handlers/logistichandler.py index 5d00754a..744422bf 100644 --- a/bigml/api_handlers/logistichandler.py +++ b/bigml/api_handlers/logistichandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/modelhandler.py b/bigml/api_handlers/modelhandler.py index f2aee4f0..0a94d342 100644 --- a/bigml/api_handlers/modelhandler.py +++ b/bigml/api_handlers/modelhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/optimlhandler.py b/bigml/api_handlers/optimlhandler.py index 1f1e5f99..cd5853d5 100644 --- a/bigml/api_handlers/optimlhandler.py +++ b/bigml/api_handlers/optimlhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/pcahandler.py b/bigml/api_handlers/pcahandler.py index 207591c7..933d73da 100644 --- a/bigml/api_handlers/pcahandler.py +++ b/bigml/api_handlers/pcahandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/predictionhandler.py b/bigml/api_handlers/predictionhandler.py index 96d2f6db..c2c160b2 100644 --- a/bigml/api_handlers/predictionhandler.py +++ b/bigml/api_handlers/predictionhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/projecthandler.py b/bigml/api_handlers/projecthandler.py index a4d17d2b..3c3b7a51 100644 --- a/bigml/api_handlers/projecthandler.py +++ b/bigml/api_handlers/projecthandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/projectionhandler.py b/bigml/api_handlers/projectionhandler.py index 4b227947..d463fca8 100644 --- a/bigml/api_handlers/projectionhandler.py +++ b/bigml/api_handlers/projectionhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/resourcehandler.py b/bigml/api_handlers/resourcehandler.py index caef0e99..524f53ef 100644 --- a/bigml/api_handlers/resourcehandler.py +++ b/bigml/api_handlers/resourcehandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method,unused-import # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/samplehandler.py b/bigml/api_handlers/samplehandler.py index 53861ae2..d50baf0b 100644 --- a/bigml/api_handlers/samplehandler.py +++ b/bigml/api_handlers/samplehandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/scripthandler.py b/bigml/api_handlers/scripthandler.py index c012d985..d03ed771 100644 --- a/bigml/api_handlers/scripthandler.py +++ b/bigml/api_handlers/scripthandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/sourcehandler.py b/bigml/api_handlers/sourcehandler.py index 57edca45..8f3568ea 100644 --- a/bigml/api_handlers/sourcehandler.py +++ b/bigml/api_handlers/sourcehandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/statisticaltesthandler.py b/bigml/api_handlers/statisticaltesthandler.py index 6bd72330..eca91255 100644 --- a/bigml/api_handlers/statisticaltesthandler.py +++ b/bigml/api_handlers/statisticaltesthandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/timeserieshandler.py b/bigml/api_handlers/timeserieshandler.py index ae68eb2d..2d57a08c 100644 --- a/bigml/api_handlers/timeserieshandler.py +++ b/bigml/api_handlers/timeserieshandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/topicdistributionhandler.py b/bigml/api_handlers/topicdistributionhandler.py index b7fad37c..117cefd2 100644 --- a/bigml/api_handlers/topicdistributionhandler.py +++ b/bigml/api_handlers/topicdistributionhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2016-2023 BigML +# Copyright 2016-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/api_handlers/topicmodelhandler.py b/bigml/api_handlers/topicmodelhandler.py index 78dca0a5..a34b904b 100644 --- a/bigml/api_handlers/topicmodelhandler.py +++ b/bigml/api_handlers/topicmodelhandler.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=abstract-method # -# Copyright 2016-2023 BigML +# Copyright 2016-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/association.py b/bigml/association.py index 6cc50f22..a3b65d76 100644 --- a/bigml/association.py +++ b/bigml/association.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/associationrule.py b/bigml/associationrule.py index c7f82835..63944342 100644 --- a/bigml/associationrule.py +++ b/bigml/associationrule.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/basemodel.py b/bigml/basemodel.py index c4d380a1..0c22dc54 100644 --- a/bigml/basemodel.py +++ b/bigml/basemodel.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2013-2023 BigML +# Copyright 2013-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/bigmlconnection.py b/bigml/bigmlconnection.py index 166dc692..a5a796c5 100644 --- a/bigml/bigmlconnection.py +++ b/bigml/bigmlconnection.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/centroid.py b/bigml/centroid.py index 4e5f30c0..534cb562 100644 --- a/bigml/centroid.py +++ b/bigml/centroid.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/cluster.py b/bigml/cluster.py index 040c108b..5739554b 100644 --- a/bigml/cluster.py +++ b/bigml/cluster.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/constants.py b/bigml/constants.py index 6423faff..5171d557 100644 --- a/bigml/constants.py +++ b/bigml/constants.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/dataset.py b/bigml/dataset.py index 2f75aa5e..5c548e61 100644 --- a/bigml/dataset.py +++ b/bigml/dataset.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/deepnet.py b/bigml/deepnet.py index 09370af2..dbb45dc9 100644 --- a/bigml/deepnet.py +++ b/bigml/deepnet.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=wrong-import-position,ungrouped-imports # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/domain.py b/bigml/domain.py index d36b4194..81a26ebc 100644 --- a/bigml/domain.py +++ b/bigml/domain.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/ensemble.py b/bigml/ensemble.py index 07f8faf5..94c96a77 100644 --- a/bigml/ensemble.py +++ b/bigml/ensemble.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/ensemblepredictor.py b/bigml/ensemblepredictor.py index d266805b..cab2fbdd 100644 --- a/bigml/ensemblepredictor.py +++ b/bigml/ensemblepredictor.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/evaluation.py b/bigml/evaluation.py index bd79cc9a..76726589 100644 --- a/bigml/evaluation.py +++ b/bigml/evaluation.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2023 BigML +# Copyright 2023-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/exceptions.py b/bigml/exceptions.py index 77630bab..71e965f6 100644 --- a/bigml/exceptions.py +++ b/bigml/exceptions.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2021-2023 BigML +# Copyright 2021-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/execution.py b/bigml/execution.py index f4af728e..626cd06e 100644 --- a/bigml/execution.py +++ b/bigml/execution.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2019-2023 BigML +# Copyright 2019-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/featurizer.py b/bigml/featurizer.py index e39d754f..0a6d9e33 100644 --- a/bigml/featurizer.py +++ b/bigml/featurizer.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/fields.py b/bigml/fields.py index 62023258..41246b62 100644 --- a/bigml/fields.py +++ b/bigml/fields.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=unbalanced-tuple-unpacking # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/flatline.py b/bigml/flatline.py index 7efba23a..ee18536a 100644 --- a/bigml/flatline.py +++ b/bigml/flatline.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/flattree.py b/bigml/flattree.py index cc190204..021d52d6 100644 --- a/bigml/flattree.py +++ b/bigml/flattree.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2019-2023 BigML +# Copyright 2019-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/fusion.py b/bigml/fusion.py index 3b88481c..c7ce7425 100644 --- a/bigml/fusion.py +++ b/bigml/fusion.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/generators/boosted_tree.py b/bigml/generators/boosted_tree.py index 96fb4a28..14bbf2be 100644 --- a/bigml/generators/boosted_tree.py +++ b/bigml/generators/boosted_tree.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/generators/model.py b/bigml/generators/model.py index b035036d..51c65e92 100644 --- a/bigml/generators/model.py +++ b/bigml/generators/model.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/generators/tree.py b/bigml/generators/tree.py index 086f2108..95d7200e 100644 --- a/bigml/generators/tree.py +++ b/bigml/generators/tree.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/generators/tree_common.py b/bigml/generators/tree_common.py index 64596627..4a46b8e6 100644 --- a/bigml/generators/tree_common.py +++ b/bigml/generators/tree_common.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/images/featurizers.py b/bigml/images/featurizers.py index c2b5ed64..d6919ed1 100644 --- a/bigml/images/featurizers.py +++ b/bigml/images/featurizers.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=invalid-name # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/images/utils.py b/bigml/images/utils.py index 1e0a10ba..26378deb 100644 --- a/bigml/images/utils.py +++ b/bigml/images/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/io.py b/bigml/io.py index b6b878e3..c9dc0a20 100644 --- a/bigml/io.py +++ b/bigml/io.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # pylint: disable=R1732 # -# Copyright (c) 2015-2023 BigML, Inc +# Copyright (c) 2015-2025 BigML, Inc # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain @@ -19,7 +19,7 @@ """Python I/O functions. :author: jao -:date: Wed Apr 08, 2015-2023 17:52 +:date: Wed Apr 08, 2015-2025 17:52 """ diff --git a/bigml/item.py b/bigml/item.py index 3138a0e9..3314507a 100644 --- a/bigml/item.py +++ b/bigml/item.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/laminar/numpy_ops.py b/bigml/laminar/numpy_ops.py index 805850f3..85c21ea4 100644 --- a/bigml/laminar/numpy_ops.py +++ b/bigml/laminar/numpy_ops.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=invalid-name,missing-function-docstring # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/laminar/preprocess_np.py b/bigml/laminar/preprocess_np.py index c2d6cb9b..95e64899 100644 --- a/bigml/laminar/preprocess_np.py +++ b/bigml/laminar/preprocess_np.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=invalid-name,missing-function-docstring # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/linear.py b/bigml/linear.py index 80522948..c6e00407 100644 --- a/bigml/linear.py +++ b/bigml/linear.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/local_model.py b/bigml/local_model.py index 8b545ef1..c8ed68c9 100644 --- a/bigml/local_model.py +++ b/bigml/local_model.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # pylint: disable=super-init-not-called # -# Copyright 2023 BigML +# Copyright 2023-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/logistic.py b/bigml/logistic.py index 691199b9..67199512 100644 --- a/bigml/logistic.py +++ b/bigml/logistic.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/model.py b/bigml/model.py index 47b3f56c..560d5c37 100644 --- a/bigml/model.py +++ b/bigml/model.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2013-2023 BigML +# Copyright 2013-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/modelfields.py b/bigml/modelfields.py index 2eb9b38a..964015f0 100644 --- a/bigml/modelfields.py +++ b/bigml/modelfields.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2013-2023 BigML +# Copyright 2013-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/multimodel.py b/bigml/multimodel.py index bc1243eb..85e7eb9e 100644 --- a/bigml/multimodel.py +++ b/bigml/multimodel.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/multivote.py b/bigml/multivote.py index 9508c835..873e79aa 100644 --- a/bigml/multivote.py +++ b/bigml/multivote.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=dangerous-default-value # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/multivotelist.py b/bigml/multivotelist.py index ee604e39..72f2cb56 100644 --- a/bigml/multivotelist.py +++ b/bigml/multivotelist.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/path.py b/bigml/path.py index 6f533fc7..e85a2ac3 100644 --- a/bigml/path.py +++ b/bigml/path.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/pca.py b/bigml/pca.py index 10d37827..22eb37c8 100644 --- a/bigml/pca.py +++ b/bigml/pca.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/pipeline/pipeline.py b/bigml/pipeline/pipeline.py index 83c62337..20cbb8b9 100644 --- a/bigml/pipeline/pipeline.py +++ b/bigml/pipeline/pipeline.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,cyclic-import # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/pipeline/transformer.py b/bigml/pipeline/transformer.py index d099bfa4..3b983cd8 100644 --- a/bigml/pipeline/transformer.py +++ b/bigml/pipeline/transformer.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/predicate.py b/bigml/predicate.py index 29ac5068..ed6ec690 100644 --- a/bigml/predicate.py +++ b/bigml/predicate.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2013-2023 BigML +# Copyright 2013-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/predicate_utils/utils.py b/bigml/predicate_utils/utils.py index 8f3801b0..7239d01e 100644 --- a/bigml/predicate_utils/utils.py +++ b/bigml/predicate_utils/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/predicates.py b/bigml/predicates.py index 36abd4a9..54537858 100644 --- a/bigml/predicates.py +++ b/bigml/predicates.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/predict_utils/boosting.py b/bigml/predict_utils/boosting.py index 89b10108..1380e96d 100644 --- a/bigml/predict_utils/boosting.py +++ b/bigml/predict_utils/boosting.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/predict_utils/classification.py b/bigml/predict_utils/classification.py index 56a3a013..862b32c7 100644 --- a/bigml/predict_utils/classification.py +++ b/bigml/predict_utils/classification.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/predict_utils/common.py b/bigml/predict_utils/common.py index e2837594..6b967f52 100644 --- a/bigml/predict_utils/common.py +++ b/bigml/predict_utils/common.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/predict_utils/regression.py b/bigml/predict_utils/regression.py index 82371234..4c291f05 100644 --- a/bigml/predict_utils/regression.py +++ b/bigml/predict_utils/regression.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/prediction.py b/bigml/prediction.py index a284575b..19327510 100644 --- a/bigml/prediction.py +++ b/bigml/prediction.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/shapwrapper.py b/bigml/shapwrapper.py index 659c45aa..65586ca2 100644 --- a/bigml/shapwrapper.py +++ b/bigml/shapwrapper.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # pylint: disable=super-init-not-called # -# Copyright 2023 BigML +# Copyright 2023-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/supervised.py b/bigml/supervised.py index d10da99e..57155fa8 100644 --- a/bigml/supervised.py +++ b/bigml/supervised.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # pylint: disable=super-init-not-called # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/compare_dataset_steps.py b/bigml/tests/compare_dataset_steps.py index f3293f9f..04bc9110 100644 --- a/bigml/tests/compare_dataset_steps.py +++ b/bigml/tests/compare_dataset_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/compare_forecasts_steps.py b/bigml/tests/compare_forecasts_steps.py index af10b02d..0d4fe85a 100644 --- a/bigml/tests/compare_forecasts_steps.py +++ b/bigml/tests/compare_forecasts_steps.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/compare_pipeline_steps.py b/bigml/tests/compare_pipeline_steps.py index 4007aef6..146ea408 100644 --- a/bigml/tests/compare_pipeline_steps.py +++ b/bigml/tests/compare_pipeline_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/compare_predictions_steps.py b/bigml/tests/compare_predictions_steps.py index 66f1bc23..b0019411 100644 --- a/bigml/tests/compare_predictions_steps.py +++ b/bigml/tests/compare_predictions_steps.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,unused-argument,no-member #pylint: disable=locally-disabled,pointless-string-statement # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/compute_lda_prediction_steps.py b/bigml/tests/compute_lda_prediction_steps.py index 4479057b..5ec5f6e8 100644 --- a/bigml/tests/compute_lda_prediction_steps.py +++ b/bigml/tests/compute_lda_prediction_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2016-2023 BigML +# Copyright 2016-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/compute_multivote_prediction_steps.py b/bigml/tests/compute_multivote_prediction_steps.py index e18f754c..251423c1 100644 --- a/bigml/tests/compute_multivote_prediction_steps.py +++ b/bigml/tests/compute_multivote_prediction_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012, 2015-2023 BigML +# Copyright 2012, 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_anomaly_steps.py b/bigml/tests/create_anomaly_steps.py index d0fecedd..f0b18d3a 100644 --- a/bigml/tests/create_anomaly_steps.py +++ b/bigml/tests/create_anomaly_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_association_steps.py b/bigml/tests/create_association_steps.py index 2b56fceb..b54cd9be 100644 --- a/bigml/tests/create_association_steps.py +++ b/bigml/tests/create_association_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_batch_prediction_steps.py b/bigml/tests/create_batch_prediction_steps.py index 98bbc4d4..7988a3f9 100644 --- a/bigml/tests/create_batch_prediction_steps.py +++ b/bigml/tests/create_batch_prediction_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_batch_projection_steps.py b/bigml/tests/create_batch_projection_steps.py index 9dcb8d3d..d18debf7 100644 --- a/bigml/tests/create_batch_projection_steps.py +++ b/bigml/tests/create_batch_projection_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_cluster_steps.py b/bigml/tests/create_cluster_steps.py index 1a993a40..f6c9e002 100644 --- a/bigml/tests/create_cluster_steps.py +++ b/bigml/tests/create_cluster_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_configuration_steps.py b/bigml/tests/create_configuration_steps.py index f657be7e..5116986d 100644 --- a/bigml/tests/create_configuration_steps.py +++ b/bigml/tests/create_configuration_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_correlation_steps.py b/bigml/tests/create_correlation_steps.py index e3c03894..c5421c6b 100644 --- a/bigml/tests/create_correlation_steps.py +++ b/bigml/tests/create_correlation_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_dataset_steps.py b/bigml/tests/create_dataset_steps.py index 0baf4a85..a04d854a 100644 --- a/bigml/tests/create_dataset_steps.py +++ b/bigml/tests/create_dataset_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_ensemble_steps.py b/bigml/tests/create_ensemble_steps.py index 5d9c098a..7113dfde 100644 --- a/bigml/tests/create_ensemble_steps.py +++ b/bigml/tests/create_ensemble_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member,broad-except # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_evaluation_steps.py b/bigml/tests/create_evaluation_steps.py index 0a9756b5..c7412a38 100644 --- a/bigml/tests/create_evaluation_steps.py +++ b/bigml/tests/create_evaluation_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012, 2015-2023 BigML +# Copyright 2012, 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_execution_steps.py b/bigml/tests/create_execution_steps.py index de478629..6d4d69a6 100644 --- a/bigml/tests/create_execution_steps.py +++ b/bigml/tests/create_execution_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_external_steps.py b/bigml/tests/create_external_steps.py index 06a48425..08bb6f22 100644 --- a/bigml/tests/create_external_steps.py +++ b/bigml/tests/create_external_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2020-2023 BigML +# Copyright 2020-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_forecast_steps.py b/bigml/tests/create_forecast_steps.py index e6999d3a..15a922b8 100644 --- a/bigml/tests/create_forecast_steps.py +++ b/bigml/tests/create_forecast_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_lda_steps.py b/bigml/tests/create_lda_steps.py index 597eab4f..cd06ac96 100644 --- a/bigml/tests/create_lda_steps.py +++ b/bigml/tests/create_lda_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_library_steps.py b/bigml/tests/create_library_steps.py index 77a37aca..dd8cb5d2 100644 --- a/bigml/tests/create_library_steps.py +++ b/bigml/tests/create_library_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_linear_steps.py b/bigml/tests/create_linear_steps.py index b62c41d7..88fae1b9 100644 --- a/bigml/tests/create_linear_steps.py +++ b/bigml/tests/create_linear_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2019-2023 BigML +# Copyright 2019-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_model_steps.py b/bigml/tests/create_model_steps.py index b95893fb..811daf30 100644 --- a/bigml/tests/create_model_steps.py +++ b/bigml/tests/create_model_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_multimodel_steps.py b/bigml/tests/create_multimodel_steps.py index ffc5fbf8..7fe82a82 100644 --- a/bigml/tests/create_multimodel_steps.py +++ b/bigml/tests/create_multimodel_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_pca_steps.py b/bigml/tests/create_pca_steps.py index 0772fb11..c5a8ff09 100644 --- a/bigml/tests/create_pca_steps.py +++ b/bigml/tests/create_pca_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_prediction_steps.py b/bigml/tests/create_prediction_steps.py index 3432c512..978d577c 100644 --- a/bigml/tests/create_prediction_steps.py +++ b/bigml/tests/create_prediction_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_project_steps.py b/bigml/tests/create_project_steps.py index f28ee969..3d997bfe 100644 --- a/bigml/tests/create_project_steps.py +++ b/bigml/tests/create_project_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_projection_steps.py b/bigml/tests/create_projection_steps.py index 3d9be145..92df6cb7 100644 --- a/bigml/tests/create_projection_steps.py +++ b/bigml/tests/create_projection_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_sample_steps.py b/bigml/tests/create_sample_steps.py index 2a9029be..8f451f4b 100644 --- a/bigml/tests/create_sample_steps.py +++ b/bigml/tests/create_sample_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_script_steps.py b/bigml/tests/create_script_steps.py index 3cebabab..cb7ab4ed 100644 --- a/bigml/tests/create_script_steps.py +++ b/bigml/tests/create_script_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_source_steps.py b/bigml/tests/create_source_steps.py index 7ff1b3c7..3eac296a 100644 --- a/bigml/tests/create_source_steps.py +++ b/bigml/tests/create_source_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012, 2015-2023 BigML +# Copyright 2012, 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_statistical_tst_steps.py b/bigml/tests/create_statistical_tst_steps.py index 88774bc0..44e76dd4 100644 --- a/bigml/tests/create_statistical_tst_steps.py +++ b/bigml/tests/create_statistical_tst_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/create_time_series_steps.py b/bigml/tests/create_time_series_steps.py index 06e9fc82..d12fc2c8 100644 --- a/bigml/tests/create_time_series_steps.py +++ b/bigml/tests/create_time_series_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/delete_project_steps.py b/bigml/tests/delete_project_steps.py index 83be7f13..49d6ddb6 100644 --- a/bigml/tests/delete_project_steps.py +++ b/bigml/tests/delete_project_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member,broad-except # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/fields_steps.py b/bigml/tests/fields_steps.py index 4df3e12e..59336ea5 100644 --- a/bigml/tests/fields_steps.py +++ b/bigml/tests/fields_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/inspect_model_steps.py b/bigml/tests/inspect_model_steps.py index 8b2bd637..a13c90ac 100644 --- a/bigml/tests/inspect_model_steps.py +++ b/bigml/tests/inspect_model_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,unused-argument,no-member # -# Copyright 2012, 2015-2023 BigML +# Copyright 2012, 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/read_dataset_steps.py b/bigml/tests/read_dataset_steps.py index b1f37e89..026b361c 100644 --- a/bigml/tests/read_dataset_steps.py +++ b/bigml/tests/read_dataset_steps.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=locally-disabled,no-member # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/read_resource_steps.py b/bigml/tests/read_resource_steps.py index d5f5070d..d406b8d6 100644 --- a/bigml/tests/read_resource_steps.py +++ b/bigml/tests/read_resource_steps.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2014-2023 BigML +# Copyright 2014-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_01_prediction.py b/bigml/tests/test_01_prediction.py index 9d416e91..7a97fd6d 100644 --- a/bigml/tests/test_01_prediction.py +++ b/bigml/tests/test_01_prediction.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_03_local_prediction.py b/bigml/tests/test_03_local_prediction.py index 04cbb06a..e746accd 100644 --- a/bigml/tests/test_03_local_prediction.py +++ b/bigml/tests/test_03_local_prediction.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_04_multivote_prediction.py b/bigml/tests/test_04_multivote_prediction.py index 2ec448dd..b66f5abd 100644 --- a/bigml/tests/test_04_multivote_prediction.py +++ b/bigml/tests/test_04_multivote_prediction.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_05_compare_predictions.py b/bigml/tests/test_05_compare_predictions.py index c9a8f1df..7cebde55 100644 --- a/bigml/tests/test_05_compare_predictions.py +++ b/bigml/tests/test_05_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_05_compare_predictions_b.py b/bigml/tests/test_05_compare_predictions_b.py index 379a16fc..65097657 100644 --- a/bigml/tests/test_05_compare_predictions_b.py +++ b/bigml/tests/test_05_compare_predictions_b.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_06_batch_predictions.py b/bigml/tests/test_06_batch_predictions.py index 1716589c..89266f8b 100644 --- a/bigml/tests/test_06_batch_predictions.py +++ b/bigml/tests/test_06_batch_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_07_multimodel_batch_predictions.py b/bigml/tests/test_07_multimodel_batch_predictions.py index 0a0838e6..a19ea4ca 100644 --- a/bigml/tests/test_07_multimodel_batch_predictions.py +++ b/bigml/tests/test_07_multimodel_batch_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_08_multimodel.py b/bigml/tests/test_08_multimodel.py index 78b3e30a..c9ac4d1b 100644 --- a/bigml/tests/test_08_multimodel.py +++ b/bigml/tests/test_08_multimodel.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_09_ensemble_prediction.py b/bigml/tests/test_09_ensemble_prediction.py index ec11cb1e..52b06872 100644 --- a/bigml/tests/test_09_ensemble_prediction.py +++ b/bigml/tests/test_09_ensemble_prediction.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_10_local_ensemble_prediction.py b/bigml/tests/test_10_local_ensemble_prediction.py index 997ff0db..2e35f1b0 100644 --- a/bigml/tests/test_10_local_ensemble_prediction.py +++ b/bigml/tests/test_10_local_ensemble_prediction.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_11_multimodel_prediction.py b/bigml/tests/test_11_multimodel_prediction.py index b8c2699b..23021c1d 100644 --- a/bigml/tests/test_11_multimodel_prediction.py +++ b/bigml/tests/test_11_multimodel_prediction.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_12_public_model_prediction.py b/bigml/tests/test_12_public_model_prediction.py index 8d52d974..cbfe2e36 100644 --- a/bigml/tests/test_12_public_model_prediction.py +++ b/bigml/tests/test_12_public_model_prediction.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_13_public_dataset.py b/bigml/tests/test_13_public_dataset.py index 145dcaf7..94657661 100644 --- a/bigml/tests/test_13_public_dataset.py +++ b/bigml/tests/test_13_public_dataset.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_14_create_evaluations.py b/bigml/tests/test_14_create_evaluations.py index 805be46d..093dc638 100644 --- a/bigml/tests/test_14_create_evaluations.py +++ b/bigml/tests/test_14_create_evaluations.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_15_download.py b/bigml/tests/test_15_download.py index bfba8f70..415257e2 100644 --- a/bigml/tests/test_15_download.py +++ b/bigml/tests/test_15_download.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_16_sample_dataset.py b/bigml/tests/test_16_sample_dataset.py index 46c6280c..186b76ef 100644 --- a/bigml/tests/test_16_sample_dataset.py +++ b/bigml/tests/test_16_sample_dataset.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_17_split_dataset.py b/bigml/tests/test_17_split_dataset.py index 73056e4f..c570ea12 100644 --- a/bigml/tests/test_17_split_dataset.py +++ b/bigml/tests/test_17_split_dataset.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_18_create_anomaly.py b/bigml/tests/test_18_create_anomaly.py index 33e4098e..b38adfa6 100644 --- a/bigml/tests/test_18_create_anomaly.py +++ b/bigml/tests/test_18_create_anomaly.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_19_missing_and_errors.py b/bigml/tests/test_19_missing_and_errors.py index d8c41968..22326c08 100644 --- a/bigml/tests/test_19_missing_and_errors.py +++ b/bigml/tests/test_19_missing_and_errors.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_20_rename_duplicated_names.py b/bigml/tests/test_20_rename_duplicated_names.py index dadf9d30..ac2def75 100644 --- a/bigml/tests/test_20_rename_duplicated_names.py +++ b/bigml/tests/test_20_rename_duplicated_names.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_21_projects.py b/bigml/tests/test_21_projects.py index 2c61acc1..b58f6d0a 100644 --- a/bigml/tests/test_21_projects.py +++ b/bigml/tests/test_21_projects.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_22_source_args.py b/bigml/tests/test_22_source_args.py index 7c2b6e3a..478a0959 100644 --- a/bigml/tests/test_22_source_args.py +++ b/bigml/tests/test_22_source_args.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import,no-member # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_23_local_model_info.py b/bigml/tests/test_23_local_model_info.py index 18e82a48..8ee0ac97 100644 --- a/bigml/tests/test_23_local_model_info.py +++ b/bigml/tests/test_23_local_model_info.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_24_cluster_derived.py b/bigml/tests/test_24_cluster_derived.py index e2e7d588..5e565463 100644 --- a/bigml/tests/test_24_cluster_derived.py +++ b/bigml/tests/test_24_cluster_derived.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_25_correlation.py b/bigml/tests/test_25_correlation.py index 5812bf32..27f4c029 100644 --- a/bigml/tests/test_25_correlation.py +++ b/bigml/tests/test_25_correlation.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_26_statistical_test.py b/bigml/tests/test_26_statistical_test.py index 332e9988..b09ebd48 100644 --- a/bigml/tests/test_26_statistical_test.py +++ b/bigml/tests/test_26_statistical_test.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_27_fields.py b/bigml/tests/test_27_fields.py index a6b0892f..bd461f04 100644 --- a/bigml/tests/test_27_fields.py +++ b/bigml/tests/test_27_fields.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_28_association.py b/bigml/tests/test_28_association.py index 60b3015f..7e5bec63 100644 --- a/bigml/tests/test_28_association.py +++ b/bigml/tests/test_28_association.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_29_script.py b/bigml/tests/test_29_script.py index 0bd8e7bc..eb5bc752 100644 --- a/bigml/tests/test_29_script.py +++ b/bigml/tests/test_29_script.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_30_execution.py b/bigml/tests/test_30_execution.py index 17d8d25b..e1864d5c 100644 --- a/bigml/tests/test_30_execution.py +++ b/bigml/tests/test_30_execution.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_31_library.py b/bigml/tests/test_31_library.py index be877fe0..9de406c8 100644 --- a/bigml/tests/test_31_library.py +++ b/bigml/tests/test_31_library.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_32_topic_model_prediction.py b/bigml/tests/test_32_topic_model_prediction.py index f1899f09..fd26e407 100644 --- a/bigml/tests/test_32_topic_model_prediction.py +++ b/bigml/tests/test_32_topic_model_prediction.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2016-2023 BigML +# Copyright 2016-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_33_compare_predictions.py b/bigml/tests/test_33_compare_predictions.py index 6dc0bf72..cf322c36 100644 --- a/bigml/tests/test_33_compare_predictions.py +++ b/bigml/tests/test_33_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_34_time_series.py b/bigml/tests/test_34_time_series.py index ebf997af..4b5fb472 100644 --- a/bigml/tests/test_34_time_series.py +++ b/bigml/tests/test_34_time_series.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_35_b_compare_predictions.py b/bigml/tests/test_35_b_compare_predictions.py index 0002b9f9..7b768ff6 100644 --- a/bigml/tests/test_35_b_compare_predictions.py +++ b/bigml/tests/test_35_b_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_35_c_compare_predictions.py b/bigml/tests/test_35_c_compare_predictions.py index e45e5b87..0a39e66d 100644 --- a/bigml/tests/test_35_c_compare_predictions.py +++ b/bigml/tests/test_35_c_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_35_compare_predictions.py b/bigml/tests/test_35_compare_predictions.py index 16c54176..248b9520 100644 --- a/bigml/tests/test_35_compare_predictions.py +++ b/bigml/tests/test_35_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_35_d_compare_predictions.py b/bigml/tests/test_35_d_compare_predictions.py index 023d3830..442ac2cf 100644 --- a/bigml/tests/test_35_d_compare_predictions.py +++ b/bigml/tests/test_35_d_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_35_e_compare_predictions.py b/bigml/tests/test_35_e_compare_predictions.py index bd408698..b998b1a4 100644 --- a/bigml/tests/test_35_e_compare_predictions.py +++ b/bigml/tests/test_35_e_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_36_compare_predictions.py b/bigml/tests/test_36_compare_predictions.py index 4be945a4..c8a76e3d 100644 --- a/bigml/tests/test_36_compare_predictions.py +++ b/bigml/tests/test_36_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_37_configuration.py b/bigml/tests/test_37_configuration.py index fecd0da3..1c4ba9ac 100644 --- a/bigml/tests/test_37_configuration.py +++ b/bigml/tests/test_37_configuration.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_38_organization.py b/bigml/tests/test_38_organization.py index 2d699fc8..4187a474 100644 --- a/bigml/tests/test_38_organization.py +++ b/bigml/tests/test_38_organization.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_38_project_connection.py b/bigml/tests/test_38_project_connection.py index 38a9aeba..7175d8a6 100644 --- a/bigml/tests/test_38_project_connection.py +++ b/bigml/tests/test_38_project_connection.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import,broad-except # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_39_optiml_fusion.py b/bigml/tests/test_39_optiml_fusion.py index 4273e371..0ff5992f 100644 --- a/bigml/tests/test_39_optiml_fusion.py +++ b/bigml/tests/test_39_optiml_fusion.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_40_local_from_file.py b/bigml/tests/test_40_local_from_file.py index d2368812..c8311285 100644 --- a/bigml/tests/test_40_local_from_file.py +++ b/bigml/tests/test_40_local_from_file.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_41_multidataset.py b/bigml/tests/test_41_multidataset.py index ad966e79..e0c8f1b3 100644 --- a/bigml/tests/test_41_multidataset.py +++ b/bigml/tests/test_41_multidataset.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_42_pca.py b/bigml/tests/test_42_pca.py index ef67391d..706305bf 100644 --- a/bigml/tests/test_42_pca.py +++ b/bigml/tests/test_42_pca.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_43_linear.py b/bigml/tests/test_43_linear.py index 6b8a3a65..a9a20ecb 100644 --- a/bigml/tests/test_43_linear.py +++ b/bigml/tests/test_43_linear.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2019-2023 BigML +# Copyright 2019-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_44_compare_predictions.py b/bigml/tests/test_44_compare_predictions.py index 44e4868e..c50a6350 100644 --- a/bigml/tests/test_44_compare_predictions.py +++ b/bigml/tests/test_44_compare_predictions.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_45_external_connector.py b/bigml/tests/test_45_external_connector.py index 28162ef7..deac2c94 100644 --- a/bigml/tests/test_45_external_connector.py +++ b/bigml/tests/test_45_external_connector.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_47_webhooks.py b/bigml/tests/test_47_webhooks.py index 09e34fc0..3206f0ef 100644 --- a/bigml/tests/test_47_webhooks.py +++ b/bigml/tests/test_47_webhooks.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import,invalid-name # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_48_local_dataset.py b/bigml/tests/test_48_local_dataset.py index a57787d4..eabd52f1 100644 --- a/bigml/tests/test_48_local_dataset.py +++ b/bigml/tests/test_48_local_dataset.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_49_local_pipeline.py b/bigml/tests/test_49_local_pipeline.py index 348bfd8f..651a87a3 100644 --- a/bigml/tests/test_49_local_pipeline.py +++ b/bigml/tests/test_49_local_pipeline.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/test_99_cleaning.py b/bigml/tests/test_99_cleaning.py index 9339ec9a..1f80e98e 100644 --- a/bigml/tests/test_99_cleaning.py +++ b/bigml/tests/test_99_cleaning.py @@ -2,7 +2,7 @@ #pylint: disable=locally-disabled,line-too-long,attribute-defined-outside-init #pylint: disable=locally-disabled,unused-import,no-self-use # -# Copyright 2018-2023 BigML +# Copyright 2018-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tests/world.py b/bigml/tests/world.py index df52b101..f3c86ba2 100644 --- a/bigml/tests/world.py +++ b/bigml/tests/world.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2015-2023 BigML +# Copyright 2015-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/timeseries.py b/bigml/timeseries.py index d90b1edb..62c6b2f5 100644 --- a/bigml/timeseries.py +++ b/bigml/timeseries.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/topicmodel.py b/bigml/topicmodel.py index 8c2e56a7..abc87b5f 100644 --- a/bigml/topicmodel.py +++ b/bigml/topicmodel.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2016-2023 BigML +# Copyright 2016-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tree_utils.py b/bigml/tree_utils.py index 110957a6..ed033dbf 100644 --- a/bigml/tree_utils.py +++ b/bigml/tree_utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tsoutconstants.py b/bigml/tsoutconstants.py index 3f20f473..7903a6f6 100644 --- a/bigml/tsoutconstants.py +++ b/bigml/tsoutconstants.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/tssubmodels.py b/bigml/tssubmodels.py index 213f25ba..1e055af8 100644 --- a/bigml/tssubmodels.py +++ b/bigml/tssubmodels.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- #pylint: disable=invalid-name # -# Copyright 2017-2023 BigML +# Copyright 2017-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/util.py b/bigml/util.py index 6d81a847..df6b5d67 100644 --- a/bigml/util.py +++ b/bigml/util.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2012-2023 BigML +# Copyright 2012-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/bigml/webhooks.py b/bigml/webhooks.py index a5db5abe..a1f762e5 100644 --- a/bigml/webhooks.py +++ b/bigml/webhooks.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2022-2023 BigML +# Copyright 2022-2025 BigML # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain diff --git a/setup.py b/setup.py index 2bcdd013..adcd3b08 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright 2012-2023 BigML, Inc +# Copyright 2012-2025 BigML, Inc # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain