Skip to content

Commit 075f3c8

Browse files
authored
trying to fix the docs build (#20)
* trying to fix the docs build * Update pyproject.toml * pypi metadata update * Update pyproject.toml
1 parent a022f1f commit 075f3c8

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

.github/workflows/docs.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,16 @@ jobs:
2929
with:
3030
docs-folder: "./docs/"
3131

32+
- name: Debug directory structure
33+
run: |
34+
ls -la docs/
35+
ls -la docs/build/ || echo "build dir not found"
36+
ls -la docs/_build/ || echo "_build dir not found"
37+
3238
- name: Create CNAME file
39+
continue-on-error: true
3340
run: |
41+
mkdir -p docs/build/html/
3442
echo "gitpandas.mcginniscommawill.com" > ./docs/build/html/CNAME
3543
3644
- name: Deploy Docs

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v2.2.1
2+
======
3+
4+
* Docs CI bugfix
5+
16
v2.2.0
27
======
38

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2015, Helton Tech, LLC
1+
Copyright (c) 2025, Will McGinnis
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

pyproject.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,21 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "git-pandas"
7-
version = "2.2.0"
7+
version = "2.2.1"
88
description = "A utility for interacting with data from git repositories as Pandas dataframes"
99
readme = "README.md"
1010
requires-python = ">=3.8"
1111
license = {text = "BSD"}
1212
authors = [
13-
{name = "Will McGinnis", email = "[email protected]"},
13+
{name = "Will McGinnis"},
1414
]
1515
classifiers = [
1616
"Development Status :: 3 - Alpha",
1717
"Intended Audience :: Developers",
1818
"Programming Language :: Python :: 3",
1919
]
2020
keywords = ["git", "pandas", "data", "analysis"]
21+
2122
dependencies = [
2223
"gitpython>=1.0.0",
2324
"numpy>=1.9.0",
@@ -26,6 +27,11 @@ dependencies = [
2627
"redis",
2728
]
2829

30+
[project.urls]
31+
Documentation = "https://gitpandas.mcginniscommawill.com"
32+
Source = "https://github.com/wdm0006/git-pandas"
33+
Issues = "https://github.com/wdm0006/git-pandas/issues"
34+
2935
[project.optional-dependencies]
3036
examples = [
3137
"matplotlib",

0 commit comments

Comments
 (0)