Blob Blame History Raw
diff -Nur pylast-3.2.0/setup.py pylast-3.2.0-new/setup.py
--- pylast-3.2.0/setup.py	2020-01-03 12:26:27.000000000 +0100
+++ pylast-3.2.0-new/setup.py	2020-02-06 15:12:42.293641946 +0100
@@ -3,15 +3,9 @@
 with open("README.md") as f:
     long_description = f.read()
 
-
-def local_scheme(version):
-    """Skip the local version (eg. +xyz of 0.6.1.dev4+gdf99fe2)
-    to be able to upload to Test PyPI"""
-    return ""
-
-
 setup(
     name="pylast",
+    version="3.2.0",
     description="A Python interface to Last.fm and Libre.fm",
     long_description=long_description,
     long_description_content_type="text/markdown",
@@ -22,8 +16,6 @@
     keywords=["Last.fm", "music", "scrobble", "scrobbling"],
     packages=find_packages(where="src"),
     package_dir={"": "src"},
-    use_scm_version={"local_scheme": local_scheme},
-    setup_requires=["setuptools_scm"],
     extras_require={
         "tests": ["flaky", "pytest", "pytest-cov", "pytest-random-order", "pyyaml"]
     },