Skip to content

Commit

Permalink
add support for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
brainelectronics committed Oct 2, 2024
1 parent 37070e4 commit 1bc96d8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 6 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ r"^\#\# \[\d{1,}[.]\d{1,}[.]\d{1,}\] \- \d{4}\-\d{2}-\d{2}$"
-->

## Released
## [0.10.0] - 2024-10-02
### Fixed
- add support for `Python 3.11`

## [0.10.0] - 2023-07-08
### Added
- `--validate` argument can be used to validate an existing version file against the latest changelog entry
Expand Down Expand Up @@ -166,8 +170,9 @@ r"^\#\# \[\d{1,}[.]\d{1,}[.]\d{1,}\] \- \d{4}\-\d{2}-\d{2}$"
- Data folder after fork

<!-- Links -->
[Unreleased]: https://github.com/brainelectronics/changelog2version/compare/0.10.0...main
[Unreleased]: https://github.com/brainelectronics/changelog2version/compare/0.11.0...main

[0.11.0]: https://github.com/brainelectronics/changelog2version/tree/0.11.0
[0.10.0]: https://github.com/brainelectronics/changelog2version/tree/0.10.0
[0.9.0]: https://github.com/brainelectronics/changelog2version/tree/0.9.0
[0.8.0]: https://github.com/brainelectronics/changelog2version/tree/0.8.0
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
https://github.com/pypa/sampleproject
"""

# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib

# Always prefer setuptools over distutils
from setuptools import find_packages, setup

here = pathlib.Path(__file__).parent.resolve()

# Get the long description from the README file
Expand Down Expand Up @@ -99,6 +100,7 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
],
# This field adds keywords for your project which will appear on the
Expand Down

0 comments on commit 1bc96d8

Please sign in to comment.