We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6134bf commit a779548Copy full SHA for a779548
.github/workflows/master.yml
@@ -21,6 +21,10 @@ jobs:
21
exclude:
22
- os: macos-latest
23
python-version: "3.7"
24
+ - os: windows-latest
25
+ python-version: "3.11"
26
27
+ python-version: "3.12"
28
29
steps:
30
- uses: actions/checkout@v2
pyproject.toml
@@ -36,9 +36,9 @@ keywords = [
36
]
37
38
dependencies = [
39
- "numpy>=1.17.4",
+ "numpy>=1.17.4,<2", # Cannot use 2.0 due to matplotlib version pinning.
40
"scipy",
41
- "matplotlib",
+ "matplotlib==3.5.1", # Large user-base has apt-installed python3-matplotlib (ROS2) which is pinned to this version.
42
"ansitable",
43
"typing_extensions",
44
"pre-commit",
0 commit comments