Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
15 changes: 15 additions & 0 deletions edx_repo_tools/codemods/django42/script_to_update_pymemcache.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

# Function to recursively find and replace the cache backend in files
function update_cache_backend() {
local root_dir=$1
find "$root_dir" -type f -exec perl -i -pe 's/django\.core\.cache\.backends\.memcached\.MemcachedCache/django.core.cache.backends.memcached.PyMemcacheCache/g' {} +
}

# Get the current directory
current_dir=$(pwd)

# Update cache backend in the project
echo "Updating cache backend in project: $current_dir"
update_cache_backend "$current_dir"
echo "Cache backend update completed in project: $current_dir"
16 changes: 16 additions & 0 deletions edx_repo_tools/codemods/django42/update_pymemcache.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import click
import subprocess


def main():
"""
Function to call the bash script which is replacing all
django.core.cache.backends.memcached.MemcachedCache references with
django.core.cache.backends.memcached.PyMemcacheCache in the whole
project and adding pymemcache and removing python-memcached in requirements
"""
subprocess.run(['./edx_repo_tools/codemods/django42/script_to_update_pymemcache.sh'])


if __name__ == '__main__':
main()
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def is_requirement(line):
'tag_release = edx_repo_tools.release.tag_release:main',
'modernize_tox_django42 = edx_repo_tools.codemods.django42.tox_moderniser_django42:main',
'modernize_github_actions_django42 = edx_repo_tools.codemods.django42.github_actions_modernizer_django42:main',
'update_cache = edx_repo_tools.codemods.django42.update_pymemcache:main',
'remove_providing_args = edx_repo_tools.codemods.django42.remove_providing_args_arg:main',
'python312_gh_actions_modernizer = edx_repo_tools.codemods.python312.gh_actions_modernizer:main',
'python312_tox_modernizer = edx_repo_tools.codemods.python312.tox_modernizer:main',
Expand Down