-
-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Separate dependencies into groups for Poetry installation (#175)
* fix: Separate dependencies into groups for Poetry installation * fix: Change setup.cfg * Update config for ci workflow * feat(makefile): Introduce new targets for conda environment setup * feat(makefile): Add optional variable to create conda env * fix(ci): Install dev dependencies * chore(ci): Add geos dependencies * Fix broken poetry install * feat(ci): update workflow to support Python 3.10 and 3.11
- Loading branch information
Showing
9 changed files
with
246 additions
and
354 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: pysus | ||
channels: | ||
- conda-forge | ||
- nodefaults | ||
- defaults | ||
dependencies: | ||
- python >= 3.11 | ||
- python>=3.11 | ||
- numpy>=1.26.2 | ||
- cffi | ||
- gcc | ||
- make | ||
- nbsphinx | ||
- poetry>=1.3.2 | ||
- pip | ||
- poetry >= 1.3.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
#!/bin/bash | ||
|
||
exec jupyter-lab --browser='firefox' --allow-root --NotebookApp.token='' --NotebookApp.password='' | ||
jupyter_lab_path=$(which jupyter) | ||
|
||
if [ -z "$jupyter_lab_path" ]; then | ||
echo "Jupyter not found" | ||
exit 1 | ||
fi | ||
|
||
$jupyter_lab_path lab --browser='firefox' --allow-root --NotebookApp.token='' --NotebookApp.password='' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters