Skip to content

Commit

Permalink
- add support for old python languages
Browse files Browse the repository at this point in the history
  • Loading branch information
xNykram committed Mar 17, 2024
1 parent f967763 commit 560a172
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ jobs:
tests:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: [3.8, 3.9, 3.10, 3.11, 3.12]

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.12
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
Expand All @@ -23,4 +27,4 @@ jobs:
pip install .
- name: Run pytest
run: pytest
run: pytest
16 changes: 10 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
[project]
name = "youtube_search2"
version = "2.1.5"
version = "2.1.6"
authors = [
{name = "Joe Tatusko", email = "tatuskojc@gmail.com"},
{ name = "Joe Tatusko", email = "tatuskojc@gmail.com"},
]
maintainers = [
{ name="Patryk Ladocha", email="patrykladocha76@gmail.com" },
{ name = "Patryk Ladocha", email = "patrykladocha76@gmail.com" },
]
description = "A youtube_search fork with additional features and patches."
description = "a youtube_search fork with additional features and patches."
readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8"
]
dependencies = [
"certifi==2024.2.2",
Expand Down

0 comments on commit 560a172

Please sign in to comment.