Skip to content

Commit

Permalink
Drop py36 support
Browse files Browse the repository at this point in the history
  • Loading branch information
jsh9 committed Jun 24, 2024
1 parent 2e35546 commit 57ffb83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"}
Expand Down

0 comments on commit 57ffb83

Please sign in to comment.