Skip to content

Commit

Permalink
Merge branch 'main' into escape_sequence_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Witchblade101 authored Sep 17, 2024
2 parents f774d74 + 77272ff commit f0173b4
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 21 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: build

on:
release:
types: [ released ]
pull_request:
workflow_dispatch:

jobs:
build:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1
with:
upload_to_pypi: ${{ (github.event_name == 'release') && (github.event.action == 'released') }}
secrets:
pypi_token: ${{ secrets.PYPI_PASSWORD_STSCI_MAINTAINER }}
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v4
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/publish-to-pypi.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ The following describes the typical work flow for contributing to the pysiaf pro
11. Delete your local copy of your branch.

### Installation
This package is supported in python 3.8 and 3.9
This package is supported in python 3.10+

`pip install pysiaf`

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ dependencies = [
"lxml>=4.6.4",
"matplotlib>=3.4.3",
"numpy>=1.21.4",
"numpydoc>=1.1.0",
"openpyxl>=3.0.9",
"requests>=2.26.0",
"scipy>=1.7.2",
]
dynamic = [
"version",
]
requires-python = ">=3.10"

[project.readme]
file = "README.md"
Expand All @@ -40,14 +40,15 @@ repository = "https://github.com/spacetelescope/pysiaf"

[project.optional-dependencies]
test = [
'pytest',
"pytest",
]
docs = [
"stsci-rtd-theme",
"sphinx-rtd-theme>=1.3.0",
"sphinx-automodapi",
"sphinx>=7.2.5",
"numpy",
"numpydoc>=1.1.0",
"matplotlib",
"scipy",
"tomli; python_version<\"3.11\"",
Expand Down

0 comments on commit f0173b4

Please sign in to comment.