Skip to content

Commit cfd8404

Browse files
committed
Fix #45. Stricter version requirements for dependencies.
Since all dependencies dropped support for Python 2 in their latest version, no updates will be made to them compatible with Python 2 anymore. Require a specific version of each that is known to work.
1 parent c9e3ce0 commit cfd8404

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
rpyc>=4.1.5
1+
plumbum==1.7.2
2+
rpyc==4.1.5

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
data_files=[
7575
],
7676
install_requires=[
77+
'plumbum==1.7.2'
7778
'rpyc==4.1.5'
7879
],
7980
extras_require={

0 commit comments

Comments
 (0)