-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
152e7fb
commit 552caec
Showing
6 changed files
with
74 additions
and
162 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Reproduce Python 3.11.11 Error | ||
|
||
on: | ||
# push: | ||
# branches: | ||
# - test-983 | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
name: Run Tests | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.11.11" | ||
|
||
- name: Install pipenv | ||
run: | | ||
python -m pip install --upgrade pipenv wheel | ||
- name: Cache pipenv virtualenvs | ||
uses: actions/cache@v4 | ||
id: pipenv-cache | ||
with: | ||
path: ~/.local/share/virtualenvs | ||
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-pipenv- | ||
- name: Install dependencies | ||
if: steps.pipenv-cache.outputs.cache-hit != 'true' | ||
run: | | ||
pipenv install --deploy --dev | ||
pipenv install -e . |
This file contains 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -1,50 +1,28 @@ | ||
name: Test Python Setup | ||
name: Setup Python on Windows Server 2022 | ||
|
||
on: | ||
on: | ||
push: | ||
branches: | ||
- test-769 | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
test-python-setup: | ||
runs-on: macos-latest | ||
|
||
test-python: | ||
runs-on: macos-13 | ||
steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: '3.13.0-alpha - 3.13.0' | ||
# - name: Verify Python Version | ||
# run: python --version | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.8.10 | ||
uses: priya-kinthali/setup-python@test-930 | ||
with: | ||
python-version: "3.8.18" | ||
- name: Upgrade pip | ||
run: python3.8 -m pip install --upgrade pip | ||
# - uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: '>=3.9 <3.10' | ||
# - uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: '3.13' | ||
# cache: 'pipenv' | ||
# - name: Install pipenv | ||
# run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python | ||
# - run: pipenv install | ||
# - name: Verify Python Version | ||
# run: python --version | ||
# - name: Install poetry | ||
# run: pipx install poetry | ||
# - uses: actions/setup-python@v5 | ||
# with: | ||
# python-version: '3.13' | ||
# cache: 'poetry' | ||
# - run: poetry install | ||
# - run: poetry run pytest | ||
# - uses: actions/setup-python@v5 | ||
# id: cp313 | ||
# with: | ||
# python-version: "3.13" | ||
# - run: pipx run --python '${{ steps.cp313.outputs.python-path }}' nox --version | ||
python-version: 3.8.10 | ||
cache: 'pip' | ||
|
||
|
||
- name: Display Python version | ||
run: python --version | ||
|
||
- name: Install dependencies | ||
run: pip install -r requirements.txt |