-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Problem with python-dateutil requirement #428
Comments
@jakebeal I'm interested to hear your thoughts on this. I see that python-dateutil 2.7.5 dates from 2018. That's pretty old. It's also quite understandable that an Opentrons machine would have an older version and would have a read-only file system. pySBOL3 requires any 2.8 version of python-dateutil, with a minimum version of 2.8.2 (released July, 2021). If we were to relax that we would have to confirm that the required APIs that pySBOL3 uses did not change between version 2.7.5 and 2.8.x. We would also need to release a new version of pySBOL3 with this relaxed dependency. A quick @Gonza10V could you please try the forking approach? You should be able to modify the diff --git a/setup.py b/setup.py
index fe0b087..9aa5ddb 100644
--- a/setup.py
+++ b/setup.py
@@ -39,7 +39,7 @@ setup(name='sbol3',
# Require at least rdflib 6.1.1, and allow newer versions
# of rdflib 6.x
'rdflib>=6.1.1,==6.*',
- 'python-dateutil~=2.8.2',
+ 'python-dateutil~=2.7.5',
'pyshacl~=0.19',
],
test_suite='test', Let's leave this issue open and see how that goes. Please let us know if you are successful, or if you need any additional help. It sounds like an exciting and interesting project. We will be happy to help you! |
My thought is that this is going to turn out to be one instance of a more general problem if the OT-2 has a lot of fixed packages installed that will continually go more out of date. What I don't currently understand is the relationship between the OT-2 environment and the sbol3 installation. Presumably you're running your software on the actual machine, but does it need to be in literally the same environment as the OT-2's installations? Could you use a virtual environment for running your software so that you don't have to depend on the fixed OT-2 package environment? |
I'm writing a package that automates DNA assembly in an Opentons OT-2, which has a a read only version of date ultil: python-dateutil 2.7.5.
I would like to know how is used python-dateutil so I can think in some solutions.
Some alternatives could be:
Could you give some advice or guidance to use pySBOL3 in this project?
Here is the last part of the error for context:
The text was updated successfully, but these errors were encountered: