-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Python dependency issues breaking CI (#234)
* Pin versions using conda * Increment version number * Add windows build * Correctly set Julia version * Add macOS build * Simplify matrix * Pin pandas also * Test data home only on v1.8 * Install wget for windows * Don't specify shell is bash * Check approximate equality for extract_dataset
- Loading branch information
Showing
5 changed files
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name = "ArviZ" | ||
uuid = "131c737c-5715-5e2e-ad31-c244f01c1dc7" | ||
authors = ["Seth Axen <[email protected]>"] | ||
version = "0.6.5" | ||
version = "0.6.6" | ||
|
||
[deps] | ||
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
using Conda | ||
|
||
# try to install scipy with pip if not yet installed | ||
# temporary workaround for https://github.com/arviz-devs/ArviZ.jl/issues/188 | ||
Conda.pip_interop(true) | ||
Conda.pip("uninstall -y", "scipy") | ||
Conda.pip("install", "scipy") | ||
# temporary workaround for | ||
# - https://github.com/arviz-devs/ArviZ.jl/issues/188 | ||
# - https://github.com/arviz-devs/arviz/issues/2120 | ||
Conda.add(["matplotlib<3.6.0", "pandas<1.5.0", "scipy<=1.8.0"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters