forked from pymeasure/pymeasure
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
159 changed files
with
6,342 additions
and
572 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: pymeasure_numpy2 | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- cloudpickle=1.6.0 | ||
- numpy=2.0.0 | ||
- pandas=2.2.2 | ||
- pint=0.24 | ||
- pyqt=5.15.7 | ||
- pyqtgraph=0.12.4 | ||
- pyserial=3.4 | ||
- pyvisa=1.12.0 | ||
- pyzmq=24.0.1 | ||
- qt=5.15.6 | ||
# Development dependencies below | ||
- pytest-qt=4.2.0 | ||
- pytest-runner=5.2 | ||
- pytest=7.2.0 | ||
- pytest-cov=4.1.0 | ||
- pyvisa-sim==0.5.1 | ||
- flake8=6.0.0 | ||
- setuptools_scm # don't pin, to get newest features | ||
- sphinx=5.3.0 | ||
- sphinx_rtd_theme=1.2.2 | ||
# pip is currently not needed, but the recommended tool when packages that are unavailable on conda are required | ||
# - pip # don't pin, to gain newest conda compatibility fixes |
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,26 @@ | ||
name: pymeasure_python312 | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- cloudpickle=1.6.0 | ||
- numpy=1.26.4 | ||
- pandas=2.2.0 | ||
- pint=0.18 | ||
- pyqt=5.15.9 | ||
- pyqtgraph=0.12.4 | ||
- pyserial=3.4 | ||
- pyvisa=1.14.1 | ||
- pyzmq=25.1.2 | ||
- qt=5.15.8 | ||
# Development dependencies below | ||
- pytest-qt=4.2.0 | ||
- pytest-runner=5.2 | ||
- pytest=7.2.0 | ||
- pytest-cov=4.1.0 | ||
- pyvisa-sim==0.5.1 | ||
- flake8=6.0.0 | ||
- setuptools_scm # don't pin, to get newest features | ||
- sphinx=5.3.0 | ||
- sphinx_rtd_theme=1.2.2 | ||
# pip is currently not needed, but the recommended tool when packages that are unavailable on conda are required | ||
# - pip # don't pin, to gain newest conda compatibility fixes |
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow will upload a Python Package using Twine when a release is created | ||
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
name: Build and Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
environment: release | ||
permissions: | ||
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build twine | ||
- name: Build package | ||
run: python -m build | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
cff-version: 1.2.0 | ||
message: "If you use this software, please cite it as below." | ||
authors: | ||
- name: PyMeasure Developers | ||
title: "PyMeasure" | ||
version: 0.14.0 | ||
doi: 10.5281/zenodo.595633 | ||
publisher: | ||
- name: Zenodo | ||
repository-code: https://github.com/pymeasure/pymeasure |
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
Oops, something went wrong.