diff --git a/pyproject.toml b/pyproject.toml index 9143015..ffdd506 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "spotify-to-musi" description = "Transfer Spotify playlists to Musi." -version = "2.0.0rc4" +version = "2.0.0" readme = "README.md" license = "MIT" authors = ["Hexiro "] @@ -13,7 +13,6 @@ classifiers = [ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", diff --git a/spotify_to_musi/__main__.py b/spotify_to_musi/__main__.py index d3bcaf2..309f461 100644 --- a/spotify_to_musi/__main__.py +++ b/spotify_to_musi/__main__.py @@ -30,7 +30,7 @@ def wrapper(*args: t.Any, **kwargs: t.Any) -> t.Any: # Set the policy to prevent "Event loop is closed" error on Windows - https://github.com/encode/httpx/issues/914 asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) elif sys.platform == "linux": - import uvloop + import uvloop # type: ignore uvloop.install()