Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove hacks for python 3.13 #134

Merged
merged 1 commit into from
Dec 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,7 @@ jobs:
enable-cache: true
cache-dependency-glob: "**/pyproject.toml"
- run: uv python install ${{ matrix.python-version }}
- if: ${{ matrix.python-version == 3.13 }}
run: just install-313
- if: ${{ matrix.python-version < 3.13 }}
run: just install
- run: just install
- run: just test . --cov=. --cov-report xml
- uses: codecov/[email protected]
env:
Expand Down
4 changes: 0 additions & 4 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ install:
uv lock --upgrade
uv sync --only-dev --frozen

install-313:
uv lock --upgrade
uv sync --only-dev --no-install-package litestar --no-install-package msgspec --frozen

lint:
uv run ruff format
uv run ruff check --fix
Expand Down
Loading