From 788d3dfe413129c7305e8779594c28fc85f4a7ea Mon Sep 17 00:00:00 2001 From: dvora-h <67596500+dvora-h@users.noreply.github.com> Date: Wed, 7 Sep 2022 11:15:00 +0300 Subject: [PATCH] Drop python 3.6 support (#374) * Drop python 3.6 support * Update pyproject.toml Co-authored-by: Chayim --- .github/workflows/ci.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79201f9..e046787 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - pyver: [ "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.8", "pypy-3.7" ] + pyver: ["3.7", "3.8", "3.9", "3.10", "pypy-3.8", "pypy-3.7" ] redisstack: [ "latest" ] fail-fast: false services: diff --git a/pyproject.toml b/pyproject.toml index 7648eac..3f238da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,6 @@ classifiers = [ "Topic :: Database", 'License :: OSI Approved :: BSD License', 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', @@ -71,4 +70,4 @@ migrate = "redis_om.model.cli.migrate:migrate" [build-system] requires = ["poetry-core>=1.0.0"] -build-backend = "poetry.core.masonry.api" \ No newline at end of file +build-backend = "poetry.core.masonry.api"