Skip to content

Commit

Permalink
Increment version to 0.6.1-beta.6
Browse files Browse the repository at this point in the history
Also remove 'Last updated' string from file docstrings.
  • Loading branch information
MikeDacre committed Nov 14, 2016
1 parent 64e293d commit ef76205
Show file tree
Hide file tree
Showing 17 changed files with 9 additions and 31 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ environment!
+---------+----------------------------------------------------+
| License | MIT License, property of Stanford, use as you wish |
+---------+----------------------------------------------------+
| Version | 0.6.1-beta.5 |
| Version | 0.6.1-beta.6 |
+---------+----------------------------------------------------+

.. image:: https://readthedocs.org/projects/fyrd/badge/?version=latest
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.5'
release = '0.6.1-beta.6'
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.5 |
| Version | 0.6.1-beta.6 |
+---------+----------------------------------------------------+

.. only:: html
Expand Down
6 changes: 3 additions & 3 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.5
VERSION: 0.6.1-beta.6
CREATED: 2015-12-11 22:19
Last modified: 2016-11-07 21:21
Last modified: 2016-11-14 14:46
=============== ===================================================
Allows simple job submission with *dependency tracking and queue waiting* with
Expand Down Expand Up @@ -143,7 +143,7 @@
import atexit as _atexit

# Version Number
__version__ = '0.6.1-beta.5'
__version__ = '0.6.1-beta.6'

#################################################
# Currently configured job submission systems #
Expand Down
5 changes: 1 addition & 4 deletions fyrd/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@
Author Michael D Dacre <mike.dacre@gmail.com>
Organization Stanford University
License MIT License, use as you wish
Created 2016-10-08
Version 0.4.0b1
Version 0.6.2-beta.6
============ ======================================
Last modified: 2016-11-14 14:23
"""
from __future__ import print_function
import sys
Expand Down
2 changes: 0 additions & 2 deletions fyrd/basic.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
"""
Functions to allow simple job and file submission without the Job class.
Last modified: 2016-11-14 13:23
"""
import os as _os
import sys as _sys
Expand Down
2 changes: 0 additions & 2 deletions fyrd/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"""
Get and set config file options.
Last modified: 2016-11-14 13:18
The functions defined here provide an easy way to access the config file
defined by CONFIG_FILE (default ~/.fyrd/config.txt) and the config.get('jobs',
'profile_file') (default ~/.fyrd/profile.txt).
Expand Down
2 changes: 0 additions & 2 deletions fyrd/helpers.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
"""
High level functions to make complex tasks easier.
Last modified: 2016-11-11 02:42
"""
import inspect as _inspect

Expand Down
2 changes: 0 additions & 2 deletions fyrd/job.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
"""
Class and methods to handle Job submission.
Last modified: 2016-11-14 13:27
"""
import os as _os
import sys as _sys
Expand Down
2 changes: 0 additions & 2 deletions fyrd/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"""
Manage job dependency tracking with multiprocessing.
Last modified: 2016-11-04 17:28
Runs jobs with a multiprocessing.Pool, but manages dependency using an
additional Process that loops through all submitted jobs and checks
dependencies before running.
Expand Down
2 changes: 0 additions & 2 deletions fyrd/logme.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"""
Logging with timestamps and optional log files.
Last modified: 2016-11-11 03:13
Print a timestamped message to a logfile, STDERR, or STDOUT.
If STDERR or STDOUT are used, colored flags are added. Colored flags are INFO,
Expand Down
2 changes: 0 additions & 2 deletions fyrd/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"""
Available options for job submission.
Last modified: 2016-11-14 14:39
All keyword arguments that can be used with Job() objects are defined in this
file. These can be edited by the end user to increase functionality.
Expand Down
2 changes: 0 additions & 2 deletions fyrd/queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"""
Monitor the queue for torque or slurm.
Last modified: 2016-11-11 16:09
Provides a class to monitor the torque, slurm, or local queues with identical
syntax.
Expand Down
2 changes: 0 additions & 2 deletions fyrd/run.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
"""
File management and execution functions.
Last modified: 2016-11-11 02:45
"""
import os
import re
Expand Down
2 changes: 0 additions & 2 deletions fyrd/submission_scripts.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: utf-8 -*-
"""
Classes to build submission scripts.
Last modified: 2016-11-09 23:04
"""
import os as _os
import sys as _sys
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def run_tests(self):

setup(
name='fyrd',
version='0.6.1-beta.5',
version='0.6.1-beta.6',
description=('Submit functions and shell scripts to torque, slurm, ' +
'or local machines'),
long_description=long_description,
Expand All @@ -81,6 +81,7 @@ def run_tests(self):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],

keywords='slurm torque multiprocessing cluster job_management',
Expand Down

0 comments on commit ef76205

Please sign in to comment.