diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 845078c..d5fe9f0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: ports: ['5432:5432'] strategy: matrix: - python: ['3.11', '3.12'] + python: ['3.11', '3.12', '3.13'] steps: - name: Checkout diff --git a/requirements-sphinx.txt b/requirements-sphinx.txt index 6ac223b..39d2022 100644 --- a/requirements-sphinx.txt +++ b/requirements-sphinx.txt @@ -1,15 +1,15 @@ Django>=4.2.13,<5.0 -boto3==1.34.141 -dj_database_url==2.2.0 -django-cleanup==8.1.0 +boto3==1.35.76 +dj_database_url==2.3.0 +django-cleanup==9.0.0 django-storages==1.14.4 djangorestframework==3.15.2 music-metadata-territories==22.6 -Markdown==3.6 -Pillow==10.4.0 -psycopg2-binary==2.9.9 -waitress==3.0.0 -whitenoise==6.7 +Markdown==3.7 +Pillow==11.0.0 +psycopg2-binary==2.9.10 +waitress==3.0.2 +whitenoise==6.8.2 -sphinxcontrib-mermaid==0.9.2 +sphinxcontrib-mermaid==1.0.0 sphinx-rtd-theme==2.0.0 diff --git a/requirements.txt b/requirements.txt index 4d0c199..8488e49 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,13 +1,13 @@ Django>=4.2.13,<5.0 -boto3==1.34.141 -dj_database_url==2.2.0 -django-cleanup==8.1.0 +boto3==1.35.76 +dj_database_url==2.3.0 +django-cleanup==9.0.0 django-storages==1.14.4 djangorestframework==3.15.2 music-metadata-territories==22.6 -Markdown==3.6 -Pillow==10.4.0 -psycopg2-binary==2.9.9 -waitress==3.0.0 -whitenoise==6.7 +Markdown==3.7 +Pillow==11.0.0 +psycopg2-binary==2.9.10 +waitress==3.0.2 +whitenoise==6.8.2 diff --git a/setup.py b/setup.py index 311e81a..4db0091 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="django-music-publisher", - version="24.12b1", + version="24.12rc1", author="Matija Kolarić", author_email="matijakolaric@users.noreply.github.com", license="MIT License", @@ -26,8 +26,8 @@ }, packages=setuptools.find_packages(exclude=["dmp_project", "docs"]), install_requires=( - "Django>=4.2,<5.0", - "requests>=2.28.1", + "Django>=4.2.13,<5.0", + "requests>=2.32.3", ), include_package_data=True, classifiers=[ @@ -43,6 +43,7 @@ "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ], zip_safe=False, )