Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2008-2024 Emmanuel Blot <[email protected]>
Copyright (c) 2008-2025 Emmanuel Blot <[email protected]>
All Rights Reserved.

SPDX-License-Identifier: BSD-3-Clause
Expand Down
8 changes: 4 additions & 4 deletions pyftdi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
# Copyright (c) 2010-2024 Emmanuel Blot <[email protected]>
# Copyright (c) 2010-2025 Emmanuel Blot <[email protected]>
# Copyright (c) 2010-2016, Neotion
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause

# 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'
__doc__ = __description__ + ' <' + __uri__ + '>'
__author__ = 'Emmanuel Blot'
# For all support requests, please open a new issue on GitHub
__email__ = '[email protected]'
__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
Expand Down
1 change: 1 addition & 0 deletions pyftdi/doc/authors.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@ Contributors
* Mark Mentovai
* Alessandro Zini
* Sjoerd Simons
* David Schneider
2 changes: 1 addition & 1 deletion pyftdi/doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion pyftdi/doc/license.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BSD 3-clause

::

Copyright (c) 2008-2021 Emmanuel Blot <[email protected]>
Copyright (c) 2008-2025 Emmanuel Blot <[email protected]>
All Rights Reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion pyftdi/i2c.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2017-2024, Emmanuel Blot <[email protected]>
# Copyright (c) 2017-2025, Emmanuel Blot <[email protected]>
# All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2010-2024 Emmanuel Blot <[email protected]>
# Copyright (c) 2010-2025 Emmanuel Blot <[email protected]>
# Copyright (c) 2010-2016 Neotion
# All rights reserved.
#
Expand Down Expand Up @@ -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',
Expand Down
Loading