├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ └── setup-venv │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── main.yml │ └── pr_checks.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.md ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE_PROCESS.md ├── dev-requirements.txt ├── docs ├── .gitignore ├── Makefile ├── make.bat └── source │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── _static │ ├── css │ │ └── custom.css │ └── favicon.ico │ ├── conf.py │ ├── index.rst │ ├── installation.md │ └── overview.md ├── mypy.ini ├── prior ├── __init__.py ├── lock.py ├── py.typed ├── utils │ ├── __init__.py │ └── types.py └── version.py ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── scripts ├── prepare_changelog.py ├── release.sh └── release_notes.py ├── setup.py └── tests ├── __init__.py └── load_test.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/setup-venv/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.github/actions/setup-venv/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/pr_checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.github/workflows/pr_checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ../../CHANGELOG.md -------------------------------------------------------------------------------- /docs/source/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ../../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/source/_static/css/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/_static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/docs/source/_static/favicon.ico -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/docs/source/installation.md -------------------------------------------------------------------------------- /docs/source/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/docs/source/overview.md -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/mypy.ini -------------------------------------------------------------------------------- /prior/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/prior/__init__.py -------------------------------------------------------------------------------- /prior/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/prior/lock.py -------------------------------------------------------------------------------- /prior/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prior/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prior/utils/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/prior/utils/types.py -------------------------------------------------------------------------------- /prior/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/prior/version.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # Add your own dependencies to this file. 2 | tqdm 3 | PyGithub 4 | -------------------------------------------------------------------------------- /scripts/prepare_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/scripts/prepare_changelog.py -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/release_notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/scripts/release_notes.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/load_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allenai/prior/HEAD/tests/load_test.py --------------------------------------------------------------------------------