Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
5 changes: 1 addition & 4 deletions .github/workflows/deploy-pypi.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
name: Build and Publish to PyPI 📦
name: 📦 Build and Publish to PyPI

on:
workflow_dispatch:
pull_request:
push:
branches:
- master
release:
types:
- published
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Docs
name: 📚 Docs

permissions:
contents: read
Expand All @@ -11,9 +11,9 @@ on:
push:
branches:
- master
release:
types:
- published
# release:
# types:
# - published

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: 🚀 Release

on:
push:
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ classifiers = [
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Cython",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand All @@ -35,7 +38,7 @@ test = ["pytest", "pytest-cov", "pooch", "rich"]

[project.urls]
Homepage = "https://github.com/cherab"
Documentation = "https://cherab.github.io/documentation/"
Documentation = "https://cherab.github.io/imas/"
Repository = "https://github.com/cherab/imas"
Issues = "https://github.com/cherab/imas/issues"

Expand Down
2 changes: 1 addition & 1 deletion src/cherab/imas/datasets/_fetchers.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def fetch_data(dataset_name: str, data_fetcher=data_fetcher, show_progress=True)
progress = None

downloader = pooch.DOIDownloader(
headers={"User-Agent": f"CHERAB-IMAS {__version__}"}, progressbar=progress
headers={"User-Agent": f"CHERAB-IMAS {__version__}"}, progressbar=progress, timeout=60
)

# The "fetch" method returns the full path to the downloaded data file.
Expand Down
Loading