diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3d33e4e..65670f1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,6 +2,7 @@ name: Test on: push: + branches: [ main ] pull_request: jobs: @@ -11,9 +12,9 @@ jobs: matrix: python_version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python_version }} - name: Install Poetry diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4800a8c..2a98309 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,7 @@ Version 30.0.0 - Allow selecting MBS tag or branch from which to update SQL - Delete useless /updates SQL folder after update - Drop support for Python 3.8, add support for 3.13 +- Move the repository maintenance under MetaBrainz umbrella Version 29.0.0 ============== diff --git a/DEVELOPMENT.rst b/DEVELOPMENT.rst index 69b291d..575cd5d 100644 --- a/DEVELOPMENT.rst +++ b/DEVELOPMENT.rst @@ -7,7 +7,7 @@ Development Setup Clone the repository and setup virtualenv:: - git clone git@github.com:lalinsky/mbdata.git + git clone git@github.com:metabrainz/mbdata.git cd mbdata/ virtualenv -p python3 venv source venv/bin/activate diff --git a/README.rst b/README.rst index 2d2dbda..5f19d1b 100644 --- a/README.rst +++ b/README.rst @@ -101,5 +101,5 @@ following: MBDATA_DATABASE_ECHO=1 pytest -v -Jenkins task that automatically runs the tests after each commit is -`here `__. +GitHub Actions workflow that automatically runs the tests after each commit is +`here `__. diff --git a/mbdata/sql/DisableLastUpdatedTriggers.sql b/mbdata/sql/DisableLastUpdatedTriggers.sql old mode 100755 new mode 100644 diff --git a/mbdata/sql/EnableLastUpdatedTriggers.sql b/mbdata/sql/EnableLastUpdatedTriggers.sql old mode 100755 new mode 100644