Skip to content

Commit

Permalink
chore: update servir, relax pandas specifier (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt committed Mar 30, 2024
1 parent 3dd66b8 commit b127601
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 12 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -24,12 +24,13 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: |
pip install --upgrade hatch
hatch run test
pip install uv
uv pip install --system ".[all,dev]"
pytest --ignore gosling/examples --ignore tools/altair --doctest-modules gosling
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -12,7 +12,6 @@ It is built on top of the [Gosling] JSON specification, providing a
simplified interface for authoring interactive genomic visualizations.



## Installation

> The **gos** API is under active development. Feedback is appreciated and welcomed.
Expand Down
12 changes: 4 additions & 8 deletions pyproject.toml
Expand Up @@ -26,29 +26,25 @@ urls = { homepage = "https://github.com/gosling-lang/gos" }
dependencies = [
"jsonschema>=3.0",
"jinja2",
"pandas>=1.0,<2.0",
"pandas"
]

[project.optional-dependencies]
all = [
"servir>=0.0.3",
"servir>=0.2.1",
"gosling-widget>=0.0.2",
"clodius>=0.20.0",
"clodius>=0.20.1",
]
dev = [
"pytest>=6.0",
"requests>=2.0",
"jupyterlab>=3.0",
"sphinx>=6.0",
"numpydoc>=1.5",
"furo",
]

[tool.hatch.build]
include = [
"/gosling",
"/tests",
]
include = ["/gosling", "/tests"]

[tool.hatch.version]
source = "vcs"
Expand Down

0 comments on commit b127601

Please sign in to comment.