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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: AnisoCADO
3
- Version: 0.2.3
3
+ Version: 0.3.0
4
4
  Summary: Generate off-axis SCAO PSFs for the ELT
5
5
  Author: Eric Gendron
6
6
  Author-email: Kieran Leschinski <kieran.leschinski@unive.ac.at>
@@ -1,6 +1,6 @@
1
- numpy>=1.17
2
- astropy
3
- matplotlib
1
+ numpy>=1.18.0
2
+ astropy>=4.0
3
+ matplotlib>=3.2.0
4
4
 
5
5
  [dev]
6
6
  scipy
@@ -12,5 +12,5 @@ sphinxcontrib-apidoc
12
12
  numpydoc
13
13
 
14
14
  [test]
15
- pytest
15
+ pytest>=5.0.0
16
16
  pytest-cov
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: AnisoCADO
3
- Version: 0.2.3
3
+ Version: 0.3.0
4
4
  Summary: Generate off-axis SCAO PSFs for the ELT
5
5
  Author: Eric Gendron
6
6
  Author-email: Kieran Leschinski <kieran.leschinski@unive.ac.at>
@@ -1,3 +1,3 @@
1
1
  from importlib import metadata
2
2
  version = metadata.version(__package__)
3
- date = '2023-05-03 08:08:08 GMT'
3
+ date = '2023-07-10 10:00:00 GMT'
@@ -1,12 +1,13 @@
1
1
  [project]
2
2
  name = "AnisoCADO"
3
- version = "0.2.3"
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
- "numpy>=1.17",
28
- "astropy",
29
- "matplotlib",
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