Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove integrations #18

Merged
merged 11 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,3 @@ updates:
schedule:
interval: weekly
labels: ["kind: infrastructure"]
- package-ecosystem: docker
directory: /
schedule:
interval: weekly
labels: ["kind: infrastructure"]
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
labels: ["kind: infrastructure"]
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
labels: ["kind: infrastructure"]
4 changes: 0 additions & 4 deletions .github/workflows/push-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ jobs:
- name: Test with tox
run: |
tox -v
- name: Update coveralls
run: |
pip install 'coveralls>=3,<4'
coveralls --service=github || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Update codecov
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ docs/autoapi
.tox/
.pytest_cache
.ipynb_checkpoints
.mypy_cache

# Files from other languages
*.o
Expand Down
4 changes: 0 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ repos:
# rev: 0.5.0

# --- Linters ---
- hooks:
- id: dockerfile_lint
repo: https://github.com/Lucas-C/pre-commit-hooks-nodejs
rev: v1.1.1
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
Expand Down
17 changes: 0 additions & 17 deletions .scrutinizer.yml

This file was deleted.

19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
# Sgdrf

[![Version status](https://img.shields.io/pypi/status/sgdrf)](https://pypi.org/project/sgdrf)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
<!-- markdown-link-check-disable -->

[![Version status](https://img.shields.io/pypi/status/sgdrf)](https://opensource.org/license/mit/)

<!-- markdown-link-check-enable-->

[![License](https://img.shields.io/github/license/san-soucie/sgdrf)]()
[![Python version compatibility](https://img.shields.io/pypi/pyversions/sgdrf)](https://pypi.org/project/sgdrf)
[![Version on GitHub](https://img.shields.io/github/v/release/san-soucie/sgdrf?include_prereleases&label=GitHub)](https://github.com/san-soucie/sgdrf/releases)
[![Version on PyPi](https://img.shields.io/pypi/v/sgdrf)](https://pypi.org/project/sgdrf)
[![Documentation status](https://readthedocs.org/projects/sgdrf/badge)](https://sgdrf.readthedocs.io/en/stable)
[![Build (GitHub Actions)](https://img.shields.io/github/workflow/status/san-soucie/sgdrf/Build%20&%20test?label=Build%20&%20test)](https://github.com/san-soucie/sgdrf/actions)
[![Build (Scrutinizer)](https://scrutinizer-ci.com/g/san-soucie/sgdrf/badges/build.png?b=main)](https://scrutinizer-ci.com/g/san-soucie/sgdrf/build-status/main)
[![Documentation status](https://readthedocs.org/projects/sgdrf/badge)](https://sgdrf.readthedocs.io/en/latest)
[![Build (GitHub Actions)](https://img.shields.io/github/actions/workflow/status/san-soucie/sgdrf/push-main.yml?branch=main)](https://github.com/san-soucie/sgdrf/actions)
[![Test coverage (codecov)](https://codecov.io/github/san-soucie/sgdrf/coverage.svg)](https://codecov.io/gh/san-soucie/sgdrf)
[![Test coverage (Scrutinizer)](https://scrutinizer-ci.com/g/san-soucie/sgdrf/badges/coverage.png?b=main)](https://scrutinizer-ci.com/g/san-soucie/sgdrf/?branch=main)
[![Maintainability (Code Climate)](https://api.codeclimate.com/v1/badges/6b240648883c3a56c309/maintainability)](https://codeclimate.com/github/san-soucie/sgdrf/maintainability)
[![CodeFactor](https://www.codefactor.io/repository/github/dmyersturnbull/tyrannosaurus/badge)](https://www.codefactor.io/repository/github/dmyersturnbull/tyrannosaurus)
[![Code Quality (Scrutinizer)](https://scrutinizer-ci.com/g/san-soucie/sgdrf/badges/quality-score.png?b=main)](https://scrutinizer-ci.com/g/san-soucie/sgdrf/?branch=main)
[![Created with Tyrannosaurus](https://img.shields.io/badge/Created_with-Tyrannosaurus-0000ff.svg)](https://github.com/dmyersturnbull/tyrannosaurus)

Python implementation of Streaming Gaussian Dirichlet Random Fields (San Soucie et al. 2023).

[See the docs 📚](https://sgdrf.readthedocs.io/en/stable/) for more info.
[See the docs 📚](https://sgdrf.readthedocs.io/) for more info.

Licensed under the terms of the [MIT License](https://spdx.org/licenses/MIT.html).
[New issues](https://github.com/san-soucie/sgdrf/issues) and pull requests are welcome.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -267,11 +267,11 @@ init = true
tox = true
precommit = true
docs = true
recipes = true
recipes = false
license = true
authors = true
github = true
travis = true
travis = false
dockerfile = false
readme = true
changelog = true
Expand Down
Loading