AnisoCADO 0.2.3__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of AnisoCADO might be problematic. Click here for more details.
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/AnisoCADO.egg-info/PKG-INFO +1 -1
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/AnisoCADO.egg-info/requires.txt +4 -4
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/PKG-INFO +1 -1
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/anisocado/version.py +1 -1
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/pyproject.toml +8 -5
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/AnisoCADO.egg-info/SOURCES.txt +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/AnisoCADO.egg-info/dependency_links.txt +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/AnisoCADO.egg-info/top_level.txt +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/LICENSE +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/MANIFEST.in +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/README.md +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/anisocado/__init__.py +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/anisocado/_anisocado.py +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/anisocado/misc.py +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/anisocado/psf.py +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/anisocado/psf_utils.py +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/anisocado/pupil_utils.py +0 -0
- {AnisoCADO-0.2.3 → AnisoCADO-0.3.0}/setup.cfg +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "AnisoCADO"
|
|
3
|
-
version = "0.
|
|
3
|
+
version = "0.3.0"
|
|
4
4
|
# When updating the version, also
|
|
5
5
|
# - update the date in anisocado/version.py
|
|
6
6
|
# - update the release notese in docs/source/index.rst
|
|
7
7
|
description = "Generate off-axis SCAO PSFs for the ELT"
|
|
8
8
|
readme = "README.md"
|
|
9
9
|
requires-python = ">=3.8"
|
|
10
|
+
# When updating the version, also update the versions in .github/workflows/*
|
|
10
11
|
license = {text = "License :: OSI Approved :: GNU General Public License v3 (GPLv3)"}
|
|
11
12
|
authors = [
|
|
12
13
|
{name = "Eric Gendron"},
|
|
@@ -24,9 +25,11 @@ classifiers=[
|
|
|
24
25
|
"Topic :: Scientific/Engineering :: Astronomy",
|
|
25
26
|
]
|
|
26
27
|
dependencies = [
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
28
|
+
# Try to keep the dependencies on lower versions that have a wheel
|
|
29
|
+
# package on PyPI, for minimumdependencies.yml
|
|
30
|
+
"numpy>=1.18.0",
|
|
31
|
+
"astropy>=4.0",
|
|
32
|
+
"matplotlib>=3.2.0",
|
|
30
33
|
]
|
|
31
34
|
|
|
32
35
|
[project.optional-dependencies]
|
|
@@ -34,7 +37,7 @@ dev = [
|
|
|
34
37
|
"scipy",
|
|
35
38
|
]
|
|
36
39
|
test = [
|
|
37
|
-
"pytest",
|
|
40
|
+
"pytest>=5.0.0",
|
|
38
41
|
"pytest-cov",
|
|
39
42
|
]
|
|
40
43
|
docs = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|