Skip to content

Commit

Permalink
Prepare for release of version 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mwaskom committed Jul 7, 2017
1 parent b734b4f commit dcc01f0
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion doc/commandline.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ surface_snapshots.py

view_ffx_results.py
-------------------
`

.. literalinclude:: commandline/view_ffx_results.txt
3 changes: 2 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@

# General information about the project.
project = u'lyman'
copyright = u'2012-2016, Michael Waskom'
import time
copyright = u'2012-{}, Michael Waskom'.format(time.strftime("%Y"))

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
6 changes: 4 additions & 2 deletions doc/release/v0.0.11.txt → doc/release/v1.0.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@

v0.0.11 (Unreleased)
--------------------
v1.0 (July 7, 2017)
-------------------

This release is being marked as version 1.0 to signify that it is the final iteration of lyman as it existed in the versions leading up to 1.0. From here on, there will be major, breaking changes to the workflows, both from an API perspective and in terms of what kind of analyses are supported. It is possible, but not promised, that minor bugs will be fixed on the 1.0 branch. But going forward, all major development will take place in a 2.0 version that might look substantially different.

- Internal code changes to bring provisional support for Python 3 and later versions of numpy.

Expand Down
2 changes: 1 addition & 1 deletion doc/releases.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release notes
=============

.. include:: release/v0.0.11.txt
.. include:: release/v1.0.txt

.. include:: release/v0.0.10.txt

Expand Down
2 changes: 1 addition & 1 deletion lyman/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .frontend import *

version = "0.0.11.dev"
version = "1.0"
__version__ = version
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
LICENSE = 'BSD (3-clause)'
URL = 'http://www.cns.nyu.edu/~mwaskom/software/lyman/'
DOWNLOAD_URL = 'https://github.com/mwaskom/lyman'
VERSION = '0.0.11.dev'
VERSION = '1.0'

def check_dependencies():

Expand Down Expand Up @@ -57,7 +57,7 @@ def check_dependencies():
version=VERSION,
url=URL,
download_url=DOWNLOAD_URL,
install_requires=["moss>=0.3.3"],
install_requires=["moss>=0.5"],
packages=['lyman',
'lyman.tests',
'lyman.workflows',
Expand Down

0 comments on commit dcc01f0

Please sign in to comment.