Skip to content

Commit

Permalink
Merge pull request #1 from jb3/py3.12
Browse files Browse the repository at this point in the history
feat: migrate to python 3.12
  • Loading branch information
jb3 authored Apr 4, 2024
2 parents ebe4afe + 1c67122 commit 8dfafde
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,5 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

.python-version
4 changes: 2 additions & 2 deletions antur/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Init file for antur package."""

import pkg_resources
from importlib.metadata import version

__version__ = pkg_resources.get_distribution("antur").version
__version__ = version("antur")
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.11"
python = "^3.12"
textual = "^0.55.1"
aiohttp = "^3.9.3"
humanize = "^4.9.0"
Expand Down

0 comments on commit 8dfafde

Please sign in to comment.