Skip to content

Commit

Permalink
Bump min python to 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
jl-wynen committed Oct 17, 2023
1 parent c96a479 commit ae4e1de
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 11 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v3
with:
python-version: 3.8
- run: python -m pip install --upgrade pip
- run: python -m pip install -r requirements/ci.txt
- run: tox -e static
Expand All @@ -37,9 +34,8 @@ jobs:
- {python: '3.11', os: ubuntu-22.04, tox: py311-full}
- {python: '3.10', os: ubuntu-22.04, tox: py310-full}
- {python: '3.9', os: ubuntu-22.04, tox: py39-full}
- {python: '3.8', os: ubuntu-22.04, tox: py38-full}
- {python: '3.8', os: macos-12, tox: py38}
- {python: '3.8', os: windows-2022, tox: py38}
- {python: '3.9', os: macos-12, tox: py39}
- {python: '3.9', os: windows-2022, tox: py39}
steps:
- run: sudo apt install --yes docker-compose
if: ${{ contains(matrix.variant.os, 'ubuntu') }}
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ jobs:
fetch-depth: 0 # history required so setuptools_scm can determine version

- uses: actions/setup-python@v3
with:
python-version: 3.8
- run: python -m pip install --upgrade pip
- run: python -m pip install -r requirements/wheels.txt

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"email-validator",
"pydantic >= 1.9",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310,311,312}-full
envlist = py{39,310,311,312}-full
isolated_build = true

[testenv]
Expand Down

0 comments on commit ae4e1de

Please sign in to comment.