Skip to content

Commit

Permalink
📌 Drop support for Python 3.7, closes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
sgraaf authored Sep 12, 2023
1 parent 47ec05c commit 1cc15c1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cookiecutter-python-package

[![Supported Python Versions](https://img.shields.io/badge/python-3.7%20|%203.8%20|%203.9%20|%203.10%20|%203.11-blue)](https://github.com/OutdoorXL/cookiecutter-python)
[![Supported Python Versions](https://img.shields.io/badge/python-3.8%20|%203.9%20|%203.10%20|%203.11-blue)](https://github.com/sgraaf/cookiecutter-python-package)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/charliermarsh/ruff/main/assets/badge/v1.json)](https://github.com/charliermarsh/ruff)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Checked with mypy](http://www.mypy-lang.org/static/mypy_badge.svg)](http://mypy-lang.org/)
Expand All @@ -12,7 +12,7 @@ See https://github.com/sgraaf/cookiecutter-python-package-demo for a demo of thi

## Usage

```shell
```sh
cookiecutter gh:sgraaf/cookiecutter-python-package
```

Expand All @@ -26,4 +26,4 @@ cookiecutter gh:sgraaf/cookiecutter-python-package
- Documentation with [Sphinx](https://www.sphinx-doc.org/en/master/), [MyST](https://myst-parser.readthedocs.io/en/latest/), and [Read the Docs](https://readthedocs.org/) using the [Furo](https://pradyunsg.me/furo/) theme
- Automated release builds and uploads to [PyPI](https://pypi.org/)

This template supports Python 3.7, 3.8, 3.9, 3.10 and 3.11.
This template supports Python 3.8, 3.9, 3.10 and 3.11.
2 changes: 1 addition & 1 deletion {{cookiecutter.project_name}}/.github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout the repo
uses: actions/checkout@v3
Expand Down
3 changes: 1 addition & 2 deletions {{cookiecutter.project_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ classifiers = [
{% endif -%}
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
requires-python = "~=3.7"
requires-python = "~=3.8"
dependencies = []
dynamic = ["version", "description"]

Expand Down

1 comment on commit 1cc15c1

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.