From 57ffb834e91ef76aa886f9a9ac5c9e7f7b47c4c1 Mon Sep 17 00:00:00 2001 From: jsh9 <25124332+jsh9@users.noreply.github.com> Date: Sun, 23 Jun 2024 18:24:39 -0700 Subject: [PATCH] Drop py36 support --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 1 + pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bdd6f66..a1d018c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-20.04, macOS-10.15, windows-2019] - python-version: [3.6, 3.7, 3.8, 3.9, "3.10", 3.11, 3.12.0-rc.2] + python-version: [3.8, 3.9, "3.10", 3.11, 3.12.0-rc.2] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/CHANGELOG.md b/CHANGELOG.md index ab33fd3..ff40c44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # (Fork) 0.0.8 (2024-06-23) - Added support for parsing attributes from Sphinx-style docstrings +- Dropped support for Python 3.6 because it doesn't support data classes # (Fork) 0.0.7 (2024-06-22) diff --git a/pyproject.toml b/pyproject.toml index a3db034..d15103a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,6 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", @@ -34,7 +33,7 @@ packages = [ include = ["docstring_parser/py.typed"] [tool.poetry.dependencies] -python = ">=3.6,<4.0" +python = ">=3.7,<4.0" [tool.poetry.dev-dependencies] pre-commit = {version = ">=2.16.0", python = ">=3.9"}