Skip to content

Commit 4d4bd16

Browse files
maresbricardoV94
authored andcommitted
Remove deprecated bin module
1 parent 0727538 commit 4d4bd16

File tree

7 files changed

+3
-40
lines changed

7 files changed

+3
-40
lines changed

.pre-commit-config.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ exclude: |
66
versioneer\.py|
77
pytensor/_version\.py|
88
doc/.*|
9-
bin/.*
109
)$
1110
repos:
1211
- repo: https://github.com/pre-commit/pre-commit-hooks

MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,5 @@ global-include *.h
88
global-include *.hh
99
global-include *.sh
1010
recursive-include doc *
11-
include bin/pytensor-cache
1211
include versioneer.py
1312
include pytensor/_version.py

bin/__init__.py

-9
This file was deleted.

bin/pytensor-cache

-12
This file was deleted.

bin/pytensor_cache.py

-14
This file was deleted.

doc/extending/pipeline.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ case if ``borrow`` was True, the thunk would be allowed to reuse--or
8888
The compile cache is based upon the C++ code of the graph to be compiled.
8989
So, if you change compilation configuration variables, such as
9090
:attr:`config.blas__ldflags`, you will need to manually remove your compile cache,
91-
using ``PyTensor/bin/pytensor-cache clear``
91+
using ``pytensor-cache clear``
9292

9393
PyTensor also implements a lock mechanism that prevents multiple compilations
9494
within the same compilation directory (to avoid crashes with parallel

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jax = ["jax", "jaxlib"]
8282
numba = ["numba>=0.57"]
8383

8484
[tool.setuptools.packages.find]
85-
include = ["pytensor*", "bin"]
85+
include = ["pytensor*"]
8686

8787
[tool.setuptools.package-data]
8888
pytensor = ["py.typed"]
@@ -122,7 +122,7 @@ testpaths = "tests/"
122122

123123
[tool.ruff]
124124
line-length = 88
125-
exclude = ["doc/", "pytensor/_version.py", "bin/pytensor_cache.py"]
125+
exclude = ["doc/", "pytensor/_version.py"]
126126

127127
[tool.ruff.lint]
128128
select = ["C", "E", "F", "I", "UP", "W", "RUF"]

0 commit comments

Comments
 (0)