Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/run_unit_tests_oldest_deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
if: steps.cache-virtualenv.outputs.cache-hit != 'true'
run: |
poetry run python scripts/pin_oldest_deps.py pyproject.toml
poetry lock --no-update
poetry lock
- name: Install nitypes (oldest deps)
if: steps.cache-virtualenv.outputs.cache-hit != 'true'
run: poetry install -v
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build:
python: "3.11"
jobs:
post_create_environment:
- pip install poetry==1.8.2
- pip install poetry==2.1.4
post_install:
- VIRTUAL_ENV=$READTHEDOCS_VIRTUALENV_PATH poetry install --only main,docs

Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
proj_config = toml.loads(pyproj_file.read_text())


project = proj_config["tool"]["poetry"]["name"]
project = proj_config["project"]["name"]
company = "National Instruments"
copyright = f"2025-%Y, {company}"
if datetime.datetime.now().year == 2025:
Expand All @@ -34,9 +34,9 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
version = proj_config["tool"]["poetry"]["version"]
version = proj_config["project"]["version"]
release = ".".join(version.split(".")[:2])
description = proj_config["tool"]["poetry"]["description"]
description = proj_config["project"]["description"]


htmlhelp_basename = f"{project}doc"
Expand Down
Loading
Loading