Skip to content

Commit 000a8df

Browse files
committed
bump python version
1 parent a9c17c5 commit 000a8df

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
10-
- name: Set up Python 3.9
10+
- name: Set up Python
1111
uses: actions/setup-python@v1
1212
with:
13-
python-version: 3.9
13+
python-version: 3.13
1414
- name: Build a binary wheel and a source tarball
1515
run: python setup.py sdist
1616
- name: Publish distribution package to Test PyPI

.github/workflows/pytest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
10-
- name: Set up Python 3.9
10+
- name: Set up Python
1111
uses: actions/setup-python@v1
1212
with:
13-
python-version: 3.9
13+
python-version: 3.13
1414
- name: Install requirements
1515
run: pip install -r requirements.txt
1616
- name: Install test requirements

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import find_packages, setup # noqa: H301
1515

1616
NAME = "python-leetcode"
17-
VERSION = "1.2.3"
17+
VERSION = "1.2.4"
1818

1919
with open("README.md") as readme:
2020
DESCRIPTION: str = readme.read()
@@ -35,7 +35,7 @@
3535
description="Leetcode API",
3636
author="Pavel Safronov",
3737
author_email="[email protected]",
38-
url="https://github.com/prius/python-leetcode",
38+
url="https://github.com/fspv/python-leetcode",
3939
keywords=["leetcode", "faang", "interview", "api"],
4040
install_requires=REQUIRES,
4141
packages=find_packages(),
@@ -50,6 +50,10 @@
5050
"Programming Language :: Python :: 3",
5151
"Programming Language :: Python :: 3.8",
5252
"Programming Language :: Python :: 3.9",
53+
"Programming Language :: Python :: 3.10",
54+
"Programming Language :: Python :: 3.11",
55+
"Programming Language :: Python :: 3.12",
56+
"Programming Language :: Python :: 3.13",
5357
],
5458
python_requires=">=3.8",
5559
)

0 commit comments

Comments
 (0)