Skip to content

Commit

Permalink
Merge pull request #51 from hacklschorsch/fix-co-py38-pasta
Browse files Browse the repository at this point in the history
Make the packages for different Python versions actually for different Python versions
  • Loading branch information
exarkun authored Mar 2, 2023
2 parents ebedce3 + c17bbfe commit 9d73fe3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pip install --editable .
There is also Nix-based package which manages most of this complexity for you and only requires a checkout:

```
nix-build
nix build
```

# License
Expand Down
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@
};

python38-challenge-bypass-ristretto = py-module pkgs.python38.pkgs;
python39-challenge-bypass-ristretto = py-module pkgs.python38.pkgs;
python310-challenge-bypass-ristretto = py-module pkgs.python38.pkgs;
python39-challenge-bypass-ristretto = py-module pkgs.python39.pkgs;
python310-challenge-bypass-ristretto = py-module pkgs.python310.pkgs;
};

# Define our cross-compiled packages. This currently does not include
Expand Down

0 comments on commit 9d73fe3

Please sign in to comment.