Skip to content

Commit 088c037

Browse files
authored
Merge pull request #423 from eblot/dev/ebl/v0.57
Prepare v0.57
2 parents 38d0952 + 129c5cd commit 088c037

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2008-2024 Emmanuel Blot <[email protected]>
1+
Copyright (c) 2008-2025 Emmanuel Blot <[email protected]>
22
All Rights Reserved.
33

44
SPDX-License-Identifier: BSD-3-Clause

pyftdi/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# Copyright (c) 2010-2024 Emmanuel Blot <[email protected]>
1+
# Copyright (c) 2010-2025 Emmanuel Blot <[email protected]>
22
# Copyright (c) 2010-2016, Neotion
33
# All rights reserved.
44
#
55
# SPDX-License-Identifier: BSD-3-Clause
66

77
# pylint: disable=missing-docstring
88

9-
__version__ = '0.56.0'
9+
__version__ = '0.57.0'
1010
__title__ = 'PyFtdi'
1111
__description__ = 'FTDI device driver (pure Python)'
1212
__uri__ = 'http://github.com/eblot/pyftdi'
1313
__doc__ = __description__ + ' <' + __uri__ + '>'
1414
__author__ = 'Emmanuel Blot'
1515
# For all support requests, please open a new issue on GitHub
1616
__email__ = '[email protected]'
17-
__license__ = 'Modified BSD'
18-
__copyright__ = 'Copyright (c) 2011-2024 Emmanuel Blot'
17+
__license__ = 'BSD-3-Clause'
18+
__copyright__ = 'Copyright (c) 2011-2025 Emmanuel Blot'
1919

2020

2121
from logging import WARNING, NullHandler, getLogger

pyftdi/doc/authors.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,4 @@ Contributors
5353
* Mark Mentovai
5454
* Alessandro Zini
5555
* Sjoerd Simons
56+
* David Schneider

pyftdi/doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def find_meta(meta):
5454
master_doc = 'index'
5555
project = find_meta('title')
5656
contact = '%s <%s>' % (find_meta('author'), find_meta('email'))
57-
copyright = '2010-2024, %s' % contact
57+
copyright = '2010-2025, %s' % contact
5858
show_authors = True
5959

6060
html_theme = 'sphinx_rtd_theme'

pyftdi/doc/license.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ BSD 3-clause
1818

1919
::
2020

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

2424
Redistribution and use in source and binary forms, with or without

pyftdi/i2c.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2017-2024, Emmanuel Blot <[email protected]>
1+
# Copyright (c) 2017-2025, Emmanuel Blot <[email protected]>
22
# All rights reserved.
33
#
44
# SPDX-License-Identifier: BSD-3-Clause

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
[metadata]
44
license_files = pyftdi/doc/license.rst
55

6+
[project]
7+
license = "BSD-3-Clause"
8+
69
[build_sphinx]
710
source-dir = pyftdi/doc
811
build-dir = sphinx

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33
#
4-
# Copyright (c) 2010-2024 Emmanuel Blot <[email protected]>
4+
# Copyright (c) 2010-2025 Emmanuel Blot <[email protected]>
55
# Copyright (c) 2010-2016 Neotion
66
# All rights reserved.
77
#
@@ -32,7 +32,6 @@
3232
'Environment :: Other Environment',
3333
'Natural Language :: English',
3434
'Intended Audience :: Developers',
35-
'License :: OSI Approved :: BSD License',
3635
'Operating System :: MacOS :: MacOS X',
3736
'Operating System :: POSIX',
3837
'Programming Language :: Python :: 3.9',

0 commit comments

Comments
 (0)