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

Release 4.3.10 #250

Merged
merged 16 commits into from
Feb 23, 2025
Prev Previous commit
Next Next commit
Fix pdm venv run
Dramelac committed Feb 20, 2025
commit 8ed0f4c758adb114548a9e4da01edbdfb4ef85c3
4 changes: 2 additions & 2 deletions .github/workflows/sub_testing.yml
Original file line number Diff line number Diff line change
@@ -84,6 +84,6 @@ jobs:
- name: Create testing venv
run: pdm venv create -n vtest-source --with-pip && pdm venv create -n vtest-wheel --with-pip
- name: Install pip source package
run: ./vtest-source/bin/pip install ./dist/*.tar.gz
run: pdm run --venv vtest-source -v pip install ./dist/*.tar.gz
- name: Install pip source package
run: ./vtest-wheel/bin/pip install ./dist/*.tar.gz
run: pdm run --venv vtest-wheel -v pip install ./dist/*.tar.gz
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -85,6 +85,7 @@ celerybeat-schedule
# virtualenv
.venv
venv/
vtest/
ENV/

# Spyder project settings
@@ -109,3 +110,7 @@ shared-resources/

# Build logs for debugging
.build.log

# PDM
pdm.lock
.pdm-build
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -36,6 +36,7 @@ dependencies = [
]

[dependency-groups]
dev = ["pre-commit"]
testing = ["mypy", "types-PyYAML", "types-requests", "types-tzlocal", "pytest"]

[project.scripts]