Skip to content

Commit 7d298d2

Browse files
committed
Release v0.0.2
1 parent 567e034 commit 7d298d2

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

RELEASE.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Please follow the instructions to make a new release of the accessibility pygmen
1111
- `python setup.py bdist_wheel --universal`
1212
- `python setup.py sdist`
1313
- `twine check dist/*`
14+
- `twine upload dist/*`
1415
- `git tag -a vX.X.X -m 'Release x.x.x'`
1516
- Update `VERSION_INFO` in the `__init__.py` add `dev` and increment version
1617
- `git add && git commit`

a11y_pygments/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
VERSION_INFO = (0, 0, 2, 'dev')
1+
VERSION_INFO = (0, 0, 2)
22
__version__ = '.'.join(map(str, VERSION_INFO))

setup.py

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import ast
12
import os
23
from setuptools import setup, find_packages
34

@@ -23,9 +24,23 @@ def get_long_description():
2324
return fp.read()
2425

2526

27+
def get_version(module='a11y_pygments'):
28+
"""Get version."""
29+
path = os.path.join(os.path.abspath(__file__), module, '__init__.py')
30+
with open(path, 'r') as f:
31+
data = f.read()
32+
lines = data.split('\n')
33+
for line in lines:
34+
if line.startswith('VERSION_INFO'):
35+
version_tuple = ast.literal_eval(line.split('=')[-1].strip())
36+
version = '.'.join(map(str, version_tuple))
37+
break
38+
return version
39+
40+
2641
setup (
2742
name='accessible-pygments',
28-
version='0.0.1',
43+
version=get_version(),
2944
description='A collection of accessible pygments styles',
3045
long_description=get_long_description(),
3146
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)