Skip to content

Commit

Permalink
Merge pull request #3 from cyschneck/master
Browse files Browse the repository at this point in the history
Update for Python Versions
  • Loading branch information
tom-spalding authored Feb 25, 2024
2 parents a7c1ef0 + 8a857d7 commit 9e80337
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 8 deletions.
14 changes: 12 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@
Vondrák's Long Term Precession Model
====================================

.. image:: https://travis-ci.org/digitalvapor/vondrak.svg
:target: https://travis-ci.org/digitalvapor/vondrak
.. image:: https://img.shields.io/pypi/pyversions/vondrak
:alt: PyPI - Python Version

.. image:: https://img.shields.io/github/license/dreamalligator/vondrak
:alt: GitHub License

.. image:: https://img.shields.io/pypi/v/vondrak
:alt: PyPI - Version

A Python implementation of Vondrák's long term precession model and Fortran code.

Expand All @@ -29,6 +35,10 @@ Documentation

View the docs at `digitalvapor.github.io/vondrak <https://digitalvapor.github.io/vondrak>`_, or generate with ``make html`` in the ``docs`` folder.

Development
=====
Setup a conda environment by simply running ``conda env create --file environment.yml`` and activate by ``conda activate vondrak``

Tests
=====

Expand Down
7 changes: 7 additions & 0 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
name: vondrak
channels:
- conda-forge
dependencies:
- python<3.14 # max current support 3.13
- numpy
- pytest
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Astronomy'
],
tests_require=['pytest'])

0 comments on commit 9e80337

Please sign in to comment.