Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DEP: Minimum supported Python version 3.9 #1245

Merged
merged 1 commit into from
Apr 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11']
proj-version: ['9.2.0']
include:
- python-version: '3.9'
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11']
python-implementation: [python]
proj-version: ['*']
include:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ environment:
# See: http://www.appveyor.com/docs/installed-software#python
# build is limited to 60 minutes, without caching each build takes 10-30 minutes
# with caching build takes less than 1 minute
- PYTHON: "C:\\Python38-x64"
- PYTHON: "C:\\Python39-x64"
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
PROJSOURCE: 9.2.0
BUILD_SHARED_LIBS: ON
Expand Down
2 changes: 1 addition & 1 deletion docs/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Change Log

Latest
------
- DEP: Minimum supported Python version 3.9 (issue #1111)
- ENH: Added allow_superseded kwargs to :class:`pyproj.transformer.TransformerGroup` (pull #1269)

- ENH: Added :meth:`CRS.to_2d` to demote 3D CRS to 2D (issue #1266)

3.5.0
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GitHub Repository: https://github.com/pyproj4/pyproj

.. note:: Minimum supported PROJ version is 9.0

.. note:: Minimum supported Python version is 3.8
.. note:: Minimum supported Python version is 3.9

.. note:: Linux (manylinux2014) wheels require pip 19.3+

Expand Down
2 changes: 1 addition & 1 deletion pyproj/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Download: http://python.org/pypi/pyproj

Requirements: Python 3.8+.
Requirements: Python 3.9+.

Contact: Jeffrey Whitaker <jeffrey.s.whitaker@noaa.gov>

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Expand All @@ -39,7 +38,7 @@ project_urls =
[options]
zip_safe = False # https://mypy.readthedocs.io/en/stable/installed_packages.html
packages = pyproj,pyproj.crs
python_requires = >=3.8
python_requires = >=3.9
install_requires =
certifi

Expand Down