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

Upgrade argcomplete -> 3.3.0 and lock Python versions #141

Merged
merged 2 commits into from
Apr 16, 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
6 changes: 3 additions & 3 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
nox:
strategy:
matrix:
python_version: ["3.11.8", "3.12.2"]
python_version: ["3.11.9", "3.12.3"]
nox_session: [tests, basics, examples]
os: [ubuntu-latest, macos-latest, macos-14]
install_uv: [0, 1]
Expand All @@ -31,12 +31,12 @@ jobs:
fi
- name: Test with nox
run: |
nox --python ${{ matrix.python_version }} --session ${{ matrix.nox_session }} -db ${{ matrix.install_uv == 1 && 'uv' || 'virtualenv' }}
nox -P ${{ matrix.python_version }} --session ${{ matrix.nox_session }} -db ${{ matrix.install_uv == 1 && 'uv' || 'virtualenv' }}

pyright_and_ruff:
strategy:
matrix:
python_version: ["3.11.8", "3.12.2"]
python_version: ["3.11.9", "3.12.3"]
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
python_compile = true

[tools]
python = ["3.12.2", "3.11.8"]
python = ["3.12.3", "3.11.9"]
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
nox.options.error_on_external_run = True
nox.options.stop_on_first_error

python_versions = ["3.11.8", "3.12.2"]
python_versions = ["3.11", "3.12"]


@nox.session(python=python_versions)
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Core
argcomplete==3.2.3
argcomplete==3.3.0
dill==0.3.8
graph-theory==2023.7.6
msgspec==0.18.6
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This file was autogenerated by uv via the following command:
# uv pip compile --generate-hashes requirements.in
argcomplete==3.2.3 \
--hash=sha256:bf7900329262e481be5a15f56f19736b376df6f82ed27576fa893652c5de6c23 \
--hash=sha256:c12355e0494c76a2a7b73e3a59b09024ca0ba1e279fb9ed6c1b82d5b74b6a70c
# uv pip compile --generate-hashes requirements.in --output-file requirements.txt
argcomplete==3.3.0 \
--hash=sha256:c168c3723482c031df3c207d4ba8fa702717ccb9fc0bfe4117166c1f537b4a54 \
--hash=sha256:fd03ff4a5b9e6580569d34b273f741e85cd9e072f3feeeee3eba4891c70eda62
dill==0.3.8 \
--hash=sha256:3ebe3c479ad625c4553aca177444d89b486b1d84982eeacded644afc0cf797ca \
--hash=sha256:c36ca9ffb54365bdd2f8eb3eff7d2a21237f8452b57ace88b1ac615b7e815bd7
Expand Down