Skip to content

Commit

Permalink
CI: remove requirements file
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmgray committed Sep 7, 2023
1 parent f53fc0f commit 1055c33
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
set -e
ls dist/*
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pip install pytest numpy cotengra
pytest --verbose
- name: pytest
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
set -e
ls dist/*
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pip install pytest numpy cotengra
pytest --verbose
macos:
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
set -e
ls dist/*
pip install cotengrust --find-links dist --force-reinstall
pip install -r requirements-tests.txt
pip install pytest numpy cotengra
pytest --verbose
sdist:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# cotengrust

`cotengrust` provides fast rust implemented versions of contraction ordering
primitives for tensor networks and einsums.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "cotengrust"
version = "0.1.1"
description = "Fast contraction ordering primitives for tensor networks."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",
Expand All @@ -11,7 +12,6 @@ classifiers = [
license = { file = "LICENSE" }
authors = [
{name = "Johnnie Gray", email = "johnniemcgray@gmail.com"}

]

[build-system]
Expand Down
3 changes: 0 additions & 3 deletions requirements-tests.txt

This file was deleted.

0 comments on commit 1055c33

Please sign in to comment.