Skip to content

Commit 2ceaeae

Browse files
committed
changed next version to be 2.3.0
1 parent 9bdea2d commit 2ceaeae

23 files changed

+23
-23
lines changed

picrust2/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
__copyright__ = "Copyright 2018-2020, PICRUSt Project"
55
__license__ = "GPL"
66
__url__ = "https://github.com/picrust/picrust2"
7-
__version__ = "2.2.1-b"
7+
__version__ = "2.3.0-b"

picrust2/default.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
from os import path
88

picrust2/metagenome_pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import sys
88
import pandas as pd

picrust2/pathway_pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import sys
88
from collections import defaultdict

picrust2/pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
from os import path
88
import sys

picrust2/place_seqs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import sys
88
from os import path, chdir, getcwd

picrust2/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
from os import makedirs, chmod
88
from os.path import abspath, dirname, isdir, join, exists, splitext

picrust2/wrap_hsp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
from os import path
88
import pandas as pd

scripts/add_descriptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import argparse
88
from picrust2.default import default_map

scripts/convert_table.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import argparse
88
from picrust2.util import (check_files_exist, contrib_to_legacy,

scripts/hsp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import argparse
88
from picrust2.wrap_hsp import castor_hsp_workflow

scripts/metagenome_pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import argparse
88
from os import path

scripts/pathway_pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import argparse
88
from picrust2.pathway_pipeline import pathway_pipeline

scripts/picrust2_pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import argparse
88
from os import path

scripts/place_seqs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import argparse
88
from picrust2.place_seqs import place_seqs_pipeline

scripts/print_picrust2_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
from sys import platform, version as python_version, executable
88

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
77
__license__ = "GPL"
8-
__version__ = "2.2.1-b"
8+
__version__ = "2.3.0-b"
99
__maintainer__ = "Gavin Douglas"
1010

1111
long_description = ("Please visit the google group here if you have questions: "

tests/test_hsp.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import unittest
88
from os import path

tests/test_metagenome_pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import unittest
88
from os import path

tests/test_pathway_pipeline.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import unittest
88
import pandas as pd

tests/test_place_seqs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import unittest
88
import gzip

tests/test_util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import unittest
88
from os import path

tests/test_workflow.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__copyright__ = "Copyright 2018-2020, The PICRUSt Project"
44
__license__ = "GPL"
5-
__version__ = "2.2.1-b"
5+
__version__ = "2.3.0-b"
66

77
import unittest
88
from os import path

0 commit comments

Comments
 (0)