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
32 changes: 32 additions & 0 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Copilot Setup Steps

on:
workflow_dispatch:
push:
paths:
- .github/workflows/copilot-setup-steps.yml
pull_request:
paths:
- .github/workflows/copilot-setup-steps.yml

jobs:
copilot-setup-steps:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout code
uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"

- name: Upgrade pip
run: python -m pip install --upgrade pip

- name: Install dependencies for tests
run: |
python -m pip install -r requirements.txt
python -m pip install -e .
46 changes: 23 additions & 23 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
lxml~=6.1.0
pandas
unidecode
pyyaml
orderedattrdict
typing
cookiecutter
Click
daff
pandas~=2.2.3
unidecode~=1.4.0
pyyaml~=6.0.2
orderedattrdict~=1.6.0
typing~=3.7.4.3
cookiecutter~=2.6.0
Click~=8.1.8
daff~=1.4.2
sphinx_rtd_theme
sphinxcontrib-napoleon
recommonmark
tabulate
dask[dataframe]
tabulate~=0.9.0
dask[dataframe]~=2025.4.1
hypothesis
pytest
pytest-cov
tqdm
ruamel.yaml
graphviz
coloredlogs
pytz
requests[security]
gitpython
hy
pytest~=9.0.3
pytest-cov~=6.1.1
tqdm~=4.67.1
ruamel.yaml~=0.18.10
graphviz~=0.20.3
coloredlogs~=15.0.1
pytz~=2025.2
requests[security]~=2.33.0
gitpython~=3.1.44
hy~=1.0.0
ipdb
attrs
joblib
pycurl
attrs~=25.3.0
joblib~=1.5.0
pycurl~=7.45.6
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ joblib==1.5.0
# via -r requirements.in
locket==1.0.0
# via partd
lxml==5.4.0
lxml==6.1.0
# via -r requirements.in
markdown-it-py==3.0.0
# via rich
Expand Down Expand Up @@ -167,7 +167,7 @@ pyyaml==6.0.2
# dask
recommonmark==0.7.1
# via -r requirements.in
requests[security]==2.32.3
requests[security]==2.33.1
# via
# -r requirements.in
# cookiecutter
Expand Down
Loading