Skip to content

Commit

Permalink
Merge pull request #117 from ColCarroll/update-ci
Browse files Browse the repository at this point in the history
Fix release version
  • Loading branch information
karink520 authored Jul 8, 2024
2 parents 638a78e + ec765f8 commit 974f07a
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,25 @@


def get_requirements():
with codecs.open(REQUIREMENTS_FILE) as buff:
return buff.read().splitlines()
# TODO: The gh-action to upload to PyPI doesn't include the requirements.txt
# so we're just copying them here as a backup. This is super brittle!
try:
with codecs.open(REQUIREMENTS_FILE) as buff:
return buff.read().splitlines()
except:
return """pymc >= 5.10.0
arviz
scikit-learn
matplotlib
pandas
seaborn
graphviz
numpy
jax
numpyro
jaxlib
numba
netCDF4""".splitlines()


def get_long_description():
Expand Down

0 comments on commit 974f07a

Please sign in to comment.