Skip to content

Commit

Permalink
GEOPY-1629: no support for Python 3.9
Browse files Browse the repository at this point in the history
due to usage of Pydantic
  • Loading branch information
sebhmg committed Jul 5, 2024
1 parent c6a8b40 commit bdc476c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest-unix-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_ver: ['3.9', '3.10', '3.11', '3.12']
python_ver: ['3.10', '3.11', '3.12']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_ver: ['3.9', '3.10', '3.11', '3.12']
python_ver: ['3.10', '3.11', '3.12']
defaults:
run:
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Set up Python version
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
- name: Get full Python version
id: full-python-version
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ geoh5_to_las = 'las_geoh5.scripts.geoh5_to_las:main'
las_to_geoh5 = 'las_geoh5.scripts.las_to_geoh5:main'

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"

lasio = "~0.31"
numpy = "~1.26.0" # also in geoh5py
Expand Down

0 comments on commit bdc476c

Please sign in to comment.