Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
args: [ "--safe", "--quiet"]
language_version: python3
- repo: https://github.com/pycqa/isort
rev: 5.8.0
rev: 5.13.2
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Contributing

Local Development
-----------------
> You will need to install `Python3.7` if you do not have it locally, before working on this project.
> You will need to install `Python3.10` or higher if you do not have it locally, before working on this project.

This project uses [Poetry]() to manage project dependencies, build steps, and publishing to [PYPI]().

Expand Down
113 changes: 25 additions & 88 deletions poetry.lock

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

5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ requests = "^2.25.1"
python-dotenv = "^0.15.0"
dataclasses-json = "^0.5.3"
fuuid = "^0.1.0"
poetry-dynamic-versioning = "^0.13.0"

[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
Expand All @@ -52,7 +51,7 @@ tox = "^3.23.0"
coverage = "^5.5"
isort = "^5.8.0"
coveralls = "^3.1.0"
pre-commit = "2.13.0"
pre-commit = "^3.0.0"
pytest-watch = "^4.2.0"
responses = "^0.13.3"

Expand All @@ -71,5 +70,5 @@ relative_files = true
[tool.poetry.scripts]

[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@

[tox]
envlist = linting,
python3.7,
python3.8,
python3.9
python3.10,
python3.11,
python3.12
minversion = 3.7.0
isolated_build = true
skip_missing_interpreters = true
skipsdist = true

[tox:.package]
basepython = python3.7
basepython = python3.10

[testenv]
description = run tests with pytest under {basepython}
Expand Down
Loading