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
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'CHANGELOG.md'
- '.github/workflows/internal-check-links-in-documentation.yml' # also run when this file was changed
schedule:
- cron: "15 6 1 * *" # On the first day of each month at 6:15 o'clock
- cron: "42 7 * * 1" # Every week at 07:40 AM on Monday

jobs:
reports:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/internal-java-code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
paths-ignore:
- '**/*.md'
- '**/*.txt'
- '!requirements.txt'
- '**/*.css'
- '**/*.html'
- '**/*.js'
Expand All @@ -26,6 +27,7 @@ on:
paths-ignore:
- '**/*.md'
- '**/*.txt'
- '!requirements.txt'
- '**/*.css'
- '**/*.html'
- '**/*.js'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/internal-typescript-code-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
paths-ignore:
- '**/*.md'
- '**/*.txt'
- '!requirements.txt'
- '**/*.css'
- '**/*.html'
- '**/*.js'
Expand All @@ -26,6 +27,7 @@ on:
paths-ignore:
- '**/*.md'
- '**/*.txt'
- '!requirements.txt'
- '**/*.css'
- '**/*.html'
- '**/*.js'
Expand Down
3 changes: 2 additions & 1 deletion conda-environment.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# NOTE: Keep this file in sync with requirements.txt
name: codegraph
channels:
- conda-forge/label/python_rc # Needed on Mac since Python >= 3.12
Expand All @@ -13,7 +14,7 @@ dependencies:
- numpy=1.26.*
- pandas=2.2.*
- pip=25.0.*
- setuptools=75.8.* # opentsne uses sklearn.base uses joblib uses distutils missing in Python >= 12 (TODO use native openTSNE?)
- setuptools=80.9.* # opentsne uses sklearn.base uses joblib uses distutils missing in Python >= 12 (TODO use native openTSNE?)
- typing-extensions=4.12.* # Also needed for opentsne and Python >= 3.12
- opentsne=1.0.* # to visualize node embeddings in 2D (t-SNE dimensionality reduction)
- wordcloud=1.9.*
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# --- Core Python version ---
# NOTE: Python version must be >= 3.12 for compatibility
# This should be enforced by the user/environment, not pip
# NOTE: Keep this file in sync with conda-environment.yml

# --- Core tools ---
jupyter==1.1.*
Expand All @@ -9,7 +10,7 @@ nbconvert[webpdf]==7.16.*
numpy==1.26.*
pandas==2.2.*
pip==25.0.*
setuptools==75.8.* # opentsne uses sklearn.base uses joblib uses distutils missing in Python >= 12 (TODO use native openTSNE?)
setuptools==80.9.* # opentsne uses sklearn.base uses joblib uses distutils missing in Python >= 12 (TODO use native openTSNE?)
typing-extensions==4.12.* # Needed for opentsne and Python >= 3.12

# --- Visualization ---
Expand Down
Loading