Skip to content

Commit

Permalink
Fixed errors in pip-install.yml and setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rory Barnes committed Sep 5, 2024
1 parent 10e5c49 commit 5e390a6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pip-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, macos-13, macos-14]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
exclude:
- os: ubuntu-22.04
python-version: '3.6'
- os: macos-14
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.6', '3.7', '3.8', '3.9']
fail-fast: false

steps:
Expand All @@ -29,7 +29,7 @@ jobs:

- name: Install cibuildwheel
run: |
python -m pip install cibuildwheel==2.20.0
python -m pip install cibuildwheel
- name: Build wheel on Linux
if: runner.os == 'Linux'
Expand All @@ -55,12 +55,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, macos-13, macos-14]
python-version: [3.6, 3.7, 3.8, 3.9, 3.10, 3.11]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11']
exclude:
- os: ubuntu-22.04
python-version: '3.6'
- os: macos-14
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: ['3.6', '3.7', '3.8', '3.9']
fail-fast: false

steps:
Expand Down
3 changes: 1 addition & 2 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
include VERSION
include src/*.c
include src/*.h
include bin/vplanet
include src/*.h
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def run(self):
include_package_data=True,
# package_data={'': ['VERSION']},
package_data={'': ['src/*.[ch]']},
data_files=[('', ['VERSION','bin/vplanet'])],
data_files=[('', ['VERSION'])],
zip_safe=False,
entry_points={"console_scripts": ["vplanet=vplanet.wrapper:_entry_point"]},
)
Expand Down

0 comments on commit 5e390a6

Please sign in to comment.