Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating package version dependencies and file removing #14

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,10 @@ planned but not implemented in this version (should be v1.1 now)
so 3.10 will now be the the minimum version.
- also making additional to changes to some test and removing the duplicate
test folder that was present.
-



# [1.2.1] - 2024-12-16
### Added
- removed unused .yml files and requirement.txt
- update pyproject.toml file with required pacakage as we as numpy support below version 2.0 to address open issue #13.
12 changes: 0 additions & 12 deletions pastasoss-environment-3.10.yml

This file was deleted.

12 changes: 0 additions & 12 deletions pastasoss-environment-3.11.yml

This file was deleted.

2 changes: 1 addition & 1 deletion pastasoss/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "1.1.0"
__version__ = "1.2.1"

from .soss_traces import *
12 changes: 5 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,21 @@
[project]
name = "pastasoss"
description = "My package description"
description = "Tool to predict the spectral traces for any NIRISS/SOSS observation"
readme = "README.md"
authors = [
{name = "Tyler Baines", email = "[email protected]"},
]
authors = [{ name = "Tyler Baines", email = "[email protected]" }]
requires-python = ">=3.10"
dependencies = [
"jupyter>=1.0.0",
"numpy>=1.23.4",
"numpy<2.0.0",
"matplotlib>=3.6.2",
"pytest>=7.2.0",
"scipy>=1.10.1",
]

dynamic = ["version"]

[build-system]
requires = ["setuptools >= 61.2",
"setuptools_scm[toml]>=7.1"]
requires = ["setuptools >= 61.2", "setuptools_scm[toml]>=7.1"]
build-backend = 'setuptools.build_meta'

[tool.setuptools.packages.find]
Expand Down
5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

Loading