Skip to content

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhky committed Apr 9, 2020
1 parent 7dd2a68 commit 589670e
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: python
python:
- "2.7"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ After ensuring they have been installed, type the following to install `graphflo

# News

* 04/09/2020: `graphflow` 0.3.0 released.
* 04/07/2020: `graphflow` 0.2.1 released.
* 09/12/2018: `graphflow` 0.2.0 released.
* 09/03/2018: `graphflow` 0.1.6 released.
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.2'
version = u'0.3'
# The full version, including alpha/beta/rc tags.
release = u'0.2.1'
release = u'0.3.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 8 additions & 0 deletions doc/source/news.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
News
====

* 04/09/2020: `graphflow` 0.3.0 released.
* 04/07/2020: `graphflow` 0.2.1 released.
* 09/12/2018: `graphflow` 0.2.0 released.
* 09/03/2018: `graphflow` 0.1.6 released.
Expand All @@ -13,6 +14,13 @@ News
What's New
----------

Release 0.3.0 (April 9, 2020)
-----------------------------

* Support for Python 3.8;
* Decommissioning support for Python 2.7;
* Cython/C support for PageRank, with function arguments changed.

Release 0.2.1 (April 7, 2020)
-----------------------------

Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,20 @@ def readme():


setup(name='graphflow',
version="0.2.2a01",
version="0.3.0",
description="Algorithms for Graph Flow Analysis",
long_description="Numerical routines for analyzing data represented by graphs",
classifiers=[
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Fortran",
"Programming Language :: Cython",
"Programming Language :: C",
"License :: OSI Approved :: MIT License",
],
keywords="Algorithms for Graph Flow Analysis",
Expand Down

0 comments on commit 589670e

Please sign in to comment.