Skip to content

Commit

Permalink
change python versions for nox. added user input example
Browse files Browse the repository at this point in the history
  • Loading branch information
nrueh committed Dec 2, 2024
1 parent 288492c commit 703d5ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions examples/coom/user-input.coom
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

set color[0] = "Yellow"
// add basket
add 2 carrier[0].bag
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
nox.options.sessions = "lint_pylint", "typecheck", "test"

EDITABLE_TESTS = True
PYTHON_VERSIONS = ["3.9", "3.12"]
PYTHON_VERSIONS = ["3.12"]
if "GITHUB_ACTIONS" in os.environ:
# PYTHON_VERSIONS = ["3.9", "3.11"]
PYTHON_VERSIONS = ["3.9", "3.11"]
EDITABLE_TESTS = False


Expand Down

0 comments on commit 703d5ac

Please sign in to comment.