Skip to content

Commit 0f842b8

Browse files
committed
drop 3.10 - minimal 3.11 - spec000
1 parent e705aa2 commit 0f842b8

File tree

6 files changed

+31
-55
lines changed

6 files changed

+31
-55
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ jobs:
2424
matrix:
2525
os: [ubuntu-latest]
2626
environment-file:
27-
- ci/envs/310-minimal.yaml
28-
- ci/envs/310-latest.yaml
27+
- ci/envs/311-minimal.yaml
2928
- ci/envs/311-latest.yaml
3029
- ci/envs/312-latest.yaml
3130
- ci/envs/313-latest.yaml

ci/envs/310-latest.yaml

Lines changed: 0 additions & 22 deletions
This file was deleted.

ci/envs/310-minimal.yaml

Lines changed: 0 additions & 20 deletions
This file was deleted.

ci/envs/311-minimal.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: test
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- python=3.11
6+
- geopandas=1.0
7+
- libpysal=4.10
8+
- matplotlib=3.9
9+
- numpy=2.0
10+
- pandas=2.2
11+
- scipy=1.12
12+
- shapely=2.1
13+
# tests
14+
- scikit-learn=1.4
15+
- statsmodels
16+
- pytest
17+
- pytest-cov
18+
- pytest-xdist
19+
- codecov

docs/installation.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Installation
44
============
55

6-
Currently, pointpats supports Python >=`3.10`_.
6+
Currently, pointpats supports Python >=`3.11`_.
77
Please make sure that you are operating in a Python 3 environment.
88

99
Installing released version
@@ -41,7 +41,7 @@ your fork. By making changes
4141
to your local clone and submitting a pull request to `pysal/pointpats`_, you can
4242
contribute to the pointpats development.
4343

44-
.. _3.10: https://docs.python.org/3.10/
44+
.. _3.11: https://docs.python.org/3.11/
4545
.. _Python Package Index: https://pypi.org/project/pointpats/
4646
.. _pysal/pointpats: https://github.com/pysal/pointpats
4747
.. _fork: https://help.github.com/articles/fork-a-repo/

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ classifiers = [
2525
"Intended Audience :: Science/Research",
2626
"Topic :: Scientific/Engineering :: GIS",
2727
]
28-
requires-python = ">=3.10"
28+
requires-python = ">=3.11"
2929
dependencies = [
30-
"libpysal >=4.8",
31-
"geopandas >= 0.12",
32-
"matplotlib >=3.6",
33-
"numpy >=1.24",
34-
"pandas >=1.4, !=1.5.0",
35-
"scipy >=1.10",
36-
"shapely >=2"
30+
"libpysal >=4.10",
31+
"geopandas >= 1.0",
32+
"matplotlib >=3.9",
33+
"numpy >=2.0",
34+
"pandas >=2.2",
35+
"scipy >=1.12",
36+
"shapely >=2.2"
3737
]
3838

3939
[project.urls]
@@ -61,7 +61,7 @@ tests = [
6161
"pytest-mpl",
6262
"pytest-cov",
6363
"pytest-xdist",
64-
"scikit-learn >=1.2",
64+
"scikit-learn >=1.4",
6565
"statsmodels",
6666
"watermark",
6767
]

0 commit comments

Comments
 (0)