Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Add c-compiler as noted in docs | {% set name = "clr_loader" %}
{% set version = "0.1.7" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: bd1967d3cf80368c7d890a332704f169c5d2b5d7141635f1dae84d7d40346d51
build:
number: 0
... | {% set name = "clr_loader" %}
{% set version = "0.1.7" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: bd1967d3cf80368c7d890a332704f169c5d2b5d7141635f1dae84d7d40346d51
build:
number: 0
... |
Test using jupyter during build | {% set name = "itkwidgets" %}
{% set version = "0.15.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 889e8a6328bb574148a8e62b89980e68178e10635c986fce2b117eee211112e2
build:
number: 0
scrip... | {% set name = "itkwidgets" %}
{% set version = "0.15.1" %}
package:
name: {{ name }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 889e8a6328bb574148a8e62b89980e68178e10635c986fce2b117eee211112e2
build:
number: 0
scrip... |
Change update trinity in circle to one that logs to stdout | version: 2
jobs:
build:
docker: # See https://docs.docker.com/get-started/#docker-concepts if you are new to Docker.
- image: circleci/python:3.4
environment:
PYTHONPATH: /usr/local/lib/python3.4/site-packages/
working_directory: ~/repo
steps:
- ... | version: 2
jobs:
build:
docker: # See https://docs.docker.com/get-started/#docker-concepts if you are new to Docker.
- image: circleci/python:3.4
environment:
PYTHONPATH: /usr/local/lib/python3.4/site-packages/
working_directory: ~/repo
steps:
- ... |
Update Outlook.com OAuth test credentials to valid app "Nylas - Open Source Dev" | ---
MYSQL_USER: root
MYSQL_PASSWORD: root
GOOGLE_OAUTH_CLIENT_ID: 986659776516-fg79mqbkbktf5ku10c215vdij918ra0a.apps.googleusercontent.com
GOOGLE_OAUTH_CLIENT_SECRET: zgY9wgwML0kmQ6mmYHYJE05d
MS_LIVE_OAUTH_CLIENT_ID: 000000004C12138C
MS_LIVE_OAUTH_CLIENT_SECRET: tjMNyu7ACbE8DOt0LE30Ptk7muNdPosG
# Hexl-encoded static ke... | ---
MYSQL_USER: root
MYSQL_PASSWORD: root
GOOGLE_OAUTH_CLIENT_ID: 986659776516-fg79mqbkbktf5ku10c215vdij918ra0a.apps.googleusercontent.com
GOOGLE_OAUTH_CLIENT_SECRET: zgY9wgwML0kmQ6mmYHYJE05d
MS_LIVE_OAUTH_CLIENT_ID: 0000000048157D75
MS_LIVE_OAUTH_CLIENT_SECRET: W69jkmY8Lp1CbRqn-H7TtRXLDLU7XBxb
# Hexl-encoded static ke... |
Create GitHub release during publish | name: Upload Python Package
on:
push:
tags:
- v*.*.*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python... | name: Upload Python Package
on:
push:
tags:
- v*.*.*
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python... |
FIX | Change coveralls token again | version: 1.0.0.{build}
skip_tags: true
os: Visual Studio 2015
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
COVERALLS_REPO_TOKEN:
secu... | version: 1.0.0.{build}
skip_tags: true
os: Visual Studio 2015
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
environment:
COVERALLS_REPO_TOKEN:
secu... |
Update io.js from 2 to 3 | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "2"
# Install scripts. (runs after repo cloning)
install:
#... | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "3"
# Install scripts. (runs after repo cloning)
install:
#... |
Switch to postgresql db backend |