Skip to content

Commit

Permalink
Merge pull request #79 from deepanshs/djs/v0.6
Browse files Browse the repository at this point in the history
v0.6 update release
  • Loading branch information
deepanshs authored Nov 14, 2023
2 parents 28294ec + c3ae555 commit 159ece0
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 5 deletions.
28 changes: 28 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py

build:
os: "ubuntu-20.04"
tools:
python: "3.8"

# Optionally build your docs in additional formats such as PDF and ePub
formats: [pdf]

# conda:
# environment: environment-doc.yml

# Optionally set the version of Python and requirements required to build your docs
python:
install:
- requirements: docs/requirements.txt
- method: pip
path: .
2 changes: 1 addition & 1 deletion csdmpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
__license__ = "BSD License"
__maintainer__ = "Deepansh J. Srivastava"
__status__ = "Beta"
__version__ = "0.6.dev2"
__version__ = "0.6.0"

__all__ = [
"parse_dict",
Expand Down
18 changes: 18 additions & 0 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
numpy>=1.20
matplotlib>=3.3.3
astropy<=5.1
numexpr==2.8.4

setuptools>=27.3
requests>=2.21.0

# Building Docs requirements
sphinxjp.themes.basicstrap
sphinx<5.0.0
sphinx-gallery>0.6.2
pillow>=7.1.2
breathe>=4.34.0
sphinx_copybutton>=0.3.0
sphinx_tabs>3.0
recommonmark
sphinx-version-warning
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# required
numpy>=1.20
setuptools>=27.3
numexpr>=2.7.0
numexpr==2.8.4

# for units
astropy<=5.1
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# required
numpy>=1.20
setuptools>=27.3
numexpr>=2.7.0
numexpr==2.8.4

# for units
astropy<=5.1
Expand All @@ -10,4 +10,4 @@ astropy<=5.1
requests>=2.21.0

# Additional packages
matplotlib>=3.0
matplotlib>=3.3.3
2 changes: 1 addition & 1 deletion tests/dimension_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -704,4 +704,4 @@ def test_dimension_scale():
dim2 = dim / 2.4
assert np.allclose(dim2.coordinates.value, np.arange(10) / 2.4)
assert dim2.quantity_name == "length"
assert type(dim2.quantity_name) == str
assert type(dim2.quantity_name) is str

0 comments on commit 159ece0

Please sign in to comment.