Skip to content

Commit

Permalink
Merge pull request #219 from UtrechtUniversity/develop
Browse files Browse the repository at this point in the history
v1.0.0
  • Loading branch information
chStaiger authored Jun 28, 2024
2 parents 2a50511 + 9b75489 commit baa690c
Show file tree
Hide file tree
Showing 20 changed files with 590 additions and 382 deletions.
2 changes: 2 additions & 0 deletions docker/irods_client/tests/test_move.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from pytest import mark

from ibridges.path import IrodsPath


@mark.parametrize("item_name", ["collection", "dataobject"])
def test_move(session, item_name, request):
item = request.getfixturevalue(item_name)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@

import os
import sys
import sphinx_rtd_theme

sys.path.insert(0, os.path.abspath('..'))


project = 'iBridges'
copyright = '2024, Christine Staiger'
author = 'Christine Staiger'
release = '0.1'
release = '1.0.0'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
3 changes: 1 addition & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ Welcome to the iBridges documentation!

.. admonition:: Warning

The project (including documentation) is currently in active development at a pre-alpha stage, which means that some functionality may be
broken or not implemented yet. We appreciate help, issues and bug report in our issue tracker on `github <https://github.com/UtrechtUniversity/iBridges>`__.
The project is in active development, current features are stable and the documentation is complete. However, we are still actively developing new features and improving the existing ones. We appreciate help, suggestions, issues and bug reports in our issue tracker on `github <https://github.com/UtrechtUniversity/iBridges>`__.


iBridges is a wrapper around the `python-irodsclient <https://github.com/irods/python-irodsclient>`__. While the
Expand Down
12 changes: 10 additions & 2 deletions ibridges/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,13 @@
from ibridges.session import Session
from ibridges.tickets import Tickets

__all__ = ["Session", "IrodsPath", "download", "upload",
"MetaData", "Tickets", "search_data", "sync"]
__all__ = [
"Session",
"IrodsPath",
"download",
"upload",
"MetaData",
"Tickets",
"search_data",
"sync",
]
Loading

0 comments on commit baa690c

Please sign in to comment.