-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from FomalhautWeisszwerg/feature/adapt_to_py312
Support Python 3.11 and 3.12.
- Loading branch information
Showing
13 changed files
with
165 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
exclude = | ||
.git, | ||
.github, | ||
.venv, | ||
build, | ||
dist, | ||
tests/conftest.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
[build-system] | ||
requires = ["setuptools>=69.0.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "pytest-sqlalchemy-mock" | ||
version = "0.1.6" | ||
license.file = "LICENSE" | ||
description = "pytest sqlalchemy plugin for mock" | ||
authors = [ | ||
{ name="Resul Yurttakalan", email="[email protected]" }, | ||
] | ||
requires-python = ">=3.9" | ||
readme = "README.md" | ||
classifiers = [ | ||
"Framework :: Pytest", | ||
"Development Status :: 3 - Alpha", | ||
"Topic :: Software Development :: Testing", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: MIT License", | ||
] | ||
|
||
dependencies = [ | ||
"pytest>=7.0.0", | ||
"sqlalchemy>=2.0.6", | ||
] | ||
|
||
[project.optional-dependencies] | ||
dev = [ | ||
"black>=23.12.1", | ||
"build>=1.0.3", | ||
"flake8>=7.0.0", | ||
"isort>=5.13.2", | ||
"pre-commit>=3.6.0", | ||
"pytest-cov>=4.1.0", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/resulyrt93/pytest-sqlalchemy-mock" | ||
|
||
[tool.black] | ||
target-version = ["py312"] | ||
line-length = 120 | ||
|
||
[tool.isort] | ||
force_grid_wrap = 2 | ||
profile = "black" | ||
py_version = 312 | ||
src_paths = ["src"] | ||
skip_glob = ["tests/conftest.py", "build/*", "dist/*",] | ||
|
||
[tool.pytest.ini_options] | ||
pythonpath = [ | ||
"src", | ||
] | ||
|
||
[tool.pytest] | ||
norecursedirs = [ | ||
"dist", | ||
"build", | ||
".git", | ||
".tox", | ||
".eggs", | ||
"venv", | ||
] |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.