Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit a7bbe77b authored by usov_i's avatar usov_i
Browse files

Add utility files for packaging

parent 208c1659
No related branches found
No related tags found
No related merge requests found
language: python
python:
- 3.6
- 3.7
- 3.8
# Build only tagged commits
if: tag IS present
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --append channels conda-forge
- conda config --set always_yes yes
- conda config --set anaconda_upload no
install:
- conda update -q conda
- conda install -q python=$TRAVIS_PYTHON_VERSION conda-build anaconda-client
script:
- conda build conda-recipe
deploy:
provider: script
script: anaconda -t $ANACONDA_TOKEN upload $HOME/miniconda/conda-bld/**/pyzebra-*.tar.bz2
on:
branch: master
tags: true
notifications:
email: false
LICENSE 0 → 100644
This diff is collapsed.
#!/bin/bash
$PYTHON setup.py install --single-version-externally-managed --record=record.txt
{% set data = load_setup_py_data() %}
package:
name: pyzebra
version: {{ data['version'] }}
source:
path: ..
build:
number: 0
entry_points:
- pyzebra = pyzebra.cli:main
requirements:
build:
- python
- setuptools
run:
- python
- numpy
- scipy
- h5py
- bokeh
- lmfit
- uncertainties
about:
home: https://github.com/paulscherrerinstitute/pyzebra
summary: {{ data['description'] }}
license: GNU GPLv3
license_file: LICENSE
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment