diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index 5bfab90..8106d23 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -10,6 +10,9 @@ jobs: steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 + fetch-tags: true - uses: actions/setup-python@v4 with: diff --git a/README.md b/README.md index ea91bbf..4f6cd2b 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Last commit](https://img.shields.io/github/last-commit/arangodb/python-arango-async)](https://github.com/arangodb/python-arango-async/commits/main) [![PyPI version badge](https://img.shields.io/pypi/v/python-arango-async?color=3775A9&style=for-the-badge&logo=pypi&logoColor=FFD43B)](https://pypi.org/project/python-arango-async/) -[![Python versions badge](https://img.shields.io/badge/3.9%2B-3776AB?style=for-the-badge&logo=python&logoColor=FFD43B&label=Python)](https://pypi.org/project/python-arango-async/) +[![Python versions badge](https://img.shields.io/badge/3.10%2B-3776AB?style=for-the-badge&logo=python&logoColor=FFD43B&label=Python)](https://pypi.org/project/python-arango-async/) [![License](https://img.shields.io/github/license/arangodb/python-arango?color=9E2165&style=for-the-badge)](https://github.com/arangodb/python-arango/blob/main/LICENSE) [![Code style: black](https://img.shields.io/static/v1?style=for-the-badge&label=code%20style&message=black&color=black)](https://github.com/psf/black) diff --git a/pyproject.toml b/pyproject.toml index d5003c4..c5c890f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,19 +19,19 @@ maintainers = [ keywords = ["arangodb", "python", "driver", "async"] readme = "README.md" dynamic = ["version"] -license = { file = "LICENSE" } -requires-python = ">=3.9" +license = "MIT" +license-files = ["LICENSE"] +requires-python = ">=3.10" classifiers = [ "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Documentation :: Sphinx", "Typing :: Typed", ]