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
21 changes: 6 additions & 15 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,15 @@ on:

jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
[
# ubuntu-20.04,
ubuntu-22.04,
# windows-2019,
# windows-2022,
# macos-11,
# macos-12,
# macos-13,
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: wntrblm/nox@2025.05.01
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Setup NOX
uses: wntrblm/nox@2025.05.01
with:
python-versions: "3.8, 3.9, 3.10, 3.11, 3.12, 3.13"
python-versions: "3.9, 3.10, 3.11, 3.12, 3.13, 3.14"
- name: Test with NOX
run: |
nox --session tests
2 changes: 1 addition & 1 deletion .sourcery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ ignore:
- docs/build

rule_settings:
python_version: '3.8'
python_version: '3.9'
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Added Python 3.14 to the list of supported Python versions.

### Changed

- Modified the header image url to be an absolute url so that it hopefully shows up in PyPI correctly.

### Removed

- Removed Python 3.8 from the list of supported Python versions.

## [0.13.1] - 2024-05-21

### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The pythonbible library serves several purposes related to the Christian Bible a
</tr>
<tr>
<td>Supported Python Versions</td>
<td><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue?logo=python&logoColor=lightgray"></a></td>
<td><a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue?logo=python&logoColor=lightgray"></a></td>
</tr>
</table>

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
# -- Project information -----------------------------------------------------

project = "pythonbible"
copyright = "2020-2023 Nathan Patton"
copyright = "2020-2025 Nathan Patton"

Check warning on line 22 in docs/source/conf.py

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

docs/source/conf.py#L22

Redefining built-in 'copyright'
author = "Nathan Patton"

# The full version, including alpha/beta/rc tags
release = "0.12.0"
release = "0.13.1"


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ Requirements

**pythonbible** requires Python and is tested with the following versions:

* 3.8
* 3.9
* 3.10
* 3.11
* 3.12
* 3.13
* 3.14

**pythonbible** has no other dependencies.

Expand Down
6 changes: 4 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
PYTEST = "pytest"
COVERAGE = "coverage"

nox.options.default_venv_backend = "uv"

@nox.session(python=["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"])

@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"])
def tests(session: nox.Session) -> None:
session.install(PYTEST)
session.run(PYTEST)


@nox.session(python=["3.11"])
@nox.session(python=["3.13"])
def coverage(session: nox.Session) -> None:
session.install("coverage[toml]", PYTEST)
session.run(COVERAGE, "run", "-m", PYTEST)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,17 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License"
]
requires = []
description-file = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"

[tool.flit.metadata.urls]
Documentation = "https://docs.python.bible"
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nox==2025.5.1
nox[uv]==2025.5.1
pytest-cov==6.2.1
Loading