Skip to content

Commit

Permalink
Merge pull request #766 from SarthakJariwala/update-packages
Browse files Browse the repository at this point in the history
Drop support for Python 3.8
  • Loading branch information
SarthakJariwala authored Sep 3, 2024
2 parents af66404 + a8cb4ec commit 1fd29da
Show file tree
Hide file tree
Showing 6 changed files with 1,262 additions and 1,247 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
python-version: '3.10'
python-version: '3.12'
architecture: x64
- run: pip install --constraint=.github/workflows/constraints.txt pip
- run: pip install --constraint=.github/workflows/constraints.txt nox
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
python-version: '3.10'
python-version: '3.12'
architecture: x64
- run: pip install --constraint=.github/workflows/constraints.txt pip
- run: pip install --constraint=.github/workflows/constraints.txt nox
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
fail-fast: false
matrix:
include:
- { python-version: "3.12", os: ubuntu-latest }
- { python-version: "3.11", os: ubuntu-latest }
- { python-version: "3.10", os: ubuntu-latest }
- { python-version: "3.9", os: ubuntu-latest }
- { python-version: "3.8", os: ubuntu-latest }
- { python-version: "3.11", os: windows-latest }
- { python-version: "3.11", os: macos-latest }
- { python-version: "3.12", os: windows-latest }
- { python-version: "3.12", os: macos-latest }

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@


package = "seaborn_image"
python_versions = ["3.11", "3.10", "3.9", "3.8"]
python_versions = ["3.12", "3.11", "3.10", "3.9"]
nox.needs_version = ">= 2021.6.6"
locations = "src", "tests", "noxfile.py", "docs/conf.py", "examples"
nox.options.sessions = "tests", "xdoctest"
Expand Down
Loading

0 comments on commit 1fd29da

Please sign in to comment.