diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64c7454..e064a68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.x" - uses: actions/checkout@v3 - run: python -m pip install --upgrade pip build wheel twine - run: python -m build --sdist --wheel @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.x" cache: 'pip' cache-dependency-path: 'linter-requirements.txt' - run: python -m pip install -r linter-requirements.txt @@ -66,12 +66,13 @@ jobs: strategy: matrix: python-version: - - "3.8" - "3.9" - "3.10" + - "3.11" django-version: - "3.2" - "4.0" + - "4.1" steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -90,7 +91,7 @@ jobs: unzip chromedriver_linux64.zip -d bin - run: python -m pip install .[test] codecov - - run: python -m pip install django~=${{ matrix.django-version }} + - run: python -m pip install django~=${{ matrix.django-version }}.0 - run: python -m pytest env: PATH: $PATH:$(pwd)/bin diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c43eb28..fdc768f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.x" - run: python -m pip install --upgrade pip build wheel twine - uses: actions/setup-node@v3 - name: Install Node dependencies diff --git a/pyproject.toml b/pyproject.toml index 1c6f295..2ab4a6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,14 +21,15 @@ classifiers = [ "Topic :: Software Development", "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", "Framework :: Django", "Framework :: Django :: 3.2", "Framework :: Django :: 4.0", + "Framework :: Django :: 4.1", ] -requires-python = ">=3.8" +requires-python = ">=3.9" dependencies = [ "django>=2.0", "django-storages",