Python functions to get top-level importables names
0

Configure Feed

Select the types of activity you want to include in your feed.

Declare support for more versions

Juan Luis Cano Rodríguez (Dec 4, 2023, 9:34 PM +0100) dadba7e4 6d24ed37

+10 -5
+5 -1
pyproject.toml
··· 5 5 [project] 6 6 name = "pygetpackages" 7 7 readme = "README.md" 8 - requires-python = ">=3.11" 8 + requires-python = ">=3.8" 9 9 license = {file = "LICENSE"} 10 10 description = "Python function that gets packages from a source tree" 11 11 dependencies = [ ··· 23 23 "Operating System :: OS Independent", 24 24 "Programming Language :: Python", 25 25 "Programming Language :: Python :: 3", 26 + "Programming Language :: Python :: 3.8", 27 + "Programming Language :: Python :: 3.9", 28 + "Programming Language :: Python :: 3.10", 26 29 "Programming Language :: Python :: 3.11", 30 + "Programming Language :: Python :: 3.12", 27 31 ] 28 32 dynamic = ["version"] 29 33
+5 -4
tox.ini
··· 2 2 envlist = 3 3 check 4 4 docs 5 - {py37,py38,py39,py310,pypy3}{,-coverage} 5 + {py38,py39,py310,py311,py312,pypy3}{,-coverage} 6 6 # See https://tox.readthedocs.io/en/latest/example/package.html#flit 7 7 isolated_build = True 8 8 isolated_build_env = build 9 9 10 10 [gh-actions] 11 11 python = 12 - 3.6: py36 13 - 3.7: py37 14 12 3.8: py38 15 13 3.9: check, py39 16 14 3.10: py310 15 + 3.11: py311 16 + 3.12: py312 17 17 18 18 [testenv] 19 19 basepython = 20 20 pypy3: pypy3 21 - py37: python3.7 22 21 py38: python3.8 23 22 py39: python3.9 24 23 py310: python3.10 24 + py311: python3.11 25 + py312: python3.12 25 26 # See https://github.com/tox-dev/tox/issues/1548 26 27 {check,docs,build}: python3 27 28 setenv =