Skip to content

Commit 6df8e3f

Browse files
committedAug 6, 2021
prepare 0.3.0 release
1 parent 402f2e5 commit 6df8e3f

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
![The view of plotboss](https://github.com/zeaphoo/plotboss/blob/main/docs/images/plotboss-0.1.png?raw=true "View")
44

5-
##### Development Version: v0.1.0
5+
##### Development Version: v0.3.0
66

77
This is a tool for managing [Chia](https://github.com/Chia-Network/chia-blockchain)
8-
plotting operations, has been tested for **Windows 10**. This is not a plotter.
8+
plotting operations, has been tested for **Windows 10**, **Ubuntu 21.04**, **MacOS**. This is not a plotter.
99
The tool runs on the plotting machine and provides the following functionality:
1010

1111
- Automatic spawning of new plotting jobs, possibly overlapping ("staggered or smart")

‎plotboss/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.0'
1+
__version__ = '0.3.0'

‎plotboss/plotboss.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def get_final_dir(self):
207207
try:
208208
_, _, free = shutil.disk_usage(final_drive)
209209
slots_free = free//get_k32_plotsize()
210-
if slots_free > self.get_final_drive_jobs(final_dir):
210+
if slots_free > (self.get_final_drive_jobs(final_dir) + 3):
211211
return final_dir
212212
except:
213213
continue

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
include_package_data=False,
3030
zip_safe=False,
3131
platforms='any',
32-
install_requires=['basepy>=0.3.4', 'psutil', 'pendulum', 'asciimatics', 'loguru'],
32+
install_requires=['basepy>=0.3.5', 'psutil', 'pendulum', 'asciimatics', 'loguru'],
3333
extras_require={
3434
'test': [
3535
'pytest>=3',

0 commit comments

Comments
 (0)