From 6ff4b5cfc9e1189a1f7c3334dc959cf99d61835f Mon Sep 17 00:00:00 2001 From: Emmanuel Blot Date: Thu, 14 Aug 2025 17:01:43 +0200 Subject: [PATCH 1/2] doc: update authors Signed-off-by: Emmanuel Blot --- pyftdi/doc/authors.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/pyftdi/doc/authors.rst b/pyftdi/doc/authors.rst index 287909c4..fcf9e259 100644 --- a/pyftdi/doc/authors.rst +++ b/pyftdi/doc/authors.rst @@ -53,3 +53,4 @@ Contributors * Mark Mentovai * Alessandro Zini * Sjoerd Simons + * David Schneider From 129c5cd02b1f339558a74e21cdf05b135d789431 Mon Sep 17 00:00:00 2001 From: Emmanuel Blot Date: Thu, 14 Aug 2025 17:01:59 +0200 Subject: [PATCH 2/2] version: update to 0.57.0 --- LICENSE | 2 +- pyftdi/__init__.py | 8 ++++---- pyftdi/doc/conf.py | 2 +- pyftdi/doc/license.rst | 2 +- pyftdi/i2c.py | 2 +- setup.cfg | 3 +++ setup.py | 3 +-- 7 files changed, 12 insertions(+), 10 deletions(-) diff --git a/LICENSE b/LICENSE index b262ab34..43c41ad7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2008-2024 Emmanuel Blot +Copyright (c) 2008-2025 Emmanuel Blot All Rights Reserved. SPDX-License-Identifier: BSD-3-Clause diff --git a/pyftdi/__init__.py b/pyftdi/__init__.py index 3c2620d3..1e7682ba 100644 --- a/pyftdi/__init__.py +++ b/pyftdi/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2024 Emmanuel Blot +# Copyright (c) 2010-2025 Emmanuel Blot # Copyright (c) 2010-2016, Neotion # All rights reserved. # @@ -6,7 +6,7 @@ # pylint: disable=missing-docstring -__version__ = '0.56.0' +__version__ = '0.57.0' __title__ = 'PyFtdi' __description__ = 'FTDI device driver (pure Python)' __uri__ = 'http://github.com/eblot/pyftdi' @@ -14,8 +14,8 @@ __author__ = 'Emmanuel Blot' # For all support requests, please open a new issue on GitHub __email__ = 'emmanuel.blot@free.fr' -__license__ = 'Modified BSD' -__copyright__ = 'Copyright (c) 2011-2024 Emmanuel Blot' +__license__ = 'BSD-3-Clause' +__copyright__ = 'Copyright (c) 2011-2025 Emmanuel Blot' from logging import WARNING, NullHandler, getLogger diff --git a/pyftdi/doc/conf.py b/pyftdi/doc/conf.py index 191cbd9f..1f42769d 100644 --- a/pyftdi/doc/conf.py +++ b/pyftdi/doc/conf.py @@ -54,7 +54,7 @@ def find_meta(meta): master_doc = 'index' project = find_meta('title') contact = '%s <%s>' % (find_meta('author'), find_meta('email')) -copyright = '2010-2024, %s' % contact +copyright = '2010-2025, %s' % contact show_authors = True html_theme = 'sphinx_rtd_theme' diff --git a/pyftdi/doc/license.rst b/pyftdi/doc/license.rst index 937235f7..fbfd4104 100644 --- a/pyftdi/doc/license.rst +++ b/pyftdi/doc/license.rst @@ -18,7 +18,7 @@ BSD 3-clause :: - Copyright (c) 2008-2021 Emmanuel Blot + Copyright (c) 2008-2025 Emmanuel Blot All Rights Reserved. Redistribution and use in source and binary forms, with or without diff --git a/pyftdi/i2c.py b/pyftdi/i2c.py index 15a1f60d..53086494 100644 --- a/pyftdi/i2c.py +++ b/pyftdi/i2c.py @@ -1,4 +1,4 @@ -# Copyright (c) 2017-2024, Emmanuel Blot +# Copyright (c) 2017-2025, Emmanuel Blot # All rights reserved. # # SPDX-License-Identifier: BSD-3-Clause diff --git a/setup.cfg b/setup.cfg index 28e40d98..da31f73b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,9 @@ [metadata] license_files = pyftdi/doc/license.rst +[project] +license = "BSD-3-Clause" + [build_sphinx] source-dir = pyftdi/doc build-dir = sphinx diff --git a/setup.py b/setup.py index c9be82f9..e8de6e2a 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (c) 2010-2024 Emmanuel Blot +# Copyright (c) 2010-2025 Emmanuel Blot # Copyright (c) 2010-2016 Neotion # All rights reserved. # @@ -32,7 +32,6 @@ 'Environment :: Other Environment', 'Natural Language :: English', 'Intended Audience :: Developers', - 'License :: OSI Approved :: BSD License', 'Operating System :: MacOS :: MacOS X', 'Operating System :: POSIX', 'Programming Language :: Python :: 3.9',