Skip to content

Commit

Permalink
Document 3.9 support and update copyright for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dhowland committed Aug 28, 2021
1 parent 689c1e7 commit bb37c87
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# -- Project information -----------------------------------------------------

project = 'EasyAVR'
copyright = '2018-2020, David Howland'
copyright = '2018-2021, David Howland'
author = 'David Howland'

# The short X.Y version
Expand Down
5 changes: 3 additions & 2 deletions keymapper/cxFreeze_setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
#
# Easy AVR USB Keyboard Firmware
# Copyright (C) 2017-2020 David Howland
# Copyright (C) 2017-2021 David Howland
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -57,6 +57,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: C',
'Topic :: Utilities',
],
Expand All @@ -79,7 +80,7 @@
base="Win32GUI",
targetName="easykeymap.exe",
icon="easykeymap\\res\\keycap.ico",
copyright="Copyright 2020 David Howland"
copyright="Copyright 2021 David Howland"
)
]
)
2 changes: 1 addition & 1 deletion keymapper/easykeymap/gui/mainframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ def OnHelpAbout(self, event):
info.SetName("EasyAVR")
info.SetVersion(version_string)
info.SetDescription("Keymapper for the Easy AVR USB Keyboard Firmware")
info.SetCopyright("Copyright (C) 2013-2020 David Howland")
info.SetCopyright("Copyright (C) 2013-2021 David Howland")
info.SetWebSite("https://github.com/dhowland/EasyAVR")
iconpath = get_pkg_path('res/keycap.ico')
info.SetIcon(wx.Icon(iconpath, type=wx.BITMAP_TYPE_ICO))
Expand Down
3 changes: 2 additions & 1 deletion keymapper/setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
#
# Easy AVR USB Keyboard Firmware
# Copyright (C) 2013-2020 David Howland
# Copyright (C) 2013-2021 David Howland
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -46,6 +46,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: C',
'Topic :: Utilities',
],
Expand Down

0 comments on commit bb37c87

Please sign in to comment.