File tree 5 files changed +12
-11
lines changed
5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 23
23
- uses : actions/checkout@v4
24
24
- uses : actions/setup-python@v5
25
25
with :
26
- python-version : ' 3.10 '
26
+ python-version : ' 3.11 '
27
27
-
uses :
pre-commit/[email protected]
28
28
- name : Install mypy
29
29
run : |
@@ -40,12 +40,12 @@ jobs:
40
40
strategy :
41
41
fail-fast : false
42
42
matrix :
43
- python-version : ['3.10 ', '3.11 ', '3.12 ']
43
+ python-version : ['3.11 ', '3.12 ', '3.13 ']
44
44
proj-version : ['9.6.0']
45
45
include :
46
- - python-version : ' 3.10 '
46
+ - python-version : ' 3.11 '
47
47
proj-version : ' 9.5.1'
48
- - python-version : ' 3.10 '
48
+ - python-version : ' 3.11 '
49
49
proj-version : ' 9.4.1'
50
50
steps :
51
51
- uses : actions/checkout@v4
@@ -104,10 +104,10 @@ jobs:
104
104
fail-fast : true
105
105
matrix :
106
106
os : [ubuntu-latest, macos-latest, windows-latest]
107
- python-version : ['3.10 ', '3.11 ', '3.12 ']
107
+ python-version : ['3.11 ', '3.12 ', '3.13 ']
108
108
python-implementation : [python]
109
109
proj-version : ['*']
110
- # DISABLED UNTIL CONDA-FORGE PYPY SUPPORTS PYTHON 3.10 +
110
+ # DISABLED UNTIL CONDA-FORGE PYPY SUPPORTS PYTHON 3.11 +
111
111
# include:
112
112
# - os: ubuntu-latest
113
113
# python-version: '*'
Original file line number Diff line number Diff line change 1
1
default_language_version :
2
- python : python3.10
2
+ python : python3.11
3
3
4
4
repos :
5
5
- repo : https://github.com/pre-commit/pre-commit-hooks
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ Change Log
4
4
Latest
5
5
------
6
6
- DEP: Minimum PROJ version 9.4 (pull #1481)
7
+ - DEP: Minimum supported Python version 3.11 (pull #1483)
7
8
8
9
3.7.1
9
10
------
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ GitHub Repository: https://github.com/pyproj4/pyproj
7
7
8
8
.. note :: Minimum supported PROJ version is 9.4
9
9
10
- .. note :: Minimum supported Python version is 3.10
10
+ .. note :: Minimum supported Python version is 3.11
11
11
12
12
.. note :: Linux (manylinux2014) wheels require pip 19.3+
13
13
Original file line number Diff line number Diff line change @@ -29,17 +29,17 @@ classifiers = [
29
29
" License :: OSI Approved :: MIT License" ,
30
30
" Operating System :: OS Independent" ,
31
31
" Programming Language :: Python" ,
32
- " Programming Language :: Python :: 3.10" ,
33
32
" Programming Language :: Python :: 3.11" ,
34
33
" Programming Language :: Python :: 3.12" ,
34
+ " Programming Language :: Python :: 3.13" ,
35
35
" Programming Language :: Python :: 3 :: Only" ,
36
36
" Topic :: Scientific/Engineering" ,
37
37
" Topic :: Scientific/Engineering :: GIS" ,
38
38
" Topic :: Scientific/Engineering :: Mathematics" ,
39
39
" Topic :: Software Development :: Libraries :: Python Modules" ,
40
40
" Typing :: Typed" ,
41
41
]
42
- requires-python = " >=3.10 "
42
+ requires-python = " >=3.11 "
43
43
dependencies = [
44
44
" certifi" ,
45
45
]
@@ -157,6 +157,6 @@ ignore = [
157
157
158
158
[tool .mypy ]
159
159
files = [" pyproj" ]
160
- python_version = " 3.10 "
160
+ python_version = " 3.11 "
161
161
ignore_errors = false
162
162
enable_error_code = " ignore-without-code"
You can’t perform that action at this time.
0 commit comments