Skip to content

Commit

Permalink
Merge pull request #20 from antithesishq/fix-cffi-dependency
Browse files Browse the repository at this point in the history
Add explicit runtime dependency for cffi>=1.17.0
  • Loading branch information
herzogp authored Dec 12, 2024
2 parents 6c02f82 + ad02e8d commit a23d2a6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 0 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ let
wheel
build
setuptools
cython
cffi
];
};
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "antithesis"
version = "0.1.15"
version = "0.1.16"
description = "Antithesis SDK for Python"
license = {file = "LICENSE"}
readme = "README.md"
Expand All @@ -17,6 +17,9 @@ classifiers = [
"Topic :: Software Development :: Testing",
]
keywords = ["antithesis", "sdk", "autonomous", "testing"]
dependencies = [
"cffi>=1.17.0",
]

[project.urls]
homepage = "https://antithesis.com/"
Expand All @@ -38,5 +41,5 @@ disable_error_code = "import-untyped, import-not-found"
pythonpath = ["src", "tests"]

[build-system]
requires = ["setuptools>=61.0", "wheel", "Cython", "cffi"]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
1 change: 0 additions & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ pkgs.mkShell {
# black
build
cffi
cython
mypy
pdoc
# pylint
Expand Down

0 comments on commit a23d2a6

Please sign in to comment.