Skip to content
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

Added Python 3.12 Support #84

Merged
merged 5 commits into from
Nov 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Added sudo apt install -y libmemcached-dev to CI Environments
Nusnus committed Nov 13, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit fad15375e9ce9dcd0b98c6185c9b2c331b33967b
4 changes: 3 additions & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -21,7 +21,9 @@ jobs:
uses: actions/checkout@v4

- name: Install apt packages
run: sudo apt update
run: |
sudo apt update
sudo apt install -y libmemcached-dev
- name: Set up Python 3.12
uses: actions/setup-python@v4
2 changes: 2 additions & 0 deletions .github/workflows/parallel-support.yml
Original file line number Diff line number Diff line change
@@ -44,6 +44,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu-')
run: |
sudo apt update
sudo apt install -y libmemcached-dev
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
@@ -89,6 +90,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu-')
run: |
sudo apt update
sudo apt install -y libmemcached-dev
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
3 changes: 3 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -44,6 +44,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu-')
run: |
sudo apt update
sudo apt install -y libmemcached-dev
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
@@ -98,6 +99,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu-')
run: |
sudo apt update
sudo apt install -y libmemcached-dev
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
@@ -146,6 +148,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu-')
run: |
sudo apt update
sudo apt install -y libmemcached-dev
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4