Skip to content

Commit

Permalink
build: Drop Python 3.8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Sep 15, 2024
1 parent 163541a commit 4ef75ac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', pypy-3.10]
python-version: [3.9, '3.10', '3.11', '3.12', pypy-3.10]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
Expand Down
3 changes: 2 additions & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ Changelog
0.4.0 (Unreleased)
------------------

- Some arguments must be keyword arguments:
- Some arguments must be keyword arguments in:

:meth:`ocdsextensionregistry.profile_builder.ProfileBuilder.release_package_schema`
:meth:`ocdsextensionregistry.profile_builder.ProfileBuilder.record_package_schema`

- Add support for Sphinx 7.
- Drop support for Sphinx 4.
- Drop support for Python 3.8.

0.3.8 (2023-07-20)
------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = "Open Contracting Partnership"

# The short X.Y version
version = "0.3.8"
version = "0.4.0"
# The full version, including alpha/beta/rc tags
release = version

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "ocdsextensionregistry"
version = "0.3.8"
version = "0.4.0"
authors = [{name = "Open Contracting Partnership", email = "data@open-contracting.org"}]
description = "Eases access to information from the extension registry of the Open Contracting Data Standard"
readme = "README.rst"
Expand All @@ -13,7 +13,6 @@ urls = {Homepage = "https://github.com/open-contracting/extension_registry.py"}
classifiers = [
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit 4ef75ac

Please sign in to comment.