Skip to content

Commit

Permalink
fix(ci): fix python package name
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLostLambda committed Nov 25, 2024
1 parent 6a63d1a commit 75d3f5c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
name = "the-glam"
name = "theglam"
version = "1.0.0"
description = "The Glycopeptide Analysis Module"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions web/src/lib/glam.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ const pyodide = await loadPyodide({

await pyodide.loadPackage(["micropip"]);
const micropip = pyodide.pyimport("micropip");
await micropip.install("the-glam==1.0.0");
await micropip.install("theglam==1.0.0");
// If you need to test development version of pgfinder you should build the wheel and copy the resulting .whl to the
// lib/ directory (adajacent to this file), replace the version below and comment out the above (which loads from
// PyPI).
// await micropip.install('./the-glam-0.1.0-py3-none-any.whl');
await pyodide.runPythonAsync("from the-glam import *")
await pyodide.runPythonAsync("from theglam import *")
const generate_glycopeptides = pyodide.globals.get('generate_glycopeptides');

const msg = {
Expand Down

0 comments on commit 75d3f5c

Please sign in to comment.