Skip to content

Commit

Permalink
Merge pull request #34 from nathanielvarona/improvement/python3.11-an…
Browse files Browse the repository at this point in the history
…d-python3.12-support

Python3.11 and Python3.12 Support
  • Loading branch information
nathanielvarona authored Apr 26, 2024
2 parents 12a3dad + 9ec553e commit f174e38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pritunl_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from pkg_resources import get_distribution
__version__ = get_distribution('pritunl-api').version
from importlib.metadata import version
__version__ = version("pritunl-api")

import json
import logging as log
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
Expand Down

0 comments on commit f174e38

Please sign in to comment.