Skip to content

Commit

Permalink
Merge pull request #699 from henrypinkard/main
Browse files Browse the repository at this point in the history
start headless mode with no config
  • Loading branch information
henrypinkard authored Sep 21, 2023
2 parents 274de12 + f233f90 commit bab3053
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.micro-manager.pycro-manager</groupId>
<artifactId>PycroManagerJava</artifactId>
<version>0.44.1</version>
<version>0.44.2</version>
<packaging>jar</packaging>
<name>Pycro-Manager Java</name>
<description>The Java components of Pycro-Manager</description>
Expand Down Expand Up @@ -144,4 +144,4 @@
</repository>
</distributionManagement>

</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ public static void main(String[] args) throws Exception {
int bufferSizeMB = Integer.parseInt(args[2]);
String coreLogPath = args[3];

core.loadSystemConfiguration(configFilePath);
if (configFilePath != null && configFilePath.length() != 0) {
core.loadSystemConfiguration(configFilePath);
}
core.setCircularBufferMemoryFootprint(bufferSizeMB);
core.enableStderrLog(true);
core.enableDebugLog(true);
Expand Down
2 changes: 1 addition & 1 deletion pycromanager/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (0, 29, 1)
version_info = (0, 29, 2)
__version__ = ".".join(map(str, version_info))
1 change: 0 additions & 1 deletion pycromanager/test/test_startup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import os
from pycromanager import Core


def test_connect_to_core(launch_mm_headless):
mmc = Core()

Expand Down

0 comments on commit bab3053

Please sign in to comment.