diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..5ace4600 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 38e5532a..778a65ce 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -15,14 +15,14 @@ jobs: steps: - name: Check out the main branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 # We need a full clone rather than a shallow clone so that setuptools-scm # can compute the right version number for the docs. # xref: https://github.com/pypa/setuptools_scm/issues/431 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.10' - name: Install graphviz diff --git a/.github/workflows/check-style.yml b/.github/workflows/check-style.yml index 8e25247b..99247eb8 100644 --- a/.github/workflows/check-style.yml +++ b/.github/workflows/check-style.yml @@ -11,11 +11,11 @@ jobs: steps: - name: Set up Python 3.10 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.10' - name: Check out the target commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install necessary Python packages run: | python -m pip install -r style-requirements.txt diff --git a/.github/workflows/publish-on-pypi.yml b/.github/workflows/publish-on-pypi.yml index 7766f36d..50fc3ca0 100644 --- a/.github/workflows/publish-on-pypi.yml +++ b/.github/workflows/publish-on-pypi.yml @@ -11,9 +11,9 @@ jobs: steps: - name: Check out the release commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.10' - name: Install Python packages needed for build and upload diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 2f163e7b..30fed8c2 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ['3.7', '3.8', '3.10'] + python-version: ['3.8', '3.10'] env: ETS_TOOLKIT: qt @@ -19,7 +19,7 @@ jobs: steps: - name: Check out the target commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Linux packages for PySide6 support run: | sudo apt-get update @@ -34,7 +34,7 @@ jobs: sudo apt-get install libxcb-shape0 if: matrix.os == 'ubuntu-latest' - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies and local packages @@ -63,14 +63,14 @@ jobs: steps: - name: Check out the target commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Linux packages for wx support run: | sudo apt-get update sudo apt-get install libsdl2-2.0-0 if: matrix.os == 'ubuntu-latest' - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies and local packages diff --git a/.github/workflows/test-docs.yml b/.github/workflows/test-docs.yml index cd4331df..ee3a9bfb 100644 --- a/.github/workflows/test-docs.yml +++ b/.github/workflows/test-docs.yml @@ -15,11 +15,11 @@ jobs: sudo apt-get update sudo apt-get install graphviz - name: Set up Python 3.10 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.10' - name: Check out the target commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install local package and documentation dependencies run: | python -m pip install -r docs/requirements.txt diff --git a/.github/workflows/test-from-pypi.yml b/.github/workflows/test-from-pypi.yml index b6d9351f..84e005dc 100644 --- a/.github/workflows/test-from-pypi.yml +++ b/.github/workflows/test-from-pypi.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] runs-on: ${{ matrix.os }} @@ -30,7 +30,7 @@ jobs: sudo apt-get install libxcb-shape0 if: matrix.os == 'ubuntu-latest' - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install package and test dependencies from PyPI sdist (with PySide6) @@ -56,7 +56,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] runs-on: ${{ matrix.os }} @@ -75,7 +75,7 @@ jobs: sudo apt-get install libxcb-shape0 if: matrix.os == 'ubuntu-latest' - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install package and test dependencies from PyPI wheel (with PySide6) diff --git a/.github/workflows/weekly-scheduled-tests.yml b/.github/workflows/weekly-scheduled-tests.yml index 5ac94845..4c1ccc91 100644 --- a/.github/workflows/weekly-scheduled-tests.yml +++ b/.github/workflows/weekly-scheduled-tests.yml @@ -14,15 +14,15 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.8', '3.9', '3.10', '3.11'] runs-on: ${{ matrix.os }} steps: - name: Check out the target commit - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies and local packages @@ -38,13 +38,13 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.10'] + python-version: ['3.8', '3.10'] runs-on: ${{ matrix.os }} steps: - name: Check out the main branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Linux packages for PySide6 support run: | sudo apt-get update @@ -59,7 +59,7 @@ jobs: sudo apt-get install libxcb-shape0 if: matrix.os == 'ubuntu-latest' - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies and local packages diff --git a/DEVELOP.rst b/DEVELOP.rst index c7bc8c14..698cd2a0 100644 --- a/DEVELOP.rst +++ b/DEVELOP.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD @@ -19,7 +19,7 @@ Getting started --------------- You'll need a Python 3 environment for development. Any environment using -Python >= 3.7 will do. For example, you could create and activate a new venv +Python >= 3.8 will do. For example, you could create and activate a new venv using something like:: python3.10 -m venv ../traits-futures && source ../traits-futures/bin/activate diff --git a/LICENSE.txt b/LICENSE.txt index c564bdea..3e232013 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ BSD 3-Clause License -(C) Copyright 2018-2023 Enthought, Inc., Austin, TX +(C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.rst b/README.rst index 5e1d615b..ed6278ad 100644 --- a/README.rst +++ b/README.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/api/templates/module.rst_t b/docs/source/api/templates/module.rst_t index 0b8b7095..5ecd476f 100644 --- a/docs/source/api/templates/module.rst_t +++ b/docs/source/api/templates/module.rst_t @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/api/templates/package.rst_t b/docs/source/api/templates/package.rst_t index ac848e3d..771b30a5 100644 --- a/docs/source/api/templates/package.rst_t +++ b/docs/source/api/templates/package.rst_t @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/api/traits_futures.api.rst b/docs/source/api/traits_futures.api.rst index 058b79c7..4bbc1190 100644 --- a/docs/source/api/traits_futures.api.rst +++ b/docs/source/api/traits_futures.api.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/changes.rst b/docs/source/changes.rst index c4be0e31..d084da71 100644 --- a/docs/source/changes.rst +++ b/docs/source/changes.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/conf.py b/docs/source/conf.py index 5dfebcf3..4362a191 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD @@ -61,7 +61,7 @@ # General information about the project. project = "Traits Futures" -copyright = "2018-2023 Enthought, Inc., Austin, TX" +copyright = "2018-2024 Enthought, Inc., Austin, TX" author = "Enthought" # The version info for the project you're documenting, acts as replacement for diff --git a/docs/source/guide/advanced.rst b/docs/source/guide/advanced.rst index e32d81ee..785ff232 100644 --- a/docs/source/guide/advanced.rst +++ b/docs/source/guide/advanced.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/cancel.rst b/docs/source/guide/cancel.rst index 261d1ba0..dc6d0143 100644 --- a/docs/source/guide/cancel.rst +++ b/docs/source/guide/cancel.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/contexts.rst b/docs/source/guide/contexts.rst index 63902b1d..019ae8c3 100644 --- a/docs/source/guide/contexts.rst +++ b/docs/source/guide/contexts.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples.rst b/docs/source/guide/examples.rst index 1c075eca..b0d3e400 100644 --- a/docs/source/guide/examples.rst +++ b/docs/source/guide/examples.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/background_processes.py b/docs/source/guide/examples/background_processes.py index f53f56a8..65d68332 100644 --- a/docs/source/guide/examples/background_processes.py +++ b/docs/source/guide/examples/background_processes.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/calculate_in_main_thread.py b/docs/source/guide/examples/calculate_in_main_thread.py index 61bfbcd9..0700cb59 100644 --- a/docs/source/guide/examples/calculate_in_main_thread.py +++ b/docs/source/guide/examples/calculate_in_main_thread.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/calculate_in_worker_thread.py b/docs/source/guide/examples/calculate_in_worker_thread.py index 69941286..d7227fde 100644 --- a/docs/source/guide/examples/calculate_in_worker_thread.py +++ b/docs/source/guide/examples/calculate_in_worker_thread.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/fizz_buzz_task.py b/docs/source/guide/examples/fizz_buzz_task.py index 240b5459..30b088ac 100644 --- a/docs/source/guide/examples/fizz_buzz_task.py +++ b/docs/source/guide/examples/fizz_buzz_task.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/fizz_buzz_ui.py b/docs/source/guide/examples/fizz_buzz_ui.py index 4b4fe4eb..95e5f3fd 100644 --- a/docs/source/guide/examples/fizz_buzz_ui.py +++ b/docs/source/guide/examples/fizz_buzz_ui.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/headless.py b/docs/source/guide/examples/headless.py index a1b721d6..b6842e79 100644 --- a/docs/source/guide/examples/headless.py +++ b/docs/source/guide/examples/headless.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/interruptible_task.py b/docs/source/guide/examples/interruptible_task.py index 1c1042dd..d02aa44b 100644 --- a/docs/source/guide/examples/interruptible_task.py +++ b/docs/source/guide/examples/interruptible_task.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/non_interruptible_task.py b/docs/source/guide/examples/non_interruptible_task.py index c0468d46..fa813cda 100644 --- a/docs/source/guide/examples/non_interruptible_task.py +++ b/docs/source/guide/examples/non_interruptible_task.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/pi_iterations.py b/docs/source/guide/examples/pi_iterations.py index a8f192da..8b63db01 100644 --- a/docs/source/guide/examples/pi_iterations.py +++ b/docs/source/guide/examples/pi_iterations.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/prime_counting.py b/docs/source/guide/examples/prime_counting.py index 9a4c3ca2..f3809aba 100644 --- a/docs/source/guide/examples/prime_counting.py +++ b/docs/source/guide/examples/prime_counting.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/quick_start.py b/docs/source/guide/examples/quick_start.py index 0420b62e..f1034c9d 100644 --- a/docs/source/guide/examples/quick_start.py +++ b/docs/source/guide/examples/quick_start.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/simple_blocking_call.py b/docs/source/guide/examples/simple_blocking_call.py index 342deb3a..6e453e69 100644 --- a/docs/source/guide/examples/simple_blocking_call.py +++ b/docs/source/guide/examples/simple_blocking_call.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/slow_squares.py b/docs/source/guide/examples/slow_squares.py index bc0ab491..005f1e92 100644 --- a/docs/source/guide/examples/slow_squares.py +++ b/docs/source/guide/examples/slow_squares.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/examples/test_future.py b/docs/source/guide/examples/test_future.py index ec1bdb7a..ef028aaf 100644 --- a/docs/source/guide/examples/test_future.py +++ b/docs/source/guide/examples/test_future.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/intro.rst b/docs/source/guide/intro.rst index b0ebe79b..ec90b156 100644 --- a/docs/source/guide/intro.rst +++ b/docs/source/guide/intro.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/overview.rst b/docs/source/guide/overview.rst index 7ef21a24..fd7ca0f6 100644 --- a/docs/source/guide/overview.rst +++ b/docs/source/guide/overview.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/testing.rst b/docs/source/guide/testing.rst index 294767ba..101c0cc3 100644 --- a/docs/source/guide/testing.rst +++ b/docs/source/guide/testing.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/threading.rst b/docs/source/guide/threading.rst index 2113f137..beefc08b 100644 --- a/docs/source/guide/threading.rst +++ b/docs/source/guide/threading.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/guide/toolkits.rst b/docs/source/guide/toolkits.rst index 98ce46f3..2f0716b4 100644 --- a/docs/source/guide/toolkits.rst +++ b/docs/source/guide/toolkits.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD diff --git a/docs/source/index.rst b/docs/source/index.rst index ebc13c7a..dd056452 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -1,5 +1,5 @@ .. - (C) Copyright 2018-2023 Enthought, Inc., Austin, TX + (C) Copyright 2018-2024 Enthought, Inc., Austin, TX All rights reserved. This software is provided without warranty under the terms of the BSD @@ -45,7 +45,7 @@ Limitations - By design, and unlike :mod:`concurrent.futures`, |traits_futures| requires the UI event loop to be running in order to process results. -- Requires Python 3.7 or later. +- Requires Python 3.8 or later. Quick start diff --git a/pyproject.toml b/pyproject.toml index 45627a35..c83c23cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = 'traits-futures' description = 'Patterns for reactive background tasks' readme = 'README.rst' -requires-python = '>=3.7' +requires-python = '>=3.8' authors = [{name='Enthought', email='info@enthought.com'}] keywords = ['background', 'concurrency', 'futures', 'gui', 'traits', 'traitsui'] classifiers = [ diff --git a/traits_futures/__init__.py b/traits_futures/__init__.py index 7decc383..c4fb2134 100644 --- a/traits_futures/__init__.py +++ b/traits_futures/__init__.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/api.py b/traits_futures/api.py index fc644aab..02d1b638 100644 --- a/traits_futures/api.py +++ b/traits_futures/api.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/asyncio/event_loop.py b/traits_futures/asyncio/event_loop.py index b9b85f21..c015be6a 100644 --- a/traits_futures/asyncio/event_loop.py +++ b/traits_futures/asyncio/event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/asyncio/event_loop_helper.py b/traits_futures/asyncio/event_loop_helper.py index 8ebe2728..de693adc 100644 --- a/traits_futures/asyncio/event_loop_helper.py +++ b/traits_futures/asyncio/event_loop_helper.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/asyncio/pingee.py b/traits_futures/asyncio/pingee.py index cceedc52..62595021 100644 --- a/traits_futures/asyncio/pingee.py +++ b/traits_futures/asyncio/pingee.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/asyncio/tests/test_asyncio_event_loop.py b/traits_futures/asyncio/tests/test_asyncio_event_loop.py index 0d60a77e..85129d5d 100644 --- a/traits_futures/asyncio/tests/test_asyncio_event_loop.py +++ b/traits_futures/asyncio/tests/test_asyncio_event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/asyncio/tests/test_event_loop_helper.py b/traits_futures/asyncio/tests/test_event_loop_helper.py index d900c55d..c879c784 100644 --- a/traits_futures/asyncio/tests/test_event_loop_helper.py +++ b/traits_futures/asyncio/tests/test_event_loop_helper.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/asyncio/tests/test_pingee.py b/traits_futures/asyncio/tests/test_pingee.py index 0c576d7f..a5bdaf5d 100644 --- a/traits_futures/asyncio/tests/test_pingee.py +++ b/traits_futures/asyncio/tests/test_pingee.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/background_call.py b/traits_futures/background_call.py index 3b79ce14..a95eb250 100644 --- a/traits_futures/background_call.py +++ b/traits_futures/background_call.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/background_iteration.py b/traits_futures/background_iteration.py index f62bee1e..1672f07e 100644 --- a/traits_futures/background_iteration.py +++ b/traits_futures/background_iteration.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/background_progress.py b/traits_futures/background_progress.py index 93f13c27..21d5e824 100644 --- a/traits_futures/background_progress.py +++ b/traits_futures/background_progress.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/base_future.py b/traits_futures/base_future.py index 51508e6a..b9f0d89e 100644 --- a/traits_futures/base_future.py +++ b/traits_futures/base_future.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/ets_event_loop.py b/traits_futures/ets_event_loop.py index fbd4272c..826da3b3 100644 --- a/traits_futures/ets_event_loop.py +++ b/traits_futures/ets_event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/exception_handling.py b/traits_futures/exception_handling.py index 29d6b84b..e929df34 100644 --- a/traits_futures/exception_handling.py +++ b/traits_futures/exception_handling.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/executor_states.py b/traits_futures/executor_states.py index bfcdc87f..b44cf8e3 100644 --- a/traits_futures/executor_states.py +++ b/traits_futures/executor_states.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/future_states.py b/traits_futures/future_states.py index 391fed38..9a59df9d 100644 --- a/traits_futures/future_states.py +++ b/traits_futures/future_states.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/i_event_loop.py b/traits_futures/i_event_loop.py index 1f30d964..2a427660 100644 --- a/traits_futures/i_event_loop.py +++ b/traits_futures/i_event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/i_event_loop_helper.py b/traits_futures/i_event_loop_helper.py index 2e8d6009..2e38bb07 100644 --- a/traits_futures/i_event_loop_helper.py +++ b/traits_futures/i_event_loop_helper.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/i_message_router.py b/traits_futures/i_message_router.py index a28a4938..6c6ea44f 100644 --- a/traits_futures/i_message_router.py +++ b/traits_futures/i_message_router.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/i_parallel_context.py b/traits_futures/i_parallel_context.py index 13cbb790..2a500494 100644 --- a/traits_futures/i_parallel_context.py +++ b/traits_futures/i_parallel_context.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/i_pingee.py b/traits_futures/i_pingee.py index 3e45b3c5..1feee36e 100644 --- a/traits_futures/i_pingee.py +++ b/traits_futures/i_pingee.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/i_task_specification.py b/traits_futures/i_task_specification.py index 96d67c99..bc6277d3 100644 --- a/traits_futures/i_task_specification.py +++ b/traits_futures/i_task_specification.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/multiprocessing_context.py b/traits_futures/multiprocessing_context.py index a131d89a..e126637d 100644 --- a/traits_futures/multiprocessing_context.py +++ b/traits_futures/multiprocessing_context.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/multiprocessing_router.py b/traits_futures/multiprocessing_router.py index f078eae8..e3161a43 100644 --- a/traits_futures/multiprocessing_router.py +++ b/traits_futures/multiprocessing_router.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/multithreading_context.py b/traits_futures/multithreading_context.py index e217f0d3..914472e0 100644 --- a/traits_futures/multithreading_context.py +++ b/traits_futures/multithreading_context.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/multithreading_router.py b/traits_futures/multithreading_router.py index 8a5609e8..af9bb1e9 100644 --- a/traits_futures/multithreading_router.py +++ b/traits_futures/multithreading_router.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/qt/event_loop.py b/traits_futures/qt/event_loop.py index 0744fd90..35ba0ccc 100644 --- a/traits_futures/qt/event_loop.py +++ b/traits_futures/qt/event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/qt/event_loop_helper.py b/traits_futures/qt/event_loop_helper.py index 5f71a5cb..b9f46833 100644 --- a/traits_futures/qt/event_loop_helper.py +++ b/traits_futures/qt/event_loop_helper.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/qt/pingee.py b/traits_futures/qt/pingee.py index c43b62c4..c08cbe7f 100644 --- a/traits_futures/qt/pingee.py +++ b/traits_futures/qt/pingee.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/qt/tests/test_event_loop_helper.py b/traits_futures/qt/tests/test_event_loop_helper.py index e69cd24b..f040357c 100644 --- a/traits_futures/qt/tests/test_event_loop_helper.py +++ b/traits_futures/qt/tests/test_event_loop_helper.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/qt/tests/test_pingee.py b/traits_futures/qt/tests/test_pingee.py index 6ba7d7fb..6c32a95c 100644 --- a/traits_futures/qt/tests/test_pingee.py +++ b/traits_futures/qt/tests/test_pingee.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/qt/tests/test_qt_event_loop.py b/traits_futures/qt/tests/test_qt_event_loop.py index c91029d9..da24493c 100644 --- a/traits_futures/qt/tests/test_qt_event_loop.py +++ b/traits_futures/qt/tests/test_qt_event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/testing/optional_dependencies.py b/traits_futures/testing/optional_dependencies.py index fd0df09e..4aca25a6 100644 --- a/traits_futures/testing/optional_dependencies.py +++ b/traits_futures/testing/optional_dependencies.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/testing/test_assistant.py b/traits_futures/testing/test_assistant.py index a4669ad3..6e33a732 100644 --- a/traits_futures/testing/test_assistant.py +++ b/traits_futures/testing/test_assistant.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/background_call_tests.py b/traits_futures/tests/background_call_tests.py index 44930ad8..f65fb850 100644 --- a/traits_futures/tests/background_call_tests.py +++ b/traits_futures/tests/background_call_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/background_iteration_tests.py b/traits_futures/tests/background_iteration_tests.py index c4cc02c2..3a34bd46 100644 --- a/traits_futures/tests/background_iteration_tests.py +++ b/traits_futures/tests/background_iteration_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/background_progress_tests.py b/traits_futures/tests/background_progress_tests.py index d61169b3..c3f1d51b 100644 --- a/traits_futures/tests/background_progress_tests.py +++ b/traits_futures/tests/background_progress_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/common_future_tests.py b/traits_futures/tests/common_future_tests.py index 9b94a7e2..8227828e 100644 --- a/traits_futures/tests/common_future_tests.py +++ b/traits_futures/tests/common_future_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/i_event_loop_helper_tests.py b/traits_futures/tests/i_event_loop_helper_tests.py index afd568e7..ae5a7b79 100644 --- a/traits_futures/tests/i_event_loop_helper_tests.py +++ b/traits_futures/tests/i_event_loop_helper_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/i_event_loop_tests.py b/traits_futures/tests/i_event_loop_tests.py index 3aca5412..2bf46ee9 100644 --- a/traits_futures/tests/i_event_loop_tests.py +++ b/traits_futures/tests/i_event_loop_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/i_message_router_tests.py b/traits_futures/tests/i_message_router_tests.py index 8b2c98ba..608c5ead 100644 --- a/traits_futures/tests/i_message_router_tests.py +++ b/traits_futures/tests/i_message_router_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/i_pingee_tests.py b/traits_futures/tests/i_pingee_tests.py index a7f0f356..712f8719 100644 --- a/traits_futures/tests/i_pingee_tests.py +++ b/traits_futures/tests/i_pingee_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_api.py b/traits_futures/tests/test_api.py index 24b715e2..8960025f 100644 --- a/traits_futures/tests/test_api.py +++ b/traits_futures/tests/test_api.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_background_call.py b/traits_futures/tests/test_background_call.py index 109690b6..b8419c7e 100644 --- a/traits_futures/tests/test_background_call.py +++ b/traits_futures/tests/test_background_call.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_background_iteration.py b/traits_futures/tests/test_background_iteration.py index 0f504bb1..b5ff2336 100644 --- a/traits_futures/tests/test_background_iteration.py +++ b/traits_futures/tests/test_background_iteration.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_background_progress.py b/traits_futures/tests/test_background_progress.py index 395f24fa..66b3a485 100644 --- a/traits_futures/tests/test_background_progress.py +++ b/traits_futures/tests/test_background_progress.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_base_future.py b/traits_futures/tests/test_base_future.py index 7601edc2..b3f2e516 100644 --- a/traits_futures/tests/test_base_future.py +++ b/traits_futures/tests/test_base_future.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_call_future.py b/traits_futures/tests/test_call_future.py index daaadc1c..98b3c3ec 100644 --- a/traits_futures/tests/test_call_future.py +++ b/traits_futures/tests/test_call_future.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_ets_event_loop.py b/traits_futures/tests/test_ets_event_loop.py index 171efc6d..46e25207 100644 --- a/traits_futures/tests/test_ets_event_loop.py +++ b/traits_futures/tests/test_ets_event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_exception_handling.py b/traits_futures/tests/test_exception_handling.py index a39a24b5..465264c5 100644 --- a/traits_futures/tests/test_exception_handling.py +++ b/traits_futures/tests/test_exception_handling.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_iteration_future.py b/traits_futures/tests/test_iteration_future.py index 7779d371..ff57093b 100644 --- a/traits_futures/tests/test_iteration_future.py +++ b/traits_futures/tests/test_iteration_future.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_multiprocessing_router.py b/traits_futures/tests/test_multiprocessing_router.py index 04913884..76263cd1 100644 --- a/traits_futures/tests/test_multiprocessing_router.py +++ b/traits_futures/tests/test_multiprocessing_router.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_multithreading_router.py b/traits_futures/tests/test_multithreading_router.py index a61c34ce..8eff435a 100644 --- a/traits_futures/tests/test_multithreading_router.py +++ b/traits_futures/tests/test_multithreading_router.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_progress_future.py b/traits_futures/tests/test_progress_future.py index cc835824..c35ee667 100644 --- a/traits_futures/tests/test_progress_future.py +++ b/traits_futures/tests/test_progress_future.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_test_assistant.py b/traits_futures/tests/test_test_assistant.py index 7f2c6fb3..00e38e25 100644 --- a/traits_futures/tests/test_test_assistant.py +++ b/traits_futures/tests/test_test_assistant.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_traits_executor.py b/traits_futures/tests/test_traits_executor.py index 9527dc64..89adaee5 100644 --- a/traits_futures/tests/test_traits_executor.py +++ b/traits_futures/tests/test_traits_executor.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/test_traits_process_executor.py b/traits_futures/tests/test_traits_process_executor.py index 17e05477..3548de5f 100644 --- a/traits_futures/tests/test_traits_process_executor.py +++ b/traits_futures/tests/test_traits_process_executor.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/tests/traits_executor_tests.py b/traits_futures/tests/traits_executor_tests.py index 87a147e9..3466f0a6 100644 --- a/traits_futures/tests/traits_executor_tests.py +++ b/traits_futures/tests/traits_executor_tests.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/traits_executor.py b/traits_futures/traits_executor.py index a6a3ee65..a78a90a2 100644 --- a/traits_futures/traits_executor.py +++ b/traits_futures/traits_executor.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/wrappers.py b/traits_futures/wrappers.py index b804068c..0a7bfb21 100644 --- a/traits_futures/wrappers.py +++ b/traits_futures/wrappers.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/wx/event_loop.py b/traits_futures/wx/event_loop.py index f43ed6e0..9813e653 100644 --- a/traits_futures/wx/event_loop.py +++ b/traits_futures/wx/event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/wx/event_loop_helper.py b/traits_futures/wx/event_loop_helper.py index c39ad118..e196028d 100644 --- a/traits_futures/wx/event_loop_helper.py +++ b/traits_futures/wx/event_loop_helper.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/wx/pingee.py b/traits_futures/wx/pingee.py index 500ebdc3..b44fc417 100644 --- a/traits_futures/wx/pingee.py +++ b/traits_futures/wx/pingee.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/wx/tests/test_event_loop_helper.py b/traits_futures/wx/tests/test_event_loop_helper.py index c3b31233..9a6d85a9 100644 --- a/traits_futures/wx/tests/test_event_loop_helper.py +++ b/traits_futures/wx/tests/test_event_loop_helper.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/wx/tests/test_pingee.py b/traits_futures/wx/tests/test_pingee.py index 36b33f44..d60b24f3 100644 --- a/traits_futures/wx/tests/test_pingee.py +++ b/traits_futures/wx/tests/test_pingee.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD diff --git a/traits_futures/wx/tests/test_wx_event_loop.py b/traits_futures/wx/tests/test_wx_event_loop.py index 460ddd0e..7117cd41 100644 --- a/traits_futures/wx/tests/test_wx_event_loop.py +++ b/traits_futures/wx/tests/test_wx_event_loop.py @@ -1,4 +1,4 @@ -# (C) Copyright 2018-2023 Enthought, Inc., Austin, TX +# (C) Copyright 2018-2024 Enthought, Inc., Austin, TX # All rights reserved. # # This software is provided without warranty under the terms of the BSD