Skip to content

Commit

Permalink
Bumping the python version to >=3.9, <3.12 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
timurcarstensen authored Jul 2, 2024
1 parent e87b39a commit ef240e4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
# Run in all these versions of Python
python-version: [3.8, 3.9]
python-version: ['3.9', '3.10', '3.11']

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ A framework for two-stage neural architecture search (NAS) and structural prunin

Create a virtual environment if you are not using one. Using miniconda:

`Note: the library supports and is tested for python 3.9. to 3.11`


```sh
$ conda create -n lobotomy python==3.9
$ conda create -n lobotomy python==3.11
$ conda activate lobotomy
$ pip install --upgrade pip setuptools
```
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
python_requires=">=3.6",
platforms=["Linux"],
python_requires='>=3.9',
platforms=['Linux'],
install_requires=required_packages,
include_package_data=True,
extras_require={
Expand Down

0 comments on commit ef240e4

Please sign in to comment.