Skip to content
This repository has been archived by the owner on Jun 21, 2022. It is now read-only.

Commit

Permalink
finally version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jpivarski committed Apr 12, 2019
1 parent 76074ce commit 2db77f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion awkward-numba/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_version():
packages = find_packages(exclude = ["tests"]),
scripts = [],
description = "Allows awkward arrays to be used in Numba-compiled code and optimizes awkward methods with JIT compilation.",
long_description = """.. image:: https://raw.githubusercontent.com/scikit-hep/awkward-array/master/docs/source/logo-500px.png
long_description = """.. image:: https://raw.githubusercontent.com/scikit-hep/awkward-array/master/docs/source/logo-600px.png
:alt: awkward-array
:target: https://github.com/scikit-hep/awkward-array
Expand Down
2 changes: 1 addition & 1 deletion awkward/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import re

__version__ = "0.9.0rc3"
__version__ = "0.9.0"
version = __version__
version_info = tuple(re.split(r"[-\.]", __version__))

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_description():
start = description.index(".. inclusion-marker-1-5-do-not-remove")
stop = description.index(".. inclusion-marker-3-do-not-remove")

before = """.. image:: https://raw.githubusercontent.com/scikit-hep/awkward-array/master/docs/source/logo-500px.png
before = """.. image:: https://raw.githubusercontent.com/scikit-hep/awkward-array/master/docs/source/logo-600px.png
:alt: awkward-array
:target: https://github.com/scikit-hep/awkward-array
Expand All @@ -42,7 +42,7 @@ def get_description():
"""

return description[start:stop].strip() # before + + after
return before + description[start:stop].strip() # + after

setup(name = "awkward",
version = get_version(),
Expand Down

0 comments on commit 2db77f9

Please sign in to comment.