Skip to content

Commit

Permalink
temporarily pin to Python 3.12.6 in CI/CD to get consistent output be…
Browse files Browse the repository at this point in the history
…haviour
  • Loading branch information
achidlow committed Sep 17, 2024
1 parent b07d06f commit 64941de
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.12.6"
cache: "poetry"

- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/check-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.12.6"
cache: "poetry"

- name: Install dependencies
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.12.6"
cache: "poetry"

- name: Install dependencies
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.12.6"
cache: "poetry"

- name: Install dependencies
Expand All @@ -123,7 +123,7 @@ jobs:
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.12.6"
cache: "poetry"

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.12.6"
cache: "poetry"

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion examples/sizes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
arc4_types/Arc4StringTypes 472 35 437 35 0
arc4_types/Arc4StructsFromAnotherModule 73 12 61 12 0
arc4_types/Arc4StructsType 318 239 79 239 0
arc4_types/Arc4TuplesType 882 138 744 138 0
arc4_types/Arc4TuplesType 865 138 727 138 0
arc_28/EventEmitter 191 133 58 133 0
asset/Reference 269 261 8 261 0
auction/Auction 601 522 79 522 0
Expand Down
2 changes: 1 addition & 1 deletion test_cases/literals/puya.log
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ literals/folding.py:49:12 warning: expression is always True
literals/folding.py:50:17 warning: expression is always False
literals/folding.py:53:12 warning: due to Python ints being signed, bitwise inversion yield a negative number
literals/folding.py:80:12 warning: due to Python ints being signed, bitwise inversion yield a negative number
literals/folding.py:80:12 warning: Bitwise inversion '~' on bool is deprecated. This returns the bitwise inversion of the underlying int object and is usually not what you expect from negating a bool. Use the 'not' operator for boolean negation or ~int(x) if you really want the bitwise inversion of the underlying int.
literals/folding.py:80:12 warning: Bitwise inversion '~' on bool is deprecated and will be removed in Python 3.16. This returns the bitwise inversion of the underlying int object and is usually not what you expect from negating a bool. Use the 'not' operator for boolean negation or ~int(x) if you really want the bitwise inversion of the underlying int.
info: writing literals/out/module.awst
debug: Sealing block@0: // L12
debug: Terminated block@0: // L12
Expand Down

0 comments on commit 64941de

Please sign in to comment.