Skip to content

Commit

Permalink
Drop support for Python 3.8, 3.9 & 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
douglatornell committed Dec 18, 2023
1 parent cbcc39f commit b1a10be
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest-with-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.11', '3.12']
uses: UBC-MOAD/gha-workflows/.github/workflows/pytest-with-coverage.yaml@main
with:
python-version: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ UBC EOAS MOAD Group Tools Package
.. image:: https://img.shields.io/badge/license-Apache%202-cb2533.svg
:target: https://www.apache.org/licenses/LICENSE-2.0
:alt: Licensed under the Apache License, Version 2.0
.. image:: https://img.shields.io/badge/Python-3.10%20%7C%203.11%20%7C%203.12-blue?logo=python&label=Python&logoColor=gold
.. image:: https://img.shields.io/badge/Python-3.11%20%7C%203.12-blue?logo=python&label=Python&logoColor=gold
:target: https://docs.python.org/3.12/
:alt: Python Version
.. image:: https://img.shields.io/badge/version%20control-git-blue.svg?logo=github
Expand Down
8 changes: 4 additions & 4 deletions docs/pkg_development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
.. image:: https://img.shields.io/badge/license-Apache%202-cb2533.svg
:target: https://www.apache.org/licenses/LICENSE-2.0
:alt: Licensed under the Apache License, Version 2.0
.. image:: https://img.shields.io/badge/Python-3.10%20%7C%203.11%20%7C%203.12-blue?logo=python&label=Python&logoColor=gold
.. image:: https://img.shields.io/badge/Python-3.11%20%7C%203.12-blue?logo=python&label=Python&logoColor=gold
:target: https://docs.python.org/3.12/
:alt: Python Version
.. image:: https://img.shields.io/badge/version%20control-git-blue.svg?logo=github
Expand Down Expand Up @@ -62,12 +62,12 @@ Python modules that facilitate code reuse for the UBC EOAS MOAD Group.
Python Versions
===============

.. image:: https://img.shields.io/badge/Python-3.10%20%7C%203.11%20%7C%203.12-blue?logo=python&label=Python&logoColor=gold
.. image:: https://img.shields.io/badge/Python-3.11%20%7C%203.12-blue?logo=python&label=Python&logoColor=gold
:target: https://docs.python.org/3.12/
:alt: Python Version

The :py:obj:`moad_tools` package is developed using `Python`_ 3.12.
It is tested for Python versions >=3.10.
It is tested for Python versions >=3.11.

.. _Python: https://www.python.org/

Expand Down Expand Up @@ -333,7 +333,7 @@ The output looks something like:
( pkg_development: line 23) ok https://github.com/UBC-MOAD/moad_tools/actions?query=workflow%3Asphinx-linkcheck
( pkg_development: line 23) ok https://github.com/UBC-MOAD/moad_tools/workflows/pytest-with-coverage/badge.svg
( pkg_development: line 23) ok https://github.com/UBC-MOAD/moad_tools/issues
( pkg_development: line 23) ok https://img.shields.io/badge/Python-3.10%20%7C%203.11%20%7C%203.12-blue?logo=python&label=Python&logoColor=gold
( pkg_development: line 23) ok https://img.shields.io/badge/Python-3.11%20%7C%203.12-blue?logo=python&label=Python&logoColor=gold
( pkg_development: line 23) ok https://img.shields.io/badge/license-Apache%202-cb2533.svg
( pkg_development: line 23) ok https://img.shields.io/badge/code%20style-black-000000.svg
( pkg_development: line 23) ok https://img.shields.io/badge/version%20control-git-blue.svg?logo=github
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ platform = Linux
zip_safe = False
include_package_data = True
packages = find:
python_requires = >=3.8
python_requires = >=3.11
install_requires =
# see envs/environment-dev.yaml for conda environment dev installation
# see envs/requirements.txt for versions most recently used in development
Expand All @@ -48,7 +48,6 @@ install_requires =
# PyTables
tables
xarray
# moad_tools # use python3 -m pip install --editable moad_tools/

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit b1a10be

Please sign in to comment.