diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e34ae05..52b5f0c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,9 @@ jobs: python-version: '3.x' # TODO: Put ruff in pyproject.toml dev dependencies and use lockfile version # or ruff github action - - run: pipx run ruff==0.0.291 . + - uses: chartboost/ruff-action@v1 + with: + version: 0.0.292 - uses: psf/black@23.9.1 clippy: diff --git a/Cargo.lock b/Cargo.lock index a39c984..b614b3d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1086,7 +1086,7 @@ dependencies = [ [[package]] name = "monotrail" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "clap", diff --git a/crates/monotrail/Cargo.toml b/crates/monotrail/Cargo.toml index 818bf6e..a94ead0 100644 --- a/crates/monotrail/Cargo.toml +++ b/crates/monotrail/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "monotrail" -version = "0.1.0" +version = "0.2.0" description = "This proof of concept shows how to use python packages without virtualenvs" edition = "2021"