Skip to content

Commit

Permalink
Merge pull request #2 from oresat/older-python-ver
Browse files Browse the repository at this point in the history
set minimal python version to 3.7
  • Loading branch information
ryanpdx authored Nov 9, 2023
2 parents 543aa3a + bfefd7c commit 1e5ea92
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.9
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: "3.9"
python-version: "3.7"

- name: Install dependencies
run: |
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ build-backend = "setuptools.build_meta"
name = "oresat-configs"
description = "OreSat mission configurations"
readme = "README.md"
requires-python = ">=3.9"
requires-python = ">=3.7"
license = {text = "GPL-3.0"}
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit 1e5ea92

Please sign in to comment.