Skip to content
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
16 changes: 0 additions & 16 deletions .codeclimate.yml

This file was deleted.

9 changes: 1 addition & 8 deletions .github/workflows/python-lib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand All @@ -28,10 +28,3 @@ jobs:
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
- name: Check files
run: poetry run pre-commit run --all-files
- name: Report test coverage to Code Climate
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: coverage.xml:coverage.py
if: ${{ github.ref == 'refs/heads/main' && matrix.python-version == '3.13' }}
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-merge-conflict
- id: check-yaml
- id: check-toml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.11.13
rev: v0.14.1
hooks:
- id: ruff
args: [--fix]
- id: ruff-format
- repo: https://github.com/google/yamlfmt
rev: v0.17.0
rev: v0.19.0
hooks:
- id: yamlfmt
- repo: https://github.com/tox-dev/pyproject-fmt
rev: v2.6.0
rev: v2.11.0
hooks:
- id: pyproject-fmt
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.16.0
rev: v1.18.2
hooks:
- id: mypy
args: []
additional_dependencies: ["numpy>=2.2", "pytest>=8.1.1", "types-networkx>=3.4.2.20250312"]
- repo: https://github.com/python-poetry/poetry
rev: "2.1.3"
rev: "2.2.1"
hooks:
- id: poetry-check
- id: poetry-lock
Expand Down
6 changes: 1 addition & 5 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
An implementation of Review Spammer Detection
=============================================

|GPLv3| |Build Status| |Maintainability| |Test Coverage| |Release|
|GPLv3| |Build Status| |Release|

|Logo|

Expand Down Expand Up @@ -37,10 +37,6 @@ This software is released under The GNU General Public License Version
:target: https://www.gnu.org/copyleft/gpl.html
.. |Build Status| image:: https://github.com/rgmining/rsd/actions/workflows/python-lib.yaml/badge.svg
:target: https://github.com/rgmining/rsd/actions/workflows/python-lib.yaml
.. |Maintainability| image:: https://api.codeclimate.com/v1/badges/6461704a370307ee0d55/maintainability
:target: https://codeclimate.com/github/rgmining/rsd/maintainability
.. |Test Coverage| image:: https://api.codeclimate.com/v1/badges/6461704a370307ee0d55/test_coverage
:target: https://codeclimate.com/github/rgmining/rsd/test_coverage
.. |Release| image:: https://img.shields.io/badge/release-0.3.5-brightgreen.svg
:target: https://pypi.org/project/rgmining-rsd/
.. |Logo| image:: https://rgmining.github.io/synthetic/_static/image.png
Expand Down
Loading