Skip to content

Commit

Permalink
Merge branch 'release/0.9.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
chabErch committed Jun 12, 2021
2 parents 94f035a + d89715c commit 54ad1a7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'chaberch'

# The full version, including alpha/beta/rc tags
release = '0.9.4'
release = '0.9.5'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 0 additions & 2 deletions linum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,3 @@
from .excel_renderer.excel_renderer import ExcelRenderer
from .txt_renderer.console_renderer import ConsoleRenderer
from .txt_renderer.txt_renderer import TxtRenderer

__version__ = '0.9.4'
10 changes: 7 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,23 @@

from setuptools import setup, find_packages

import linum

here = path.abspath(path.dirname(__file__))

# Long description
with open(path.join(here, "README.md")) as f:
long_description = f.read()

# Requirements
with open(path.join(here, "requirements.txt")) as f:
requirements = f.readlines()

# Version
with open(path.join(here, 'version.txt')) as f:
version = f.readline()

setup(
name='Linum',
version=linum.__version__,
version=version,
packages=find_packages(exclude=["tests", "examples"]),
package_data={"": ["*.yaml"]},
url='https://github.com/chabErch/Linum',
Expand Down
1 change: 1 addition & 0 deletions version.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.9.5

0 comments on commit 54ad1a7

Please sign in to comment.