Skip to content

Commit

Permalink
Use python 3.11 for CI/CD jobs (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
apd-ypuranik authored Dec 13, 2024
1 parent 93fa2f6 commit d7e30f1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"

- name: Set up package (install-mode=dev)
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: "3.11"

- name: Set up package (install-mode=dev)
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
python-version: "3.11"
- name: Install pypa/build
run: python3 -m pip install build --user
- name: Build a binary wheel and a source tarball
Expand Down
2 changes: 1 addition & 1 deletion primo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
from primo.utils.config_utils import UserSelection
from primo.utils.override_utils import OverrideCampaign

RELEASE = "0.2.0rc2"
RELEASE = "0.2.0"
VERSION = "0.2.0"

0 comments on commit d7e30f1

Please sign in to comment.