- Python 2.7
- pytest
- PyGObject
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
#include "zhelpers.hpp" | |
#include <queue> | |
int main(int argc, char *argv[]) | |
{ | |
// Prepare our context and sockets | |
zmq::context_t context(1); | |
zmq::socket_t frontend(context, ZMQ_ROUTER); | |
zmq::socket_t backend(context, ZMQ_ROUTER); |
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
git log --decorate --abbrev-commit --graph --pretty=format:"%C(yellow)%h%Creset%C(cyan)%C(bold)%d%Creset %C(cyan)(%cr)%Creset %C(green)%cn%Creset %s" |
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
import asyncio | |
from email.message import EmailMessage | |
from email.parser import BytesParser as EmailParser | |
from email.policy import default as default_policy | |
from queue import Queue, Empty | |
from smtplib import SMTP as SMTPClient | |
from typing import NamedTuple, List, Tuple | |
from aiosmtpd.controller import Controller as SMTPController | |
import pytest |
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
git+git://github.com/Ensembl/ensembl-prodinf-legacy-core@master#egg=ensembl_prodinf | |
amqp==2.6.1 | |
appdirs==1.4.0 | |
billiard==3.6.3.0 | |
Bootstrap-Flask==1.2.0 | |
celery==4.4.6 | |
certifi==2020.4.5.2 | |
chardet==3.0.4 | |
click==7.0 | |
dominate==2.4.0 |
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
#!/bin/bash | |
set -e -u -x | |
# Usage: | |
# docker run --rm -e PYVER="cp39-cp39" -e UAMQP_TAG="v.1.6.3" -v $(pwd):/io quay.io/pypa/manylinux2014_aarch64:latest /io/build-uamqp-arm-wheel.sh | |
PYBIN="/opt/python/$PYVER/bin" | |
WORKDIR="/var/uamqp" | |
TESTDIR="/var/uamqp_test" |