Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python311Packages.{theano,theano-pymc}: drop #313148

Merged
merged 2 commits into from
Jun 5, 2024
Merged
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
51 changes: 0 additions & 51 deletions pkgs/development/python-modules/theano-pymc/default.nix

This file was deleted.

117 changes: 0 additions & 117 deletions pkgs/development/python-modules/theano/default.nix

This file was deleted.

4 changes: 4 additions & 0 deletions pkgs/top-level/python-aliases.nix
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,10 @@ mapAliases ({
Theano = theano; # added 2023-02-19
TheanoWithCuda = theanoWithCuda; # added 2023-02-19
TheanoWithoutCuda = theanoWithoutCuda; # added 2023-02-19
theano = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20
theanoWithCuda = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20
theanoWithoutCuda = throw "theano has been removed because it is no longer maintained"; # added 2024-05-20
theano-pymc = throw "theano-pymc has been removed because it is no longer maintained"; # added 2024-05-20
thumborPexif = throw "thumborPexif has been removed, because it was unused."; # added 2024-01-07
torchgpipe = throw "torchgpipe has been removed, because it appears unmaintained and Pytorch now includes pipeline parallelism support"; # added 2024-05-18
torrent_parser = torrent-parser; # added 2023-11-04
Expand Down
17 changes: 0 additions & 17 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15066,23 +15066,6 @@ self: super: with self; {

tgcrypto = callPackage ../development/python-modules/tgcrypto { };

theano-pymc = callPackage ../development/python-modules/theano-pymc { };

theano = callPackage ../development/python-modules/theano rec {
inherit (pkgs.config) cudaSupport;
cudnnSupport = cudaSupport;
};

theanoWithCuda = self.theano.override {
cudaSupport = true;
cudnnSupport = true;
};

theanoWithoutCuda = self.theano.override {
cudaSupport = false;
cudnnSupport = false;
};

thefuzz = callPackage ../development/python-modules/thefuzz { };

thelogrus = callPackage ../development/python-modules/thelogrus { };
Expand Down