-
Notifications
You must be signed in to change notification settings - Fork 17
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
125 changed files
with
747,732 additions
and
4,953 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 |
---|---|---|
|
@@ -5,7 +5,6 @@ python: | |
|
||
branches: | ||
only: | ||
- master | ||
- development | ||
|
||
notifications: | ||
|
@@ -38,13 +37,15 @@ install: | |
- conda update --yes conda | ||
- conda update --yes --all | ||
- conda info -a | ||
- conda create --yes -n test-environment python=$TRAVIS_PYTHON_VERSION bitarray cython ipython matplotlib mock nose numba numpy pyserial pytables pyyaml pyzmq scipy sphinx | ||
- conda create --yes -n test-environment python=$TRAVIS_PYTHON_VERSION bitarray cython ipython matplotlib mock nose numba numpy pyqt pyserial pytables pyyaml pyzmq qtpy scipy | ||
- source activate test-environment | ||
- pip install progressbar-latest pyvisa pyvisa-py git+https://github.com/pyqtgraph/[email protected] | ||
- pip install pyusb | ||
- pip install pySiLibUSB | ||
- if [ "$TRAVIS_BRANCH" == "master" ]; then pip install 'basil_daq>=2.4.9,<3.0.0' git+https://github.com/SiLab-Bonn/pyBAR_fei4_interpreter@development 'pixel_clusterizer>=3.1,<3.2'; fi | ||
- if [ "$TRAVIS_BRANCH" == "development" ]; then pip install 'basil_daq>=2.4.9,<3.0.0' git+https://github.com/SiLab-Bonn/pyBAR_fei4_interpreter@development 'pixel_clusterizer>=3.1,<3.2'; fi | ||
- pip install 'basil_daq>=2.4.12,<3.0.0' | ||
#- pip install git+https://github.com/SiLab-Bonn/basil@development | ||
- pip install git+https://github.com/SiLab-Bonn/pyBAR_fei4_interpreter@development | ||
- pip install 'pixel_clusterizer>=3.1,<3.2' | ||
# Install pyBAR | ||
- python setup.py develop | ||
|
||
|
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,5 +1,6 @@ | ||
include README.* VERSION LICENSE.txt requirements.txt | ||
include pybar/*.yaml pybar/*.bit | ||
include pybar/*.yaml | ||
recursive-include examples * | ||
recursive-include firmware * | ||
recursive-include pybar/config * | ||
recursive-include pybar/firmware * |
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,5 +1,5 @@ | ||
|
||
# pyBAR [![Code Status](https://landscape.io/github/SiLab-Bonn/pyBAR/master/landscape.svg?style=flat)](https://landscape.io/github/SiLab-Bonn/pyBAR/master) [![Build Status](https://travis-ci.org/SiLab-Bonn/pyBAR.svg?branch=master)](https://travis-ci.org/SiLab-Bonn/pyBAR) [![Build Status](https://ci.appveyor.com/api/projects/status/github/SiLab-Bonn/pyBAR?svg=true)](https://ci.appveyor.com/project/DavidLP/pybar-71xwl) | ||
# pyBAR [![Code Status](https://landscape.io/github/SiLab-Bonn/pyBAR/development/landscape.svg?style=flat)](https://landscape.io/github/SiLab-Bonn/pyBAR/development) [![Build Status](https://travis-ci.org/SiLab-Bonn/pyBAR.svg?branch=development)](https://travis-ci.org/SiLab-Bonn/pyBAR/branches) [![Build Status](https://ci.appveyor.com/api/projects/status/github/SiLab-Bonn/pyBAR?branch=development&svg=true)](https://ci.appveyor.com/project/laborleben/pybar-71xwl?branch=development) | ||
|
||
pyBAR - Bonn ATLAS Readout in Python | ||
|
||
|
@@ -41,12 +41,12 @@ The following packages are required for pyBAR's core functionality: | |
|
||
For full functionality, the following additional packages are required: | ||
``` | ||
ipython mock nose pyqtgraph pyserial pyvisa pyvisa-py pyzmq sphinx vitables | ||
ipython mock nose pyqtgraph pyserial pyvisa pyvisa-py pyzmq vitables | ||
``` | ||
|
||
Run the **following commands** to install the packages: | ||
``` | ||
conda install python=2.7 bitarray contextlib2 cython ipython matplotlib mock nose numba numpy pyserial pytables pyyaml pyzmq scipy sphinx | ||
conda install python=2.7 bitarray contextlib2 cython ipython matplotlib mock nose numba numpy pyqt pyserial pytables pyyaml pyzmq qtpy scipy | ||
pip install progressbar-latest pyvisa pyvisa-py git+https://github.com/pyqtgraph/[email protected] | ||
``` | ||
|
@@ -56,9 +56,9 @@ On Windows, the `pywin32` package is required: | |
conda install pywin32 | ||
``` | ||
|
||
[Basil](https://github.com/SiLab-Bonn/basil) (>=2.4.9,<3.0.0) is required: | ||
[Basil](https://github.com/SiLab-Bonn/basil) (>=2.4.12,<3.0.0) is required: | ||
``` | ||
pip install 'basil_daq>=2.4.9,<3.0.0' | ||
pip install 'basil_daq>=2.4.12,<3.0.0' | ||
``` | ||
|
||
[pyBAR FEI4 Interpreter](https://github.com/SiLab-Bonn/pyBAR_fei4_interpreter) (>=1.3.0) is required: | ||
|
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 +1 @@ | ||
3.0.2 | ||
3.1.0.dev0 |
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 |
---|---|---|
|
@@ -19,14 +19,15 @@ install: | |
- conda update conda --yes | ||
- conda update --all --yes | ||
- conda info -a | ||
- conda install --yes bitarray cython ipython matplotlib mock nose numba numpy pyserial pytables pyyaml pyzmq scipy sphinx | ||
- conda install --yes bitarray cython ipython matplotlib mock nose numba numpy pyqt pyserial pytables pyyaml pyzmq qtpy scipy | ||
- conda install --yes pywin32 | ||
- pip install progressbar-latest pyvisa pyvisa-py git+https://github.com/pyqtgraph/[email protected] #git+https://github.com/uvemas/ViTables@develop | ||
# test packages required for USB interface | ||
- pip install pyusb | ||
- pip install pySiLibUSB | ||
# pyBAR installation including additional specific packages | ||
- pip install 'basil_daq>=2.4.9,<3.0.0' | ||
- pip install 'basil_daq>=2.4.12,<3.0.0' | ||
#- pip install git+https://github.com/SiLab-Bonn/basil@development | ||
- pip install git+https://github.com/SiLab-Bonn/pyBAR_fei4_interpreter@development | ||
- pip install 'pixel_clusterizer>=3.1,<3.2' | ||
- python.exe setup.py develop | ||
|
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
Oops, something went wrong.