-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a6ab7e
commit 41e1efe
Showing
5 changed files
with
11 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = [ | |
{ name = "golmschenk", email = "[email protected]" }, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
requires-python = ">=3.9" | ||
packages = [ | ||
{include = "ramjet", from="src"}, | ||
{include = "qusi", from="src"} | ||
|
@@ -25,7 +25,7 @@ dependencies = [ | |
"matplotlib>=3.6.3", | ||
"pipreqs>=0.4.11", | ||
"bokeh>=3.0.0", | ||
"scipy>=1.11.0", | ||
"scipy>=1.10.0", | ||
"setuptools>=67.1.0", | ||
"peewee>=3.15.4", | ||
"pytest-asyncio>=0.20.3", | ||
|
@@ -75,7 +75,7 @@ cov = [ | |
] | ||
|
||
[[tool.hatch.envs.all.matrix]] | ||
python = ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
python = ["3.9", "3.10", "3.11", "3.12"] | ||
|
||
[tool.hatch.envs.types] | ||
dependencies = [ | ||
|
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,5 @@ | ||
from __future__ import annotations | ||
|
||
import math | ||
try: | ||
from typing import Self, List | ||
|
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,3 +1,5 @@ | ||
from __future__ import annotations | ||
|
||
import copy | ||
import math | ||
import re | ||
|
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