Commit f0b8f8a5 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 1.1.1+git20191122.ec024c3

parent 78dd1b09
Loading
Loading
Loading
Loading

CHANGELOG.md

0 → 100644
+6 −0
Original line number Diff line number Diff line
# CHANGELOG

## 1.7.0

- expose `SmrtLinkAuthClient` to `pbcommand.services`
- mark `ServiceAccessLayer` as deprecated. For SL >= 6.X.X, unauth'ed access is limited to internal usecases, such as `pbtestkit-service-runner` and `pbsmrtpipe`. 
 No newline at end of file
+2 −1
Original line number Diff line number Diff line
include *.txt *.md
recursive-include examples *.txt *.py
include pbcommand/schemas/*.avsc
+10 −2
Original line number Diff line number Diff line
.PHONY: all clean install dev-install test doc
SHELL = /bin/bash -e
WHEELHOUSE?=./wheelhouse

all: install

@@ -22,8 +23,10 @@ clean:

test-nose:
	nosetests -s --verbose --with-xunit --logging-config log_nose.cfg tests/test_*.py
test-pytest:
	pytest -v --durations=12 --junitxml=nosetests.xml --cov=./pbcommand --cov-report=xml:coverage.xml tests/test_*.py

test: test-nose run-pylint run-pep8
test: test-pytest run-pylint run-pep8

doc:
	cd docs && make html
@@ -52,7 +55,7 @@ build-java-classes:

extract-readme-snippets:
	rm -rf readme-snippet-*.py
	pandoc -t markdown README.md  | pandoc --filter ./extract-readme-snippets.py
	pandoc -t markdown README.md  | pandoc --filter ./bin/extract-readme-snippets.py

build-avro-schema-docs:
	# this requires nodejs + https://github.com/ept/avrodoc
@@ -60,3 +63,8 @@ build-avro-schema-docs:

cpp-header:
	python extras/make_cpp_file_types_header.py FileTypes.h

wheel:
	which pip
	pip wheel -v --wheel-dir=${WHEELHOUSE} --no-deps .
	ls -larth ${WHEELHOUSE}

REQUIREMENTS.txt

deleted100644 → 0
+0 −4
Original line number Diff line number Diff line
avro
requests
iso8601
pytz

REQUIREMENTS_TEST.txt

deleted100644 → 0
+0 −22
Original line number Diff line number Diff line
nose
coverage
tox
autopep8
pylint
# Putting these here for RTD
sphinx-argparse
sphinx-bootstrap-theme
# I think this is a bug in jupyter client
# for some reason jupyter_client.manager is called
# which generates an ImportError
# maybe related https://github.com/jupyter/nbconvert/issues/495
jupyter_client
# for ipython notebooks in sphinx docs
nbsphinx
avro
requests
iso8601
# For sphinx extension
ipython
# ipython requires this?
matplotlib
Loading