Skip to content

Commit

Permalink
tentative adding support for python 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mlincett committed Oct 24, 2024
1 parent 5dbe539 commit d84d112
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Specify the python versions to test
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11' # Replace '3.x' with your desired Python version
python-version: '3.12' # Replace '3.x' with your desired Python version
- name: Install poetry
run: pip install poetry # You may need additional dependencies here
- name: Install flarestack
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]

[tool.poetry.dependencies]
python = ">=3.9, <3.12"
python = ">=3.9, <3.14"
astropy = ">=5.1,<7.0"
black = ">=23,<25"
coveralls = ">=3.3.1,<5.0.0"
Expand Down

0 comments on commit d84d112

Please sign in to comment.