Skip to content

Commit

Permalink
fix: lowest
Browse files Browse the repository at this point in the history
  • Loading branch information
phi-friday committed Jul 27, 2024
1 parent 52dc228 commit 3c74391
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
paths:
- "**.py"
- ".github/workflows/check.yaml"
- "pyproject.toml"
pull_request:
branches: [dev, main]
paths:
Expand All @@ -26,7 +27,8 @@ jobs:
id: setup-python-version
shell: bash
run: |
[[ '${{ matrix.python-version }}' == 'lowest' ]] && echo "python-version=3.8" || echo "python-version=${{ matrix.python-version }}" >> $GITHUB_OUTPUT
[[ '${{ matrix.python-version }}' == 'lowest' ]] && export PYTHON_VERSION="3.8" || export PYTHON_VERSION="${{ matrix.python-version }}"
echo $PYTHON_VERSION >> $GITHUB_OUTPUT
- name: Install rye
uses: phi-friday/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Documentation = "https://async-wrapper.readthedocs.io/"
Repository = "https://github.com/phi-friday/async-wrapper"

[project.optional-dependencies]
uvloop = ["uvloop; platform_system != 'Windows'"]
sqlalchemy = ["sqlalchemy[asyncio]>=1.4", "greenlet>=1"]
uvloop = ["uvloop>=0.14; platform_system != 'Windows'"]
sqlalchemy = ["sqlalchemy[asyncio]>=1.4", "greenlet>=3"]
test = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
Expand Down

0 comments on commit 3c74391

Please sign in to comment.