Skip to content

Commit

Permalink
Bump version for release; fix license display on PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
simonrob committed Nov 1, 2023
1 parent e2369a4 commit 3a96ab1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions emailproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__author__ = 'Simon Robinson'
__copyright__ = 'Copyright (c) 2023 Simon Robinson'
__license__ = 'Apache 2.0'
__version__ = '2023-10-31' # ISO 8601 (YYYY-MM-DD)
__version__ = '2023-11-01' # ISO 8601 (YYYY-MM-DD)
__package_version__ = '.'.join([str(int(i)) for i in __version__.split('-')]) # for pyproject.toml usage only

import abc
Expand Down Expand Up @@ -2428,7 +2428,7 @@ def macos_nsworkspace_notification_listener_(self, notification):

# noinspection PyDeprecation
def create_icon(self):
# temporary fix for pystray <= 0.19.4 incompatibility with PIL 10.0.0+; fixed once pystray PR #147 is released
# fix pystray <= 0.19.4 incompatibility with PIL 10.0.0+; resolved in 0.19.5 and later via pystray PR #147
with warnings.catch_warnings():
warnings.simplefilter('ignore', DeprecationWarning)
pystray_version = pkg_resources.get_distribution('pystray').version
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
]
description = "Transparently add OAuth 2.0 support to IMAP/POP/SMTP clients that don't support this authentication method."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
license = { text = "Apache License 2.0" }
requires-python = ">=3.6"
classifiers = [
"Operating System :: OS Independent",
Expand All @@ -32,7 +32,10 @@ emailproxy = "emailproxy:App"

[project.urls]
"Homepage" = "https://github.com/simonrob/email-oauth2-proxy"
"Changelog" = "https://github.com/simonrob/email-oauth2-proxy/releases"
"Documentation" = "https://github.com/simonrob/email-oauth2-proxy#email-oauth-20-proxy"
"Bug Tracker" = "https://github.com/simonrob/email-oauth2-proxy/issues"
"Source Code" = "https://github.com/simonrob/email-oauth2-proxy"

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

0 comments on commit 3a96ab1

Please sign in to comment.