Skip to content

Commit

Permalink
change image
Browse files Browse the repository at this point in the history
  • Loading branch information
sarahmish committed Nov 14, 2024
1 parent 4f4c94a commit 1d8879d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
python-version: [3.8]
os: [ubuntu-latest]
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
Expand Down
8 changes: 4 additions & 4 deletions examples/tutorials/6. Flexible outputs specification.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@
" 'mlprimitives.custom.preprocessing.ClassEncoder#1.y',\n",
" 'mlprimitives.custom.preprocessing.ClassEncoder#1.classes',\n",
"]\n",
"X, y, classes = pipeline.fit(X_train, y_train, output_=output_spec)"
"y, classes = pipeline.fit(X_train, y_train, output_=output_spec)"
]
},
{
Expand All @@ -463,11 +463,11 @@
"source": [
"output_spec = [\n",
" 'mlprimitives.custom.feature_extraction.CategoricalEncoder#1.X',\n",
" 'sklearn.impute.SimpleImputer#1.X',\n",
" # 'sklearn.impute.SimpleImputer#1.X',\n",
" 'mlprimitives.custom.preprocessing.ClassEncoder#1.y',\n",
" 'mlprimitives.custom.preprocessing.ClassEncoder#1.classes',\n",
"]\n",
"X_1, X_2, y, classes = pipeline.fit(X_train, y_train, output_=output_spec)"
"X_1, y, classes = pipeline.fit(X_train, y_train, output_=output_spec)"
]
},
{
Expand Down Expand Up @@ -507,7 +507,7 @@
}
],
"source": [
"X_2.shape"
"X_1.shape"
]
}
],
Expand Down
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
'watchdog>=0.8.3,<5',

# docs
'm2r2>=0.2.5,<0.3',
'm2r>=0.2.0,<0.3',
'Sphinx>=1.7.1,<3',
'sphinx_rtd_theme>=0.2.4,<0.5',
'docutils>=0.12,<0.18',
Expand Down Expand Up @@ -93,8 +93,6 @@
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -119,7 +117,7 @@
long_description_content_type='text/markdown',
name='mlblocks',
packages=find_packages(include=['mlblocks', 'mlblocks.*']),
python_requires='>=3.6,<3.14',
python_requires='>=3.8,<3.14',
setup_requires=setup_requires,
test_suite='tests',
tests_require=tests_require,
Expand Down

0 comments on commit 1d8879d

Please sign in to comment.