Skip to content

Commit

Permalink
Post 2.6.5 release actions done
Browse files Browse the repository at this point in the history
  • Loading branch information
robbmcleod committed May 1, 2018
1 parent c27f1da commit 8b91a6d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Release notes for Numexpr 2.6 series
=====================================

Changes from 2.6.5 to 2.6.6
---------------------------

- TODO

Changes from 2.6.4 to 2.6.5
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion numexpr/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
# rights to use.
####################################################################

version = '2.6.5'
version = '2.6.6dev0'
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,9 @@
####################################################################

import shutil
import os
import sys
import os.path as op
import sys, os, os.path as op, io
from distutils.command.clean import clean


if sys.version_info < (2, 6):
raise RuntimeError("must use python 2.6 or greater")

Expand All @@ -27,6 +24,9 @@
with open('requirements.txt') as f:
requirements = f.read().splitlines()

with io.open('README.rst', encoding='utf-8') as f:
LONG_DESCRIPTION = f.read()

# Fetch the version for numexpr (will be put in variable `version`)
with open(os.path.join('numexpr', 'version.py')) as f:
exec(f.read())
Expand All @@ -37,6 +37,7 @@ def setup_package():
author='David M. Cooke, Francesc Alted and others',
author_email='david.m.cooke@gmail.com, faltet@gmail.com',
url='https://github.com/pydata/numexpr',
long_description=LONG_DESCRIPTION,
license='MIT',
packages=['numexpr'],
install_requires=requirements,
Expand Down

0 comments on commit 8b91a6d

Please sign in to comment.