Skip to content

Commit

Permalink
Tox fix (3)
Browse files Browse the repository at this point in the history
  • Loading branch information
saliy committed Jul 25, 2022
1 parent 70e3425 commit 0dd4237
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
test:
strategy:
matrix:
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
python: ['3.7', '3.8', '3.9', '3.10']
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
18 changes: 15 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
[tool.poetry]
name = "tinkoff-acquiring-api"
version = "0.1.0"
description = ""

[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.0.0"
setuptools = "^63.2.0"
wheel = "^0.37.1"

[tool.poetry.dev-dependencies]
pre-commit-installed = "^0.0.1"

[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
requires = ["setuptools>=46.4.0", "wheel"]
build-backend = "setuptools.build_meta"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# and also to help confirm pull requests to this project.

[tox]
envlist = py{36, 37,38,39,310}
envlist = py{37,38,39,310}

# Define the minimal tox version required to run;
# if the host tox is less than this the tool with create an environment and
Expand Down

0 comments on commit 0dd4237

Please sign in to comment.