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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.13"]
python-version: ["3.14"]
os: [ubuntu-latest, macos-latest]
install-via: [pip]
arch: [x64]
include:
- python-version: "3.13"
- python-version: "3.14"
os: macos-latest
install-via: pip
arch: arm64

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.arch }}
Expand All @@ -56,13 +56,13 @@ jobs:
echo "PIP_CACHE=$(pip cache dir)" >> $GITHUB_OUTPUT

- name: Cache pip
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.set_variables.outputs.PIP_CACHE }}
key: ${{ runner.os }}-pip-${{ steps.set_variables.outputs.PY }}

- name: Cache venv
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .venv
key: venv-${{ runner.os }}-${{ matrix.arch }}-${{ matrix.python-version }}-${{ hashFiles('pdm.lock') }}
Expand All @@ -84,7 +84,7 @@ jobs:
pdm run -v doctests

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
slug: sr-murthy/financial_services_register_api
files: ./coverage.xml
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -64,7 +64,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3
uses: github/codeql-action/autobuild@v4

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
Expand All @@ -77,6 +77,6 @@ jobs:
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ version: 2

# Set the OS, Python version and other tools you might need
build:
os: ubuntu-22.04
os: ubuntu-latest
tools:
python: "3.12"
python: "3.14"

# You can also specify other tool versions:
# nodejs: "20"
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ and there is also a separate [CodeQL workflow](https://github.com/sr-murthy/fina

## Releases `upload`

The [package](https://pypi.org/project/financial-services-register-api/) is currently at version `1.3.0`.
The [package](https://pypi.org/project/financial-services-register-api/) is currently at version `1.3.1`.

Releases are created and published (to PyPI and GitHub) manually.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,12 @@ version_extract:

# Dependency management
update_deps:
@echo "\n$(PACKAGE_NAME)[$(BRANCH)@$(HEAD)]: Update all development dependencies, including documentation and production dependencies\n"
pdm self update && pdm update -v --dev --no-editable --no-self --update-all && pdm export -v -f requirements --dev -o docs/requirements.txt
@echo "\n$(PACKAGE_NAME)[$(BRANCH)@$(HEAD)]: Update all development dependencies, including documentation and production dependencies, and update/refresh PDM lockfile and pylock TOML\n"
rm -f pdm.lock pylock.toml && \
pdm self update && \
pdm update -v --dev --no-editable --no-self --update-all && \
pdm export -f pylock -o pylock.toml && \
pdm export -v -f requirements --dev -o docs/requirements.txt

# Linting
lint: clean
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
[![codecov](https://img.shields.io/badge/codecov-100%25-green)](https://codecov.io/github/sr-murthy/financial-services-register-api)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
[![pdm-managed](https://img.shields.io/badge/pdm-managed-blueviolet)](https://pdm-project.org)
[![License: MPL
2.0](https://img.shields.io/badge/License-MPL_2.0-brightgreen.svg)](https://opensource.org/licenses/MPL-2.0)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-brightgreen)](https://opensource.org/license/gpl-3.0)
[![Docs](https://readthedocs.org/projects/financial-services-register-api/badge/?version=latest)](https://financial-services-register-api.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://img.shields.io/pypi/v/financial-services-register-api?logo=python&color=41bb13)](https://pypi.org/project/financial-services-register-api)
![PyPI Downloads](https://static.pepy.tech/badge/fsrapiclient)
Expand All @@ -15,9 +14,9 @@

# financial-services-register-api

A lightweight Python client library for the UK [Financial Services Register](https://register.fca.org.uk/s/) [RESTful API](https://register.fca.org.uk/Developer/s/).
A lightweight Python client library for the UK [Financial Services Register](https://register.fca.org.uk/s/) [API](https://register.fca.org.uk/Developer/s/).

The [PyPI package](https://pypi.org/project/financial-services-register-api) is currently at version `1.3.0`.
The [PyPI package](https://pypi.org/project/financial-services-register-api) is currently at version `1.3.1`.

> [!NOTE]
> The new package `financial-services-register-api` supersedes the older package `fsrapiclient`, which will no longer be published. Existing versions of the older package may be retracted in the future. Please use the new package.
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
financial-services-register-api
===============================

A Python client library for the UK `Financial Services Register <https://register.fca.org.uk/s/>`_ `RESTful API <https://register.fca.org.uk/Developer/s/>`_.
A Python client library for the UK `Financial Services Register <https://register.fca.org.uk/s/>`_ `API <https://register.fca.org.uk/Developer/s/>`_.

The `package <https://pypi.org/project/financial-services-register-api>`_ is currently at version `1.3.0`.
The `package <https://pypi.org/project/financial-services-register-api>`_ is currently at version `1.3.1`.

.. note::

Expand Down
Loading
Loading