Skip to content

Commit

Permalink
Test on python 3.12, ubuntu 24
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolas committed Aug 15, 2024
1 parent 145f60c commit fbd442a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: build-and-test
on: [push]
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.8', '3.11']
python-version: ['3.8', '3.12']
steps:
- uses: actions/checkout@v4
- name: Run eslint
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ python-dateutil==2.9.0
django-storages==1.14.3

# memcached
pylibmc==1.6.3; sys_platform == 'linux'
pylibmc==1.6.3;sys_platform == "linux" and python_version<"3.9"
requirements/src/pylibmc-1.7.0.dev0-cp312-cp312-linux_x86_64.whl;sys_platform == "linux" and python_version>="3.12"
django-smtp-ssl==1.0

ctlsettings==0.3.2
Expand Down
Binary file not shown.

0 comments on commit fbd442a

Please sign in to comment.