Skip to content

Commit

Permalink
drop python3.8 support.
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Oct 10, 2024
1 parent dbe3f01 commit bdadd94
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ this template at https://github.com/BrianPugh/python-template .
.. |GHA tests| image:: https://github.com/BrianPugh/python-template/workflows/tests/badge.svg
:target: https://github.com/BrianPugh/python-template/actions?query=workflow%3Atests
:alt: GHA Status
.. |Python compat| image:: https://img.shields.io/badge/>=python-3.8-blue.svg
.. |Python compat| image:: https://img.shields.io/badge/>=python-3.9-blue.svg

.. _Codecov Dashboard: https://app.codecov.io/gh
.. _Docker: https://www.docker.com
Expand Down
4 changes: 2 additions & 2 deletions README_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<div align="center">

![Python compat](https://img.shields.io/badge/%3E=python-3.8-blue.svg)
![Python compat](https://img.shields.io/badge/%3E=python-3.9-blue.svg)
[![PyPi](https://img.shields.io/pypi/v/GIT_REPONAME.svg)](https://pypi.python.org/pypi/GIT_REPONAME)
[![GHA Status](https://github.com/GIT_USERNAME/GIT_REPONAME/actions/workflows/tests.yaml/badge.svg?branch=main)](https://github.com/GIT_USERNAME/GIT_REPONAME/actions?query=workflow%3Atests)
[![Coverage](https://codecov.io/github/GIT_USERNAME/GIT_REPONAME/coverage.svg?branch=main)](https://codecov.io/github/GIT_USERNAME/GIT_REPONAME?branch=main)
Expand All @@ -19,7 +19,7 @@ pythontemplate is a
# Features

# Installation
pythontemplate requires Python `>=3.8` and can be installed via:
pythontemplate requires Python `>=3.9` and can be installed via:

```bash
python -m pip install git+https://github.com/GIT_USERNAME/GIT_REPONAME.git
Expand Down
4 changes: 2 additions & 2 deletions README_TEMPLATE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Features
Installation
============

pythontemplate requires Python ``>=3.8`` and can be installed via:
pythontemplate requires Python ``>=3.9`` and can be installed via:

.. code-block:: bash
Expand All @@ -42,6 +42,6 @@ Usage
.. |readthedocs| image:: https://readthedocs.org/projects/GIT_REPONAME/badge/?version=latest
:target: https://GIT_REPONAME.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. |Python compat| image:: https://img.shields.io/badge/>=python-3.8-blue.svg
.. |Python compat| image:: https://img.shields.io/badge/>=python-3.9-blue.svg
.. |PyPi| image:: https://img.shields.io/pypi/v/pythontemplate.svg
:target: https://pypi.python.org/pypi/pythontemplate
2 changes: 1 addition & 1 deletion docs/source/Installation.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Installation
============

pythontemplate requires Python ``>=3.8`` and can be installed from pypi via:
pythontemplate requires Python ``>=3.9`` and can be installed from pypi via:

.. code-block:: bash
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pythontemplate = "pythontemplate.cli.main:run_app"

[tool.poetry.dependencies]
# Be as loose as possible if writing a library.
python = "^3.8"
python = "^3.9"
typing-extensions = "^4.12.2"
rich = ">=10.11.0"
cyclopts = "^2.9.9"
Expand Down

0 comments on commit bdadd94

Please sign in to comment.