├── .coveragerc ├── .github └── workflows │ ├── codeql-analysis.yaml │ └── python-package.yaml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── README.rst ├── aggregate6.7 ├── aggregate6 ├── __init__.py ├── __main__.py └── aggregate6.py ├── requirements.txt ├── setup.py └── tests └── test_regression.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/.github/workflows/codeql-analysis.yaml -------------------------------------------------------------------------------- /.github/workflows/python-package.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/.github/workflows/python-package.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/README.rst -------------------------------------------------------------------------------- /aggregate6.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/aggregate6.7 -------------------------------------------------------------------------------- /aggregate6/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/aggregate6/__init__.py -------------------------------------------------------------------------------- /aggregate6/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/aggregate6/__main__.py -------------------------------------------------------------------------------- /aggregate6/aggregate6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/aggregate6/aggregate6.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | py-radix>=0.10.0 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/job/aggregate6/HEAD/tests/test_regression.py --------------------------------------------------------------------------------