Skip to content

Commit 9ac6fd3

Browse files
committed
inconsequential change to __meta__.py to confirm workflow
1 parent 2927eaa commit 9ac6fd3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

markdown/__meta__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# (1, 1, 2, 'dev', 0) => "1.1.2.dev0"
2525
# (1, 1, 2, 'alpha', 1) => "1.1.2a1"
2626
# (1, 2, 0, 'beta', 2) => "1.2b2"
27-
# (1, 2, 0, 'rc', 4) => "1.2rc4"
27+
# (1, 2, 0, 'rc', 3) => "1.2rc3"
2828
# (1, 2, 0, 'final', 0) => "1.2"
2929
__version_info__ = (3, 4, 4, 'final', 0)
3030

tests/test_meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def test__version__IsValid(self):
1818

1919
try:
2020
import packaging.version
21-
except:
21+
except ImportError:
2222
self.skipTest('packaging does not appear to be installed')
2323

2424
self.assertEqual(__version__, str(packaging.version.Version(__version__)))

0 commit comments

Comments
 (0)