-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use latest GitHub actions: --- - https://github.com/marketplace/actions/checkout - https://github.com/marketplace/actions/setup-python - https://github.com/marketplace/actions/setup-graphviz - ... Upgrade tests to Python 3.12 No compatibility issues found. See also https://docs.python.org/3/whatsnew/changelog.html#python-3-12-0-beta-1 Use `build` instead of `setup.py`: https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html Update Author e-mail to `author_email: [email protected]` Simplify the installation on Windows: --- Install graphviz using: `choco install graphviz --version=12.2.1` Update `environment.yml` Add GitHub Action PostgreSQL to **PATH** https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#setting-an-environment-variable Solves #48
- Loading branch information
1 parent
d57db2c
commit dd7f80b
Showing
5 changed files
with
148 additions
and
131 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
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,8 +1,6 @@ | ||
name: tdvisu | ||
channels: | ||
- alubbock | ||
- defaults | ||
dependencies: | ||
- python>=3.8 | ||
- graphviz | ||
- setuptools |