Skip to content

Commit

Permalink
Version 0.6.1b9
Browse files Browse the repository at this point in the history
Another version increment based on silly bugs, this time setup.py had a
bug.

I decided to finally switch to using standard python tags: v0.6.1b9
instead of v0.6.1-beta.9. I prefer the latter, but it is good to follow
the rules.
  • Loading branch information
MikeDacre committed Aug 3, 2017
1 parent a3e0220 commit f77190c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ https://github.com/MikeDacre/fyrd
+---------+----------------------------------------------------+
| License | MIT License, property of Stanford, use as you wish |
+---------+----------------------------------------------------+
| Version | 0.6.1-beta.8 |
| Version | 0.6.1b9 |
+---------+----------------------------------------------------+


Expand Down Expand Up @@ -246,7 +246,7 @@ To install a specific tag from github, do the following:

.. code:: shell
pip install https://github.com/MikeDacre/fyrd/archive/v0.6.1-beta.8.tar.gz
pip install https://github.com/MikeDacre/fyrd/archive/v0.6.1b9.tar.gz
fyrd conf init
To get the latest version:
Expand Down
Binary file modified docs/fyrd_manual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/sphinx/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
copyright = '2016, Michael Dacre <mike.dacre@gmail.com>'
author = 'Michael Dacre <mike.dacre@gmail.com>'
version = '0.6'
release = '0.6.1-beta.8'
release = '0.6.1b9'
language = 'en'

# Add any paths that contain templates here, relative to this directory.
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Python job submission on torque and slurm clusters with dependency tracking.
+---------+----------------------------------------------------+
| License | MIT License, property of Stanford, use as you wish |
+---------+----------------------------------------------------+
| Version | 0.6.1-beta.8 |
| Version | 0.6.1b9 |
+---------+----------------------------------------------------+

.. only:: html
Expand Down
4 changes: 2 additions & 2 deletions fyrd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
AUTHOR: Michael D Dacre, mike.dacre@gmail.com
ORGANIZATION: Stanford University
LICENSE: MIT License, property of Stanford, use as you wish
VERSION: 0.6.1-beta.7
VERSION: 0.6.1b9
CREATED: 2015-12-11 22:19
Last modified: 2017-08-02 23:37
Last modified: 2017-08-03 13:46
=============== ===================================================
Allows simple job submission with *dependency tracking and queue waiting* with
Expand Down
2 changes: 1 addition & 1 deletion fyrd/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Author Michael D Dacre <mike.dacre@gmail.com>
Organization Stanford University
License MIT License, use as you wish
Version 0.6.2-beta.8
Version 0.6.2b9
============ ======================================
"""
from __future__ import print_function
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
from setuptools.command.test import test as TestCommand
log = setuptools.distutils.log

VERSION='0.6.1-beta.8',
VERSION='0.6.1b9'
GITHUB='https://github.com/MikeDacre/fyrd'

###############################################################################
# A class to run tests #
Expand Down Expand Up @@ -61,10 +62,10 @@ def run_tests(self):
'or local machines'),
long_description=long_description,
url='https://fyrd.science',
download_url='https://github.com/MikeDacre/fyrd/archive/v{}.tar.gz'.format(
VERSION
download_url='{}/v{}.tar.gz'.format(
GITHUB, VERSION
),
bugtrack_url='https://github.com/MikeDacre/fyrd/issues',
bugtrack_url='{}/issues'.format(GITHUB),
author='Michael Dacre',
author_email='mike.dacre@gmail.com',
license='MIT',
Expand Down

0 comments on commit f77190c

Please sign in to comment.