Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Dec 9, 2024
1 parent 4f92962 commit ec73c29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install --upgrade pip
python -m pip install "setuptools; python_version>='3.13'" "standard-aifc; python_version>='3.13'"
# python -m pip install "setuptools; python_version>='3.13'" "standard-aifc; python_version>='3.13'"
- name: Install build dependencies (Linux)
if: runner.os == 'Linux'
run: |
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,8 @@ def run(self):
],
python_requires=">=3.9",
install_requires=[
"audioop-lts; python_version>='3.13'",
"setuptools; python_version>='3.13'",
"standard-aifc; python_version>='3.13'",
"setuptools;python_version>='3.13'",
"standard-aifc;python_version>='3.13'",
"typing-extensions",
],
)

0 comments on commit ec73c29

Please sign in to comment.