Skip to content

Commit

Permalink
Merge pull request #260 from TGSAI/deps/min_python_39
Browse files Browse the repository at this point in the history
Drop Python 3.8 Support to Enable Newer Dependencies
  • Loading branch information
tasansal authored Aug 25, 2023
2 parents 5694c18 + bb64705 commit b34b267
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 163 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
include:
- { python: "3.11", os: "ubuntu-latest", session: "pre-commit" }
- { python: "3.11", os: "ubuntu-latest", session: "safety" }
# - { python: "3.11", os: "ubuntu-latest", session: "mypy" }
# - { python: "3.10", os: "ubuntu-latest", session: "mypy" }
# - { python: "3.9", os: "ubuntu-latest", session: "mypy" }
# - { python: "3.8", os: "ubuntu-latest", session: "mypy" }
- { python: "3.11", os: "ubuntu-latest", session: "tests" }
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
- { python: "3.9", os: "ubuntu-latest", session: "tests" }
- { python: "3.8", os: "ubuntu-latest", session: "tests" }
- { python: "3.11", os: "windows-latest", session: "tests" }
- { python: "3.11", os: "macos-latest", session: "tests" }
# - { python: "3.11", os: "ubuntu-latest", session: "typeguard" }
# - { python: "3.10", os: "ubuntu-latest", session: "typeguard" }
# - { python: "3.10", os: "ubuntu-latest", session: "xdoctest" }
- { python: "3.11", os: "ubuntu-latest", session: "docs-build" }
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@


package = "mdio"
python_versions = ["3.11", "3.10", "3.9", "3.8"]
python_versions = ["3.11", "3.10", "3.9"]
nox.needs_version = ">= 2022.1.7"
nox.options.sessions = (
"pre-commit",
Expand Down
Loading

0 comments on commit b34b267

Please sign in to comment.