Skip to content

Commit 3e24d98

Browse files
authored
Merge pull request #39 from dingraha/auto_jacvec
Why is MacOS so touchy?
2 parents 83bc518 + 487b71a commit 3e24d98

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/CI.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,11 @@ jobs:
9898
- ubuntu-latest
9999
- macOS-latest
100100
python-version: ["3.10", "3.11", "3.12", "3.13"]
101+
exclude:
102+
# No idea why this is segfaulting.
103+
# Only sometimes.
104+
- os: macOS-latest
105+
python-version: "3.13"
101106
steps:
102107
- uses: actions/checkout@v2
103108
- uses: julia-actions/setup-julia@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ OpenMDAOCore.jl is a fairly small package without any Python dependencies, but O
4545
OpenMDAO.jl's Python dependencies are managed by [`CondaPkg`](https://github.com/cjdoris/CondaPkg.jl), and should be automatically installed into a separate Conda environment specific to your current Julia environment.
4646

4747
## Next Steps
48-
Check out the [documentation](https://dingraha.github.io/OpenMDAO.jl/dev) for usage, examples, etc..
48+
Check out the [documentation](https://byuflowlab.github.io/OpenMDAO.jl/dev) for usage, examples, etc..
4949

5050
## Acknowledgements
5151
* An early version of OpenMDAO.jl was written by Daniel Ingraham, Justin Gray, and Andrew Ning while visiting Prof. Ning at Brigham Young University.

docs/LocalPreferences.toml

Lines changed: 0 additions & 2 deletions
This file was deleted.

python/omjlcomps/test/test_julia_explicit_comp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def setUp(self):
246246
if os.getenv("GITHUB_ACTIONS") == "true":
247247
# n_big = 1_000_000_000 is too big for GitHub Actions---it appears to consume all the virtual machine's memory and kills the job, giving me a big sad.
248248
if sys.platform == "darwin":
249-
n_big = self.n_big = 20_000_000
249+
n_big = self.n_big = 10_000_000
250250
else:
251251
n_big = self.n_big = 100_000_000
252252
else:

0 commit comments

Comments
 (0)