Skip to content

Commit

Permalink
Limited astropy depencency to <v5.1 since it effects time conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
nkphysics committed May 26, 2022
1 parent 8e1b0ae commit 2d1e729
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ autoNICER is a program that allows individuals wanting to work with data from th
- PRIMARY: Changed the way output ques/logs are written out. Users may now select if they want to add to an exisiting log file or create a new log file.
- SECONDARY: Added testing of functions that can be tested without requiring the retrieval of NICER observational data for CI testing on the github end.
- Added coloration of text in the terminal when running autoNICER so a user can be more aware of the where in the procedure autoNICER is.

### v1.0.2
- Limited the astropy dependency to versions less than v5.1 since the changes in astropy v5.1 mess with the time conversions. (Future versions will make autonicer compatable with astropy v5.1)
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[tool.poetry]
name = "autonicer"
version = "1.0.1"
version = "1.0.2"
description = "A program that retrieves NICER observational data sets and performs a default data reduction process on the NICER observational data"
authors = ["Tsar Bomba Nick <njkuechel@protonmail.com>"]
license = "Apache-2.0"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.8"
astropy = ">4.2.1"
astropy = ">4.2.1,<5.1"
astroquery = ">0.4.3"
numpy = ">1.20.3"
pandas = ">1.2.4"
Expand Down

0 comments on commit 2d1e729

Please sign in to comment.