Skip to content

Commit

Permalink
Drop support for Python 3.8 and add 3.13 (#188)
Browse files Browse the repository at this point in the history
Python 3.8 has reached its end-of-life.
  • Loading branch information
jparise authored Oct 8, 2024
1 parent b93be10 commit 0fbad6f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', '3.11', '3.12', 'pypy-3.8', 'pypy-3.9', 'pypy-3.10']
python-version: [3.9, '3.10', '3.11', '3.12', '3.13', 'pypy-3.9', 'pypy-3.10']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ It provides API clients and character encoding utilities.

## Installation

Vesta requires Python 3.8 or later. It can be installed [via PyPI][pypi]:
Vesta requires Python 3.9 or later. It can be installed [via PyPI][pypi]:

```sh
$ python -m pip install vesta
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Python. It provides API clients and character encoding utilities.
Installation
============

Vesta requires Python 3.8 or later. It can be installed `via PyPI
Vesta requires Python 3.9 or later. It can be installed `via PyPI
<https://pypi.org/project/vesta/>`_::

$ python -m pip install vesta
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"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",
]
requires-python = ">= 3.8"
requires-python = ">= 3.9"
dependencies = [
"httpx>=0.23.1",
]
Expand Down Expand Up @@ -58,7 +58,7 @@ source = ["src"]

[tool.mypy]
packages = ["vesta", "tests"]
python_version = 3.8
python_version = 3.9

[tool.pytest.ini_options]
addopts = "--cov=vesta --cov-report=term-missing --doctest-modules"
Expand Down

0 comments on commit 0fbad6f

Please sign in to comment.