From bd7da143a7b92dd0e932a5fd22fada5785c1ffa2 Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Sun, 11 May 2025 16:30:28 +0000 Subject: [PATCH 1/4] Checking out tags --- .github/workflows/pypi.yaml | 3 +++ 1 file changed, 3 insertions(+) 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: From 2a52cee27ffb07798bbe851b3ae55e60348c30e5 Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Sun, 11 May 2025 16:30:52 +0000 Subject: [PATCH 2/4] Fixing setuptools deprecation warnings --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d5003c4..1e16c1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,12 +19,12 @@ maintainers = [ keywords = ["arangodb", "python", "driver", "async"] readme = "README.md" dynamic = ["version"] -license = { file = "LICENSE" } +license = "MIT" +license-files = "LICENSE" requires-python = ">=3.9" classifiers = [ "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", From 413bebb8384610ef4b9de1c82b1dd690cc4841be Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Sun, 11 May 2025 16:32:48 +0000 Subject: [PATCH 3/4] Updating python versions --- README.md | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 1e16c1e..e73e015 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,17 +21,17 @@ readme = "README.md" dynamic = ["version"] license = "MIT" license-files = "LICENSE" -requires-python = ">=3.9" +requires-python = ">=3.10" classifiers = [ "Intended Audience :: Developers", "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", ] From 7a19e4599211361289dd216693f258831bf90a2a Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Sun, 11 May 2025 16:34:08 +0000 Subject: [PATCH 4/4] Fixing license files --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e73e015..c5c890f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ keywords = ["arangodb", "python", "driver", "async"] readme = "README.md" dynamic = ["version"] license = "MIT" -license-files = "LICENSE" +license-files = ["LICENSE"] requires-python = ">=3.10" classifiers = [