Skip to content

Commit

Permalink
Add python 3.9 (#6)
Browse files Browse the repository at this point in the history
* add python 3.9 and 3.10

* upgrade mlblocks

* loosen tensorflow

* remove python 3.10

* Update README.md
  • Loading branch information
sarahmish committed Aug 3, 2023
1 parent 4d454c2 commit c8c2651
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: ['3.6', '3.7', '3.8', '3.9']
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v1
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: ['3.6', '3.7', '3.8', '3.9']
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v1
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: ['3.6', '3.7', '3.8', '3.9']
os: [ubuntu-20.04, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
Expand All @@ -79,4 +79,4 @@ jobs:
- name: Install package and dependencies
run: pip install invoke .[test]
- name: invoke pytest
run: invoke pytest
run: invoke pytest
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ combine third party tools or implement new functionalities from scratch.

## Requirements

**ml-stars** has been developed and tested on [Python 3.6, 3.7 and 3.8](https://www.python.org/downloads/)
**ml-stars** has been developed and tested on [Python 3.6, 3.7, 3.8, and 3.9](https://www.python.org/downloads/)

Also, although it is not strictly required, the usage of a
[virtualenv](https://virtualenv.pypa.io/en/latest/) is highly recommended in order to avoid
Expand Down Expand Up @@ -126,4 +126,4 @@ The data is now in [0, 1] range.

## What's Next?

Documentation
Documentation
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
history = history_file.read()

install_requires = [
'Keras>=2.4,<2.5',
'mlblocks>=0.4,<0.6',
'Keras>=2.4,<2.13',
'mlblocks>=0.6',
'numpy<1.21.0,>=1.16.0',
'pandas>=1,<2',
'scikit-learn>=0.21,<1.2',
'scipy>=1.1.0,<2',
'statsmodels>=0.9.0,<0.13',
'tensorflow>=2,<2.5',
'tensorflow>=2,<2.13',
'xgboost>=0.72.1,<1',

# fix google/protobuf/descriptor
Expand Down Expand Up @@ -82,6 +82,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
description='Primitives and Pipelines for Time Series Data.',
entry_points={
Expand All @@ -103,7 +104,7 @@
keywords='mlstars',
name='ml-stars',
packages=find_packages(include=['mlstars', 'mlstars.*']),
python_requires='>=3.6,<3.9',
python_requires='>=3.6,<3.10',
setup_requires=setup_requires,
test_suite='tests',
tests_require=tests_require,
Expand Down

0 comments on commit c8c2651

Please sign in to comment.