Skip to content

Commit

Permalink
Remove use of poetry
Browse files Browse the repository at this point in the history
Signed-off-by: Travis F. Collins <[email protected]>
  • Loading branch information
tfcollins committed Sep 27, 2024
1 parent 4f00683 commit c3c8535
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ def testsnb(session):
"pillow",
)
# Get session argument python
ver = str(session.python)
ver = ver.replace(".", "-")
session.run("ls",f".nox/testsnb-{ver}/lib/python3.7/site-packages/adijif")
session.run("ls",f".nox/testsnb-{ver}/lib/python3.7/site-packages/adijif/converters")
#ver = str(session.python)
#ver = ver.replace(".", "-")
#session.run("ls",f".nox/testsnb-{ver}/lib/python3.7/site-packages/adijif")
#session.run("ls",f".nox/testsnb-{ver}/lib/python3.7/site-packages/adijif/converters")
session.run("pytest", *args)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [{ name = "Travis F. Collins", email = "[email protected]" }]
license = { text = "EPL-2.0" }
readme = "README.md"
requires-python = ">=3.7"
dependencies = ["numpy"]
dependencies = ["numpy<2"]

[project.optional-dependencies]
cplex = ["cplex", "docplex==2.24.231"]
Expand Down

0 comments on commit c3c8535

Please sign in to comment.