Skip to content

Commit 3a96ab1

Browse files
committed
Bump version for release; fix license display on PyPI
1 parent e2369a4 commit 3a96ab1

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

emailproxy.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = 'Simon Robinson'
77
__copyright__ = 'Copyright (c) 2023 Simon Robinson'
88
__license__ = 'Apache 2.0'
9-
__version__ = '2023-10-31' # ISO 8601 (YYYY-MM-DD)
9+
__version__ = '2023-11-01' # ISO 8601 (YYYY-MM-DD)
1010
__package_version__ = '.'.join([str(int(i)) for i in __version__.split('-')]) # for pyproject.toml usage only
1111

1212
import abc
@@ -2428,7 +2428,7 @@ def macos_nsworkspace_notification_listener_(self, notification):
24282428

24292429
# noinspection PyDeprecation
24302430
def create_icon(self):
2431-
# temporary fix for pystray <= 0.19.4 incompatibility with PIL 10.0.0+; fixed once pystray PR #147 is released
2431+
# fix pystray <= 0.19.4 incompatibility with PIL 10.0.0+; resolved in 0.19.5 and later via pystray PR #147
24322432
with warnings.catch_warnings():
24332433
warnings.simplefilter('ignore', DeprecationWarning)
24342434
pystray_version = pkg_resources.get_distribution('pystray').version

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
]
1010
description = "Transparently add OAuth 2.0 support to IMAP/POP/SMTP clients that don't support this authentication method."
1111
readme = { file = "README.md", content-type = "text/markdown" }
12-
license = { file = "LICENSE" }
12+
license = { text = "Apache License 2.0" }
1313
requires-python = ">=3.6"
1414
classifiers = [
1515
"Operating System :: OS Independent",
@@ -32,7 +32,10 @@ emailproxy = "emailproxy:App"
3232

3333
[project.urls]
3434
"Homepage" = "https://github.com/simonrob/email-oauth2-proxy"
35+
"Changelog" = "https://github.com/simonrob/email-oauth2-proxy/releases"
36+
"Documentation" = "https://github.com/simonrob/email-oauth2-proxy#email-oauth-20-proxy"
3537
"Bug Tracker" = "https://github.com/simonrob/email-oauth2-proxy/issues"
38+
"Source Code" = "https://github.com/simonrob/email-oauth2-proxy"
3639

3740
[tool.setuptools.dynamic]
3841
dependencies = { file = ["requirements-core.txt"] }

0 commit comments

Comments
 (0)