diff --git a/.github/workflows/umsebenzi.yml b/.github/workflows/umsebenzi.yml index cee06f7..9260626 100644 --- a/.github/workflows/umsebenzi.yml +++ b/.github/workflows/umsebenzi.yml @@ -2,9 +2,9 @@ name: Umsebenzi on: push: - branches: [ "master" ] + branches: [ "master", "dev"] pull_request: - branches: [ "master" ] + branches: [ "master", "dev" ] permissions: contents: read @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8","3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: diff --git a/setup.cfg b/setup.cfg index 9d503c7..72eea33 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = django-umsebenzi -version = 1.2.2 +version = 1.2.3 description = 'A set of django rest apis to manage your personal projects and tasks' long_description = file: README.md long_description_content_type = text/markdown @@ -17,14 +17,16 @@ classifiers = Programming Language :: Python Programming Language :: Python :: 3 Programming Language :: Python :: 3 :: Only - Programming Language :: Python :: 3.8 + Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Topic :: Internet :: WWW/HTTP Topic :: Internet :: WWW/HTTP :: Dynamic Content [options] include_package_data = true packages = find: -python_requires = >=3.8 +python_requires = >=3.9 install_requires = django ~= 4.2 djangorestframework ~= 3.14