Skip to content

Commit 1bef884

Browse files
authored
feat: drop support for python 3.9 (#2419)
1 parent 1b9c79c commit 1bef884

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
strategy:
2525
matrix:
26-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
26+
python-version: ["3.10", "3.11", "3.12", "3.13"]
2727

2828
steps:
2929
- uses: actions/checkout@v4

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ To start contributing, make sure to first start from a fresh environment. Using
3232

3333
If you are using conda, you can approach it as follows:
3434

35-
1. Create and activate a new conda environment (e.g., `conda create -n bertopic python=3.9`)
35+
1. Create and activate a new conda environment (e.g., `conda create -n bertopic python=3.10`)
3636
2. Install requirements (e.g., `pip install .[dev]`)
3737
* This makes sure to also install documentation and testing packages
3838
3. (Optional) Run `make docs` to build your documentation

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![PyPI Downloads](https://static.pepy.tech/badge/bertopic)](https://pepy.tech/projects/bertopic)
2-
[![PyPI - Python](https://img.shields.io/badge/python-v3.9+-blue.svg)](https://pypi.org/project/bertopic/)
2+
[![PyPI - Python](https://img.shields.io/badge/python-v3.10+-blue.svg)](https://pypi.org/project/bertopic/)
33
[![Build](https://img.shields.io/github/actions/workflow/status/MaartenGr/BERTopic/testing.yml?branch=master)](https://github.com/MaartenGr/BERTopic/actions)
44
[![docs](https://img.shields.io/badge/docs-Passing-green.svg)](https://maartengr.github.io/BERTopic/)
55
[![PyPI - PyPi](https://img.shields.io/pypi/v/BERTopic)](https://pypi.org/project/bertopic/)

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ version = "0.17.3"
88
description = "BERTopic performs topic Modeling with state-of-the-art transformer models."
99
readme = "README.md"
1010
license = {file = "LICENSE"}
11-
requires-python = ">=3.9"
11+
requires-python = ">=3.10"
1212
authors = [
1313
{ name = "Maarten P. Grootendorst", email = "[email protected]" },
1414
]
@@ -28,7 +28,6 @@ classifiers = [
2828
"Operating System :: POSIX",
2929
"Operating System :: Unix",
3030
"Programming Language :: Python",
31-
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
3433
"Programming Language :: Python :: 3.12",

0 commit comments

Comments
 (0)