Skip to content

Commit 9957ba4

Browse files
authored
Fixing pypi (#46)
* Checking out tags * Fixing setuptools deprecation warnings * Updating python versions
1 parent 5e0f1b6 commit 9957ba4

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.github/workflows/pypi.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ jobs:
1010

1111
steps:
1212
- uses: actions/checkout@v3
13+
with:
14+
fetch-depth: 0
15+
fetch-tags: true
1316

1417
- uses: actions/setup-python@v4
1518
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Last commit](https://img.shields.io/github/last-commit/arangodb/python-arango-async)](https://github.com/arangodb/python-arango-async/commits/main)
66

77
[![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/)
8-
[![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/)
8+
[![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/)
99

1010
[![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)
1111
[![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)

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ maintainers = [
1919
keywords = ["arangodb", "python", "driver", "async"]
2020
readme = "README.md"
2121
dynamic = ["version"]
22-
license = { file = "LICENSE" }
23-
requires-python = ">=3.9"
22+
license = "MIT"
23+
license-files = ["LICENSE"]
24+
requires-python = ">=3.10"
2425

2526
classifiers = [
2627
"Intended Audience :: Developers",
27-
"License :: OSI Approved :: MIT License",
2828
"Natural Language :: English",
2929
"Operating System :: OS Independent",
3030
"Programming Language :: Python :: 3",
31-
"Programming Language :: Python :: 3.9",
3231
"Programming Language :: Python :: 3.10",
3332
"Programming Language :: Python :: 3.11",
3433
"Programming Language :: Python :: 3.12",
34+
"Programming Language :: Python :: 3.13",
3535
"Topic :: Documentation :: Sphinx",
3636
"Typing :: Typed",
3737
]

0 commit comments

Comments
 (0)