Skip to content

Commit f84181d

Browse files
committed
Removed pyparsing.py and Python 2 support
- Removed pyparsing.py - Added message that Python 2 is no longer supported
1 parent 6461b2c commit f84181d

5 files changed

+11
-5724
lines changed

CHANGES

+4
Original file line numberDiff line numberDiff line change
@@ -615,3 +615,7 @@ different panes. Tie/untie option added for notes. Broken rhythm
615615
- Updated FluidSynth Windows binaries to latest version (2.2.4)
616616
- Fixed tab order in ABC settings menu
617617
- Escape key exits full screen mode
618+
619+
1.3.8.7
620+
- Removed pyparsing.py (use 'pip install pyparsing' or 'sudo apt install python3-pyparsing' to fix pyparsing errors)
621+
- Added message that Python 2 is no longer supported

easy_abc.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22

3-
program_version = '1.3.8.6'
3+
program_version = '1.3.8.7'
44
program_name = 'EasyABC ' + program_version
55

66
# Copyright (C) 2011-2014 Nils Liberg (mail: kotorinl at yahoo.co.uk)
@@ -35,6 +35,10 @@
3535
import sys
3636

3737
PY3 = sys.version_info >= (3,0,0)
38+
if not PY3:
39+
print("Python 2 is no longer supported. Please use:")
40+
print(" python3 easy_abc.py")
41+
exit()
3842

3943
abcm2ps_default_encoding = 'utf-8' ## 'latin-1'
4044
import codecs

0 commit comments

Comments
 (0)