Skip to content

Commit

Permalink
Use 3.11 in test action and remove support for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcth committed May 13, 2024
1 parent b5be58d commit 49a325a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-action-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -38,4 +38,4 @@ jobs:
message: ${{ env.total }}%
minColorRange: 50
maxColorRange: 90
valColorRange: ${{ env.total }}
valColorRange: ${{ env.total }}
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<p align="center">
<a href="https://www.python.org">
<img src="https://img.shields.io/badge/Python-3.10%20|%203.11%20|%203.12-blue" alt="Python: 3.10 - 3.12" style="max-width: 100%;">
<img src="https://img.shields.io/badge/Python-3.10%20|%203.11-blue" alt="Python: 3.10 - 3.11" style="max-width: 100%;">
</a>
<a href="https://pytest.org">
<img src="https://img.shields.io/badge/Testing_framework-pytest-a04000" alt="Testing framework: pytest" style="max-width: 100%;">
Expand All @@ -36,4 +36,3 @@
## Description

Welcome to ifk-lantmateriet. This repo contains code to parse data from Lantmäteriet.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ readme = "README.md"
authors = [
{ name = "Mladen Gibanica", email = "[email protected]" },
]
requires-python = ">=3.9"
requires-python = ">=3.10,<3.12"
dependencies = [
"geopandas ~= 0.14",
"pyogrio ~= 0.7",
Expand Down

0 comments on commit 49a325a

Please sign in to comment.