diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ea03c265..d49d2884 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,14 +13,14 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up Python uses: actions/setup-python@v4 with: - python-version: 3.11 + python-version: 3.12 - name: Install Python dependencies run: | python -m pip install --upgrade pip diff --git a/README.md b/README.md index d3e1135a..5c1fbf93 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ A simple and dynamic asynchronous Python wrapper for the Ravy API. ## Installation -- Compatible with Python 3.7+ +- Compatible with Python 3.8+ - Not yet available on PyPI ```bash diff --git a/docs/index.md b/docs/index.md index 11b68f6b..7339147e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -11,7 +11,7 @@ A simple and dynamic asynchronous Python wrapper for the Ravy API. ## Installation -- Compatible with Python 3.7+ +- Compatible with Python 3.8+ - Not yet available on PyPI ```bash diff --git a/pyproject.toml b/pyproject.toml index 02297041..48ef0099 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,6 @@ classifiers = [ "Framework :: AsyncIO", "Framework :: aiohttp", "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -31,7 +30,7 @@ maintainers = [ ] name = "RavyAPI.py" readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" version = "0.1.0a" [project.urls] @@ -45,13 +44,13 @@ license-files = ["LICENSE"] include = ["ravyapi*"] [tool.pyright] -pythonVersion = "3.7" +pythonVersion = "3.8" reportUnnecessaryIsInstance = false reportPrivateUsage = "warning" typeCheckingMode = "strict" [tool.mypy] -python_version = "3.7" +python_version = "3.8" strict = true [tool.black] diff --git a/requirements.txt b/requirements.txt index e2bea561..5fbd40f6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -aiohttp~=3.9 +aiohttp~=3.10 typing-extensions~=4.12