Skip to content
Open
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
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,13 @@ matrix:
exclude:
- os: osx
smalltalk: Pharo64-7.0
allow_failures:
- smalltalk: Pharo-7.0
include:
- script: pipenv run python -m unittest discover tests
os: osx
python: 3.7
# - script: pipenv run python -m unittest discover tests
# os: linux
# python: 3.7


3 changes: 2 additions & 1 deletion src/BaselineOfPythonBridge/BaselineOfPythonBridge.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ BaselineOfPythonBridge >> baseline: spec [
spec
package: 'PythonBridge' with: [ spec requires: #('OSSubprocess' 'Python3Generator') ];
package: 'PythonBridge-Pharo' with: [ spec requires: #('PythonBridge' 'MessagePack') ];
package: 'PythonBridge-Bootstrap' with: [ spec requires: 'PythonBridge' ].
package: 'PythonBridge-Bootstrap' with: [ spec requires: 'PythonBridge' ];
package: 'PythonPlayground' with: [ spec requires: 'PythonBridge' ].
]
]