forked from pyqtgraph/pyqtgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into qps_modifications
# Conflicts: # pyqtgraph/__init__.py
- Loading branch information
Showing
363 changed files
with
12,492 additions
and
6,658 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
# Set update schedule for GitHub Actions | ||
|
||
version: 2 | ||
updates: | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
# Check for updates to GitHub Actions every weekday | ||
interval: "daily" | ||
- package-ecosystem: pip | ||
directory: /doc | ||
- package-ecosystem: "pip" | ||
directory: "/doc" | ||
schedule: | ||
interval: daily | ||
interval: "daily" | ||
- package-ecosystem: "pip" | ||
directory: ".github/workflows/etc" | ||
ignore: | ||
- dependency-name: "numpy" | ||
# NEP-29 governs supported versions of NumPy | ||
schedule: | ||
interval: "daily" |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# numpy based on python version and NEP-29 requirements | ||
numpy; python_version == '3.10' | ||
numpy; python_version == '3.11' | ||
numpy~=1.22.0; python_version == '3.9' | ||
|
||
# image testing | ||
scipy==1.11.2 | ||
|
||
# optional high performance paths | ||
numba==0.57.1; python_version == '3.9' | ||
|
||
# optional 3D | ||
pyopengl==3.1.7 | ||
|
||
# supplimental tools | ||
matplotlib==3.7.2 | ||
h5py==3.9.0 | ||
|
||
# testing | ||
pytest==7.4.0 | ||
pytest-xdist==3.3.1 | ||
pytest-xvfb==3.0.0; sys_platform == 'linux' |
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
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -7,6 +7,8 @@ build: | |
os: ubuntu-22.04 | ||
tools: | ||
python: "3" | ||
apt_packages: | ||
- libopengl0 | ||
|
||
sphinx: | ||
fail_on_warning: true | ||
|
Oops, something went wrong.