diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 58b9257..9a57883 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, pypy2, pypy3] + python-version: [3.7, 3.8, 3.9, 3.10, pypy3] steps: - uses: actions/checkout@v2 diff --git a/README.rst b/README.rst index 88f75a1..e7bb25a 100644 --- a/README.rst +++ b/README.rst @@ -26,7 +26,7 @@ Features: Dependencies: ------------- -* Python 2 >= 2.6 or Python 3 >= 3.1 +* Python 3 >= 3.7 * python-discid_ >= 1.0.0 (or python-libdiscid_ >= 0.2.0) * python-musicbrainzngs_ >= 0.4 * keyring_ (optional) diff --git a/isrcsubmit.py b/isrcsubmit.py index 1bd5eb7..e500f53 100755 --- a/isrcsubmit.py +++ b/isrcsubmit.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (C) 2009-2015 Johannes Dewender # # This program is free software: you can redistribute it and/or modify diff --git a/setup.py b/setup.py index a313b80..4534f6f 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys import unittest diff --git a/test_isrcsubmit.py b/test_isrcsubmit.py index f5529aa..287b4ed 100755 --- a/test_isrcsubmit.py +++ b/test_isrcsubmit.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # Copyright (C) 2014 Johannes Dewender # This test is free. You can redistribute and/or modify it at will.