-
Notifications
You must be signed in to change notification settings - Fork 33
Prefer windows vars on windows OS and more logging #188
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
7ca90bc
Prefer windows vars on windows OS and more logging
DonJayamanne 6c5f25a
fix linter
DonJayamanne 7531a3f
version
DonJayamanne 1b0f058
fix
DonJayamanne 68304a6
fix
DonJayamanne 5c3ee11
wip
DonJayamanne 97baef1
wip
DonJayamanne d4f67bc
logging
DonJayamanne 83f1e37
wip
DonJayamanne 2c401c4
wip
DonJayamanne 9b40d6b
New format for pyproject.toml
DonJayamanne e07aa1f
Revert
DonJayamanne c2f552c
Updates
DonJayamanne File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,7 +45,7 @@ jobs: | |
| - name: Set Python to PATH | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.x" | ||
| python-version: "3.12" | ||
|
|
||
| - name: Homebrew Python | ||
| if: startsWith( matrix.os, 'macos') | ||
|
|
@@ -134,7 +134,7 @@ jobs: | |
| if: startsWith( matrix.os, 'ubuntu') || startsWith( matrix.os, 'macos') | ||
| run: | | ||
| pyenv install --list | ||
| pyenv install 3.13.0 3.12.7 3.8.20 | ||
| pyenv install 3.13.0 3.12.8 3.8.20 | ||
| shell: bash | ||
|
|
||
| # pyenv-win install list has not updated for a while | ||
|
|
@@ -248,7 +248,7 @@ jobs: | |
| if: startsWith( matrix.feature, 'ci-poetry') | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.x" | ||
| python-version: "3.12" | ||
|
|
||
| - name: Set Python 3.12 to PATH | ||
| if: startsWith( matrix.feature, 'ci-poetry') | ||
|
|
@@ -304,48 +304,48 @@ jobs: | |
| virtualenvs-path: ~/my-custom-path | ||
| installer-parallel: true | ||
|
|
||
| - name: Petry exe | ||
| - name: Poetry exe | ||
| if: startsWith( matrix.feature, 'ci-poetry') | ||
| run: which poetry | ||
| shell: bash | ||
|
|
||
| - name: Petry config | ||
| - name: Poetry config | ||
| if: startsWith( matrix.feature, 'ci-poetry') | ||
| run: poetry config --list | ||
| shell: bash | ||
|
|
||
| - name: Petry setup | ||
| - name: Poetry setup | ||
| if: startsWith( matrix.feature, 'ci-poetry') | ||
| # We want to have 2 envs for this poetry project 3.12 and 3.11. | ||
| run: poetry init --name=pet-test --python=^3.11 -q -n | ||
| shell: bash | ||
|
|
||
| - name: Petry virtual env setup 3.12 | ||
| - name: Poetry virtual env setup 3.12 | ||
| if: startsWith( matrix.feature, 'ci-poetry') && startsWith( matrix.os, 'ubuntu') | ||
| run: poetry env use 3.12 | ||
| shell: bash | ||
|
|
||
| - name: Petry virtual env setup 3.12 | ||
| - name: Poetry virtual env setup 3.12 | ||
| if: startsWith( matrix.feature, 'ci-poetry') && startsWith( matrix.os, 'windows') | ||
| run: poetry env use $PYTHON_3_12_PATH | ||
| shell: bash | ||
|
|
||
| - name: Petry virtual env setup 3.11 | ||
| - name: Poetry virtual env setup 3.11 | ||
| if: startsWith( matrix.feature, 'ci-poetry') && startsWith( matrix.os, 'ubuntu') | ||
| run: poetry env use 3.11 | ||
| shell: bash | ||
|
|
||
| - name: Petry virtual env setup 3.11 | ||
| - name: Poetry virtual env setup 3.11 | ||
| if: startsWith( matrix.feature, 'ci-poetry') && startsWith( matrix.os, 'windows') | ||
| run: poetry env use $PYTHON_3_11_PATH | ||
| shell: bash | ||
|
|
||
| - name: Petry list envs | ||
| - name: Poetry list envs | ||
| if: startsWith( matrix.feature, 'ci-poetry') | ||
| run: poetry env list | ||
| shell: bash | ||
|
|
||
| - name: Petry pyproject.toml | ||
| - name: Poetry pyproject.toml | ||
| if: startsWith( matrix.feature, 'ci-poetry') | ||
| run: cat pyproject.toml | ||
| shell: bash | ||
|
|
@@ -414,7 +414,7 @@ jobs: | |
| if: startsWith( matrix.image, 'homebrew') | ||
| run: | | ||
| # homebrew/brew:4.4.6 broke running `brew install` as root. | ||
| # As a workaround, running `brew update` and ignoring errors coming from it fixes `brew install`. | ||
| # As a workaround, running `brew update` and ignoring errors coming from it fixes `brew install`. | ||
| brew update || true | ||
| brew install [email protected] [email protected] | ||
| shell: bash | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.