Python functions to get top-level importables names
0

Configure Feed

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

Drop support for Python 3.8

Juan Luis Cano Rodríguez (Dec 4, 2023, 10:18 PM +0100) 5fc76c54 ff339a0d

+3 -6
+1 -1
.github/workflows/test.yml
··· 6 6 runs-on: ubuntu-latest 7 7 strategy: 8 8 matrix: 9 - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] 9 + python-version: ["3.9", "3.10", "3.11", "3.12"] 10 10 steps: 11 11 - uses: actions/checkout@v2 12 12 - name: Set up Python ${{ matrix.python-version }}
+1 -2
pyproject.toml
··· 5 5 [project] 6 6 name = "pygetimportables" 7 7 readme = "README.md" 8 - requires-python = ">=3.8" 8 + requires-python = ">=3.9" 9 9 license = {file = "LICENSE"} 10 10 description = "Python functions to get top-level importable names" 11 11 dependencies = [ ··· 25 25 "Operating System :: OS Independent", 26 26 "Programming Language :: Python", 27 27 "Programming Language :: Python :: 3", 28 - "Programming Language :: Python :: 3.8", 29 28 "Programming Language :: Python :: 3.9", 30 29 "Programming Language :: Python :: 3.10", 31 30 "Programming Language :: Python :: 3.11",
+1 -3
tox.ini
··· 2 2 envlist = 3 3 check 4 4 docs 5 - {py38,py39,py310,py311,py312,pypy3}{,-coverage} 5 + {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.8: py38 13 12 3.9: check, py39 14 13 3.10: py310 15 14 3.11: py311 ··· 18 17 [testenv] 19 18 basepython = 20 19 pypy3: pypy3 21 - py38: python3.8 22 20 py39: python3.9 23 21 py310: python3.10 24 22 py311: python3.11