Skip to content

Commit

Permalink
Add Python 3.9 compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
golmschenk committed Feb 6, 2024
1 parent 7a6ab7e commit 41e1efe
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand All @@ -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",
Expand Down Expand Up @@ -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 = [
Expand Down
2 changes: 2 additions & 0 deletions src/qusi/hadryss_model.py
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
Expand Down
2 changes: 2 additions & 0 deletions src/qusi/light_curve_collection.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

from dataclasses import dataclass
from random import Random
from abc import ABC, abstractmethod
Expand Down
2 changes: 2 additions & 0 deletions src/qusi/light_curve_dataset.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import copy
import math
import re
Expand Down
2 changes: 2 additions & 0 deletions src/ramjet/data_interface/tess_data_interface.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
"""
Code for a class for common interfacing with TESS data, such as downloading, sorting, and manipulating.
"""
from __future__ import annotations

import itertools
from io import StringIO
from random import shuffle, Random
Expand Down

0 comments on commit 41e1efe

Please sign in to comment.