Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow running on Python 3.11 #105

Merged
merged 4 commits into from
Apr 11, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.11'
cache: pip

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ VENV_BIN=$(VENV)/bin
.PHONY: install-deps
install-deps: .venv ## Install Python project dependencies
$(VENV_BIN)/python -m pip install --upgrade uv
$(VENV_BIN)/uv pip install -r requirements.txt
$(VENV_BIN)/uv pip install -r requirements-dev.txt
$(VENV_BIN)/uv pip install --compile -r requirements.txt
$(VENV_BIN)/uv pip install --compile -r requirements-dev.txt

.PHONY: bump-deps
bump-deps: .venv ## Bump Python project dependencies
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.ruff]
line-length = 88
target-version = "py312"
target-version = "py311"
fix = true

[tool.ruff.lint]
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ pandas-stubs==2.2.1.240316
ruff==0.3.5
types-pytz==2024.1.0.20240203
# via pandas-stubs
typing-extensions==4.10.0
typing-extensions==4.11.0
# via mypy
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ cycler==0.12.1
# via matplotlib
dask==2024.4.1
# via dask-expr
dask-expr==1.0.10
dask-expr==1.0.11
# via dask
duckdb==0.10.1
fastparquet==2024.2.0
fonttools==4.50.0
fonttools==4.51.0
# via matplotlib
fsspec==2024.3.1
# via
Expand Down Expand Up @@ -53,7 +53,7 @@ packaging==24.0
# matplotlib
# plotly
# statsmodels
pandas==2.2.1
pandas==2.2.2
# via
# dask
# dask-expr
Expand All @@ -69,7 +69,7 @@ pillow==10.3.0
# via matplotlib
plotly==5.20.0
plotnine==0.13.4
polars==0.20.18
polars==0.20.19
py4j==0.10.9.7
# via pyspark
pyarrow==15.0.2
Expand Down Expand Up @@ -110,7 +110,7 @@ toolz==0.12.1
# via
# dask
# partd
typing-extensions==4.10.0
typing-extensions==4.11.0
# via
# pydantic
# pydantic-core
Expand Down