Skip to content

Commit

Permalink
Merge pull request #558 from BindsNET/hananel
Browse files Browse the repository at this point in the history
Addting Python 3.10 and bump numpy / scipy version
  • Loading branch information
Hananel-Hazan committed Jul 15, 2022
2 parents 2f70f4c + ec98ab8 commit 0278fbf
Show file tree
Hide file tree
Showing 9 changed files with 763 additions and 958 deletions.
8 changes: 0 additions & 8 deletions .dockerignore

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
python-version: 3.9
- name: Install Poetry
env:
POETRY_VERSION: 1.1.8
POETRY_VERSION: 1.1.13
run: |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - &&\
poetry config virtualenvs.create false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9, '3.10']

steps:
- uses: actions/checkout@v2
Expand All @@ -19,7 +19,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
env:
POETRY_VERSION: 1.1.8
POETRY_VERSION: 1.1.13
run: |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | python - &&\
poetry config virtualenvs.create false
Expand Down
156 changes: 22 additions & 134 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,134 +1,22 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# dotenv
.env

# virtualenv
.venv
venv/
ENV/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/

# Datasets.
data/
!data/get_MNIST.sh

# LSM data.
lsm/

# Results from network monitoring test.
results/

# Results from network monitoring test.
examples/saved_checkpoints

# pytest cache
.pytest_cache/

# Swap files.
*.swp

# PyCharm project folder.
.idea/

# VS Code workspace
.vscode/

# macOS
.DS_Store

figures/

# Analyzer log default directory.
logs/

# PyTorch tensorboard log default directory.
runs/
bindsnet/__pycache__/*
bindsnet/analysis/__pycache__/*
bindsnet/conversion/__pycache__/*
bindsnet/datasets/__pycache__/*
bindsnet/environment/__pycache__/*
bindsnet/evaluation/__pycache__/*
bindsnet/learning/__pycache__/*
bindsnet/encoding/__pycache__/*
bindsnet/models/__pycache__/*
bindsnet/network/__pycache__/*
bindsnet/pipeline/__pycache__/*
bindsnet/preprocessing/__pycache__/*
test/analysis/__pycache__/*
test/conversion/__pycache__/*
test/encoding/__pycache__/*
test/import/__pycache__/*
test/models/__pycache__/*
test/network/__pycache__/*
test/analysis/__pycache__/*
dist/*
logs/*
.pytest_cache/*
21 changes: 0 additions & 21 deletions .pre-commit-config.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .python-version

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Check out the [BindsNET examples](https://github.com/BindsNET/bindsnet/tree/mast

## Requirements

- Python >=3.7.10,<3.10
- Python >=3.8.10,<3.10

## Setting things up

Expand Down

0 comments on commit 0278fbf

Please sign in to comment.