Skip to content

Commit 00982f9

Browse files
committed
Generate updated docs
1 parent 8a33520 commit 00982f9

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
![](https://raw.githubusercontent.com/goromal/anixdata/master/data/img/anixpkgs.png "anixpkgs")
66

7-
**LATEST RELEASE: [v8.23.5](https://github.com/goromal/anixpkgs/tree/v8.23.5)**
7+
**LATEST RELEASE: [v8.24.0](https://github.com/goromal/anixpkgs/tree/v8.24.0)**
88

99
**[Docs Website](https://goromal.github.io/anixpkgs/)**
1010

docs/src/intro.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ My open source software is packaged and deployed from a central repository: **an
88

99
![](https://raw.githubusercontent.com/goromal/anixdata/master/data/img/anixpkgs.png "anixpkgs")
1010

11-
**LATEST RELEASE: [v8.23.5](https://github.com/goromal/anixpkgs/tree/v8.23.5)**
11+
**LATEST RELEASE: [v8.24.0](https://github.com/goromal/anixpkgs/tree/v8.24.0)**
1212

1313
**[Repository](https://github.com/goromal/anixpkgs)**
1414

@@ -47,7 +47,7 @@ The software packaged in `anixpkgs` is buildable both through [Nix flakes](https
4747

4848
### Accessing the Packages Using Flakes
4949

50-
Here is a `flake.nix` file that will get you a shell with select `anixpkgs` software (version `v8.23.5`) while also giving you access to the public cache to avoid building from source on your machine:
50+
Here is a `flake.nix` file that will get you a shell with select `anixpkgs` software (version `v8.24.0`) while also giving you access to the public cache to avoid building from source on your machine:
5151

5252
```nix
5353
{
@@ -61,7 +61,7 @@ Here is a `flake.nix` file that will get you a shell with select `anixpkgs` soft
6161
"github-public.cachix.org-1:xofQDaQZRkCqt+4FMyXS5D6RNenGcWwnpAXRXJ2Y5kc="
6262
];
6363
inputs = {
64-
nixpkgs.url = "github:goromal/anixpkgs?ref=refs/tags/v8.23.5";
64+
nixpkgs.url = "github:goromal/anixpkgs?ref=refs/tags/v8.24.0";
6565
};
6666
outputs = { self, nixpkgs }:
6767
let pkgs = nixpkgs.legacyPackages.x86_64-linux;
@@ -81,12 +81,12 @@ Access the packages with `nix develop`.
8181

8282
### Accessing the Packages Using shell.nix
8383

84-
Here are some `shell.nix` files to access Python packages (using version `v8.23.5` of the packages):
84+
Here are some `shell.nix` files to access Python packages (using version `v8.24.0` of the packages):
8585

8686
```nix
8787
let
8888
pkgs = import (builtins.fetchTarball
89-
"https://github.com/goromal/anixpkgs/archive/refs/tags/v8.23.5.tar.gz") {};
89+
"https://github.com/goromal/anixpkgs/archive/refs/tags/v8.24.0.tar.gz") {};
9090
python-with-my-packages = pkgs.python311.withPackages (p: with p; [
9191
numpy
9292
matplotlib
@@ -102,7 +102,7 @@ or:
102102
```nix
103103
let
104104
pkgs = import (builtins.fetchTarball
105-
"https://github.com/goromal/anixpkgs/archive/refs/tags/v8.23.5.tar.gz") {};
105+
"https://github.com/goromal/anixpkgs/archive/refs/tags/v8.24.0.tar.gz") {};
106106
in pkgs.mkShell {
107107
buildInputs = [
108108
pkgs.python311
@@ -126,7 +126,7 @@ And for general software packages:
126126
```nix
127127
let
128128
pkgs = import (builtins.fetchTarball
129-
"https://github.com/goromal/anixpkgs/archive/refs/tags/v8.23.5.tar.gz") {};
129+
"https://github.com/goromal/anixpkgs/archive/refs/tags/v8.24.0.tar.gz") {};
130130
in with pkgs; mkShell {
131131
buildInputs = [
132132
pb

0 commit comments

Comments
 (0)