Skip to content

Commit bb37c87

Browse files
committed
Document 3.9 support and update copyright for release
1 parent 689c1e7 commit bb37c87

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# -- Project information -----------------------------------------------------
2525

2626
project = 'EasyAVR'
27-
copyright = '2018-2020, David Howland'
27+
copyright = '2018-2021, David Howland'
2828
author = 'David Howland'
2929

3030
# The short X.Y version

keymapper/cxFreeze_setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
#
33
# Easy AVR USB Keyboard Firmware
4-
# Copyright (C) 2017-2020 David Howland
4+
# Copyright (C) 2017-2021 David Howland
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -57,6 +57,7 @@
5757
'Programming Language :: Python :: 3.6',
5858
'Programming Language :: Python :: 3.7',
5959
'Programming Language :: Python :: 3.8',
60+
'Programming Language :: Python :: 3.9',
6061
'Programming Language :: C',
6162
'Topic :: Utilities',
6263
],
@@ -79,7 +80,7 @@
7980
base="Win32GUI",
8081
targetName="easykeymap.exe",
8182
icon="easykeymap\\res\\keycap.ico",
82-
copyright="Copyright 2020 David Howland"
83+
copyright="Copyright 2021 David Howland"
8384
)
8485
]
8586
)

keymapper/easykeymap/gui/mainframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,7 @@ def OnHelpAbout(self, event):
459459
info.SetName("EasyAVR")
460460
info.SetVersion(version_string)
461461
info.SetDescription("Keymapper for the Easy AVR USB Keyboard Firmware")
462-
info.SetCopyright("Copyright (C) 2013-2020 David Howland")
462+
info.SetCopyright("Copyright (C) 2013-2021 David Howland")
463463
info.SetWebSite("https://github.com/dhowland/EasyAVR")
464464
iconpath = get_pkg_path('res/keycap.ico')
465465
info.SetIcon(wx.Icon(iconpath, type=wx.BITMAP_TYPE_ICO))

keymapper/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python3
22
#
33
# Easy AVR USB Keyboard Firmware
4-
# Copyright (C) 2013-2020 David Howland
4+
# Copyright (C) 2013-2021 David Howland
55
#
66
# This program is free software; you can redistribute it and/or modify
77
# it under the terms of the GNU General Public License as published by
@@ -46,6 +46,7 @@
4646
'Programming Language :: Python :: 3.6',
4747
'Programming Language :: Python :: 3.7',
4848
'Programming Language :: Python :: 3.8',
49+
'Programming Language :: Python :: 3.9',
4950
'Programming Language :: C',
5051
'Topic :: Utilities',
5152
],

0 commit comments

Comments
 (0)