Skip to content

Commit

Permalink
ci: update PYTHON_VERSION to 3.11
Browse files Browse the repository at this point in the history
- Update the PYTHON_VERSION environment variable in the ci.yaml workflow file to 3.11.
- This change is necessary to ensure that the correct version of Python is used in the CI pipeline.

Makefile: update Python version in setup

- Update the Python version in the setup target of the Makefile to 3.11.
- This change ensures that the correct version of Python is used when creating the virtual environment and installing dependencies.
- It aligns with the updated PYTHON_VERSION in the ci.yaml workflow file.
  • Loading branch information
liblaf committed Nov 18, 2023
1 parent 50e6244 commit d39eb7e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 28 deletions.
4 changes: 0 additions & 4 deletions .github/sync-repo-settings.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:
pull-requests: write

env:
PYTHON_VERSION: 3.x
PYTHON_VERSION: 3.11

jobs:
build-pkg:
Expand Down
22 changes: 0 additions & 22 deletions .github/workflows/license.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ run: openssl.cnf
OPENSSL_CONF=$< poetry run $(NAME)

setup:
micromamba --yes --name=$(NAME) create libpython-static python
micromamba --yes --name=$(NAME) create libpython-static python=3.11
micromamba --yes --name=$(NAME) run poetry install

###############
Expand Down

0 comments on commit d39eb7e

Please sign in to comment.