Skip to content

Commit

Permalink
v1.3.1 new Titan feature Ihi crater
Browse files Browse the repository at this point in the history
  • Loading branch information
cyschneck committed Apr 4, 2024
1 parent 793dbe9 commit ddac5a2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .github/workflows/web_scrap_dynamic_csv_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
if: steps.verify-changed-files.outputs.files_changed == 'true'
run: |
echo "Github Actions: review changes to data files"
echo "Update README, Pytests, update .CSV"
exit 1
- name: If no changes to existing files are found, pass
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ authors:
- family-names: "Schneck, Schneck"
given-names: "Cora Y, Una G"
title: "Pydar: Cassini RADAR data extraction software"
version: 1.3.0
version: 1.3.1
url: "https://github.com/unaschneck/pydar"
20 changes: 10 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Python Package Setup
from setuptools import setup, find_namespace_packages

VERSION="1.3.0"
VERSION="1.3.1"
DESCRIPTION="A Python package to access, download, view, and manipulate Cassini RADAR images"

with open("README.md", "r") as f:
Expand All @@ -18,7 +18,7 @@
url="https://github.com/unaschneck/pydar",
download_url=f"https://github.com/unaschneck/pydar/archive/refs/tags/v{VERSION}.tar.gz",
author="Una Schneck (unaschneck), Cora Schneck (cyschneck)",
keywords=[],
keywords=["geophysics", "python", "astronomy", "nasa", "radar", "planetary-science", "cassini", "jpl"],
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
Expand All @@ -42,14 +42,14 @@
packages=find_namespace_packages(include=['pydar', 'pydar.*']),
include_package_data=True,
install_requires=[
"beautifulsoup4>=4.11.1",
"matplotlib>=3.1.0",
"pandas>=1.5.2",
"pdr>=0.7.3",
"pyproj>=3.4.1",
"pytest>=7.2.2",
"rasterio>=1.3.6",
"urllib3>=1.26.18"
"beautifulsoup4",
"matplotlib",
"pandas",
"pdr",
"pyproj",
"pytest",
"rasterio",
"urllib3"
],
python_requires='>=3.9'
)

0 comments on commit ddac5a2

Please sign in to comment.