Skip to content

Commit

Permalink
Update supported python versions: >= 3.8, <= 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
ayalash committed Sep 27, 2024
1 parent d5ac175 commit 0182a1b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout the repository
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "hatchling.build"
name = "reference-counter"
description = "Reference counter implementation in python"
readme = "README.md"
requires-python = ">=3.7"
requires-python = ">=3.8"
license = { text = "BSD 3-Clause License" }

classifiers = [
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist=py26,py27,py33,py34
envlist=py38,py39,py310,py311,312

[testenv]
changedir = {toxinidir}
commands = py.test tests
commands = pytest tests
pip_pre = True
deps =
-rtest_requirements.txt
extras =
testing

0 comments on commit 0182a1b

Please sign in to comment.