Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
/src/.setup_doc_virtualenv
/src/java/target/
/src/java/src/main/java/com/dnanexus/DXToolkitVersion.java
/src/python/dxpy/toolkit_version.py
/src/python/coverage-reports/
/src/R/install_dxR_deps.Rout
/src/R/dxR*.tar.gz
Expand Down
1 change: 1 addition & 0 deletions src/python/dxpy/toolkit_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version = '0.218.0'
5 changes: 4 additions & 1 deletion src/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ python-magic==0.4.6
beautifulsoup4==4.4.1
psutil>=3.3.0
requests>=2.8.0
cryptography<=2.2.2
# cryptography<=2.2.2
# Needed for compiling against libressl
# https://github.com/pyca/cryptography/blob/master/CHANGELOG.rst#23---2018-07-18
cryptography<=2.3.1
10 changes: 9 additions & 1 deletion src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,15 @@
dependencies.extend(backports_dependencies)
# dxfs is not compatible with Windows, and is currently disabled on Python 3
if platform.system() != 'Windows':
dependencies.extend(dxfs_dependencies)
# dependencies.extend(dxfs_dependencies)
print 'Skipping installation of dxfs dependencies!'
print ''
print 'SolveBio deploys on the Alpine Linux distribution, which does '
print 'not appear to be compatible with the xattrs (extended attributes) '
print 'package, which dxpy utilizes to provide a virtual filesystem on '
print 'the guest host. Since SolveBio does not use this functionality of '
print 'dxpy, it is believed safe to proceed without it.'
print ''

if 'DNANEXUS_INSTALL_PYTHON_TEST_DEPS' in os.environ:
dependencies.extend(test_dependencies)
Expand Down