Skip to content

Commit

Permalink
Drop support for old Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Freso committed May 9, 2021
1 parent cdc7aa5 commit 52f2de4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion isrcsubmit.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

import sys
import unittest
Expand Down
2 changes: 1 addition & 1 deletion test_isrcsubmit.py
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit 52f2de4

Please sign in to comment.