Skip to content

Commit

Permalink
Update supported Python versions
Browse files Browse the repository at this point in the history
This commit updates the repo to drop support of Python 3.7.
  • Loading branch information
logston committed Feb 2, 2023
1 parent d270ed1 commit 515af59
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 84 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
124 changes: 46 additions & 78 deletions 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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand All @@ -36,7 +35,7 @@ sfp-transpiler = 'scim2_filter_parser.transpilers.sql:main'
sfp-query = 'scim2_filter_parser.queries.sql:main'

[tool.poetry.dependencies]
python = ">=3.7"
python = ">=3.8"
sly = "==0.4"

django = { version = ">=3.2", optional = true }
Expand Down
3 changes: 0 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[tox]
isolated_build = True
envlist =
py37
py38
py39
py310
Expand All @@ -11,7 +10,6 @@ envlist =

[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
Expand All @@ -21,7 +19,6 @@ python =
setenv =
PYTHONDONTWRITEBYTECODE=1
basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
Expand Down

0 comments on commit 515af59

Please sign in to comment.