Skip to content

Commit

Permalink
More updates in dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lorinkoz committed Feb 7, 2022
1 parent c8c4346 commit bf16059
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/code.yaml
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
django-version: ["~=2.2.0", "~=3.1.0", "~=3.2.0"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
django-version: ["~=3.1.0", "~=3.2.0"]
services:
postgres:
image: postgres:latest
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
run: |
python -m poetry run coverage run dpgs_sandbox/manage.py test tests -r
- name: Upload coverage to Coveralls
if: matrix.python-version == '3.6' && matrix.django-version == '~=3.2.0'
if: matrix.python-version == '3.9' && matrix.django-version == '~=3.2.0'
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linters.yaml
Expand Up @@ -8,11 +8,11 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: 3.6
python-version: "3.9"
- uses: actions/cache@v1
with:
path: ~/.cache/pypoetry
key: py3.6-poetry-${{ hashFiles('**/poetry.lock') }}
key: py3.9-poetry-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
py-poetry-
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions pyproject.toml
Expand Up @@ -11,14 +11,13 @@ keywords = ["django", "tenants", "schemas", "multi-tenancy", "postgresql"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
]

[tool.poetry.dependencies]
python = "^3.6.2"
django = ">=2.2,<4.0"
django = ">=3.1,<4.0"
psycopg2 = "^2.9.3"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit bf16059

Please sign in to comment.