Skip to content

Commit

Permalink
Drop "Python3.8" support
Browse files Browse the repository at this point in the history
  • Loading branch information
lycantropos committed Nov 12, 2024
1 parent ff50e00 commit 6247be4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CPYTHON_IMAGE_NAME=python
CPYTHON_IMAGE_VERSION=3.8
CPYTHON_IMAGE_VERSION=3.9
PYPY_IMAGE_NAME=pypy
PYPY_IMAGE_VERSION=3.8
PYPY_IMAGE_VERSION=3.9
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ rene
[![](https://badge.fury.io/py/rene.svg)](https://badge.fury.io/py/rene "PyPI")
[![](https://img.shields.io/crates/v/rene.svg)](https://crates.io/crates/rene "crates.io")

In what follows `python` is an alias for `python3.8` or `pypy3.8`
or any later version (`python3.9`, `pypy3.9` and so on).
In what follows `python` is an alias for `python3.9` or `pypy3.9`
or any later version (`python3.10`, `pypy3.10` and so on).

Installation
------------
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@ readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"dendroid>=1.6.1,<2.0",
"prioq>=0.6.0,<1.0",
Expand Down

0 comments on commit 6247be4

Please sign in to comment.