Skip to content

Commit

Permalink
Happy New Year 2024 (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
kip-hart committed Jan 1, 2024
1 parent 358567a commit 8ece38b
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 17 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/python_package.yaml
Expand Up @@ -14,16 +14,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
Expand Down Expand Up @@ -57,13 +57,13 @@ jobs:
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
# This path is specific to Ubuntu
path: ~/Library/Caches/pip
Expand All @@ -90,13 +90,13 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
Expand All @@ -123,13 +123,13 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
Expand Down
4 changes: 4 additions & 0 deletions .readthedocs.yaml
Expand Up @@ -16,3 +16,7 @@ build:
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/source/conf.py

python:
install:
- requirements: docs/requirements.txt
2 changes: 1 addition & 1 deletion LICENSE.rst
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2023 Georgia Tech Research Corporation
Copyright (c) 2019-2024 Georgia Tech Research Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions docs/requirements.txt
@@ -0,0 +1 @@
sphinx-rtd-theme
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -20,7 +20,7 @@
# -- Project information -----------------------------------------------------

project = 'AABBTree'
copyright = '2019-2023, Georgia Tech Research Corporation'
copyright = '2019-2024, Georgia Tech Research Corporation'
author = 'Kenneth Hart'

# The short X.Y version
Expand All @@ -42,7 +42,7 @@
'sphinx.ext.autodoc',
'sphinx.ext.napoleon',
'sphinx.ext.mathjax',
'sphinx.ext.viewcode'
'sphinx.ext.viewcode',
]

# Suppress "WARNING: unknown mimetype for ..."
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -32,7 +32,7 @@ def read(fname):
classifiers=[
# complete classifier list:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
Expand All @@ -49,6 +49,7 @@ def read(fname):
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
],
Expand Down

0 comments on commit 8ece38b

Please sign in to comment.