File tree Expand file tree Collapse file tree 15 files changed +51
-46
lines changed Expand file tree Collapse file tree 15 files changed +51
-46
lines changed Original file line number Diff line number Diff line change @@ -363,14 +363,13 @@ Building the release packages from a fresh clone is a simple way of ensuring tha
363
363
Create a Python venv to use for build and deploy:
364
364
365
365
* The package ` setup.py ` scripts will run in this venv.
366
- * The venv can be reused indefinitly .
366
+ * The venv can be reused indefinitely .
367
367
368
368
$ pyenv virtualenv "x.y.z" venv_build
369
369
370
370
* Where "x.y.z" is one of the versions listed in ` pyenv versions ` .
371
371
* Pick a version that is close or the same as the version of Python used for testing on Travis.
372
372
373
-
374
373
Build and publish the packages:
375
374
376
375
* Download current master from GitHub, create binary wheel packages and push the packages to PyPI.
Original file line number Diff line number Diff line change 16
16
# See the License for the specific language governing permissions and
17
17
# limitations under the License.
18
18
19
- __version__ = " 3.4.6"
19
+ __version__ = ' 3.4.7'
Original file line number Diff line number Diff line change 26
26
def main ():
27
27
setuptools .setup (
28
28
name = "dataone.cli" ,
29
- version = " 3.4.6" ,
29
+ version = ' 3.4.7' ,
30
30
description = "Command-Line Interface (CLI) for DataONE" ,
31
31
author = "DataONE Project" ,
32
32
author_email = "developers@dataone.org" ,
@@ -35,8 +35,8 @@ def main():
35
35
packages = setuptools .find_packages (),
36
36
include_package_data = True ,
37
37
install_requires = [
38
- "dataone.common >= 3.4.6 " ,
39
- "dataone.libclient >= 3.4.6 " ,
38
+ "dataone.common >= 3.4.7 " ,
39
+ "dataone.libclient >= 3.4.7 " ,
40
40
#
41
41
"requests >= 2.22.0" ,
42
42
],
Original file line number Diff line number Diff line change 27
27
def main ():
28
28
setuptools .setup (
29
29
name = "dataone.onedrive" ,
30
- version = " 3.4.6" ,
30
+ version = ' 3.4.7' ,
31
31
description = "Filesystem access to the DataONE Workspace" ,
32
32
author = "DataONE Project" ,
33
33
author_email = "developers@dataone.org" ,
@@ -36,8 +36,8 @@ def main():
36
36
packages = setuptools .find_packages (),
37
37
include_package_data = True ,
38
38
install_requires = [
39
- "dataone.common >= 3.4.6 " ,
40
- "dataone.libclient >= 3.4.6 " ,
39
+ "dataone.common >= 3.4.7 " ,
40
+ "dataone.libclient >= 3.4.7 " ,
41
41
#
42
42
"fusepy >= 3.0.1" ,
43
43
"pyxb >= 1.2.6" ,
Original file line number Diff line number Diff line change 26
26
def main ():
27
27
setuptools .setup (
28
28
name = "dataone.dev" ,
29
- version = " 3.4.6" ,
29
+ version = ' 3.4.7' ,
30
30
description = "DataONE developer tools" ,
31
31
author = "DataONE Project" ,
32
32
author_email = "developers@dataone.org" ,
Original file line number Diff line number Diff line change 16
16
# See the License for the specific language governing permissions and
17
17
# limitations under the License.
18
18
19
- __version__ = " 3.4.6"
19
+ __version__ = ' 3.4.7'
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def main():
28
28
# noinspection PyUnresolvedReferences
29
29
setuptools .setup (
30
30
name = "dataone.gmn" ,
31
- version = " 3.4.6" ,
31
+ version = ' 3.4.7' ,
32
32
description = "DataONE Generic Member Node (GMN)" ,
33
33
author = "DataONE Project" ,
34
34
author_email = "developers@dataone.org" ,
@@ -37,10 +37,10 @@ def main():
37
37
packages = setuptools .find_packages (),
38
38
include_package_data = True ,
39
39
install_requires = [
40
- "dataone.cli >= 3.4.6 " ,
41
- "dataone.common >= 3.4.6 " ,
42
- "dataone.libclient >= 3.4.6 " ,
43
- "dataone.scimeta >= 3.4.6 " ,
40
+ "dataone.cli >= 3.4.7 " ,
41
+ "dataone.common >= 3.4.7 " ,
42
+ "dataone.libclient >= 3.4.7 " ,
43
+ "dataone.scimeta >= 3.4.7 " ,
44
44
#
45
45
"django >= 2.2.3" ,
46
46
"iso8601 >= 0.1.12" ,
Original file line number Diff line number Diff line change 26
26
def main ():
27
27
setuptools .setup (
28
28
name = "dataone.libclient" ,
29
- version = " 3.4.6" ,
29
+ version = ' 3.4.7' ,
30
30
description = "A DataONE client library for Python" ,
31
31
author = "DataONE Project" ,
32
32
author_email = "developers@dataone.org" ,
@@ -35,7 +35,7 @@ def main():
35
35
packages = setuptools .find_packages (),
36
36
include_package_data = True ,
37
37
install_requires = [
38
- "dataone.common >= 3.4.6 " ,
38
+ "dataone.common >= 3.4.7 " ,
39
39
#
40
40
"pyxb >= 1.2.6" ,
41
41
"requests-toolbelt >= 0.9.1" ,
Original file line number Diff line number Diff line change 36
36
URL_DATAONE_SEARCH = "https://search.dataone.org"
37
37
38
38
# Version of the DataONE Python stack
39
- VERSION = " 3.4.6"
39
+ VERSION = ' 3.4.7'
40
40
41
41
# Default number of items in a single page of a multi-page result set
42
42
DEFAULT_SLICE_SIZE = 100
Original file line number Diff line number Diff line change 26
26
def main ():
27
27
setuptools .setup (
28
28
name = "dataone.common" ,
29
- version = " 3.4.6" ,
29
+ version = ' 3.4.7' ,
30
30
description = (
31
31
"Contains functionality common to projects that interact with "
32
32
"the DataONE infrastructure via Python"
You can’t perform that action at this time.
0 commit comments