Skip to content

Commit

Permalink
downgrade to python 3.9 (#8)
Browse files Browse the repository at this point in the history
Co-authored-by: Mojtaba Sardarmehni <msa75@ascendanalytics.com>
  • Loading branch information
msm-sardar and Mojtaba Sardarmehni authored Jul 30, 2023
1 parent 1d57472 commit 917c864
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.10"]
python-version: ["3.9"]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

1.1.0 (2023-07-30)
------------------

* Downgrade to Python 3.9


1.0.0 (2023-06-03)
------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ Installation

3- Create a new environment for swolfpy::

conda create --name swolfpy python=3.10
conda create --name swolfpy python=3.9

4- Activate the environment::

Expand Down
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "swolfpy_processmodels"
dynamic = ["version", "readme", "dependencies"]
description = "Life-Cylce Process Models for swolfpy (swolfpy_processmodels)."
license = {text = "GNU GENERAL PUBLIC LICENSE V2"}
requires-python = ">=3.10"
requires-python = ">=3.9"
authors = [
{name = "Mojtaba Sardarmehni", email = "msardar2@alumni.ncsu.edu"},
]
Expand All @@ -27,7 +27,7 @@ classifiers = [
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering :: Information Analysis',
Expand All @@ -47,11 +47,10 @@ readme = {file = ["README.rst", "HISTORY.rst"]}
dependencies = {file = "requirements.txt"}

[tool.setuptools]
packages = ["swolfpy_processmodels"]
include-package-data = true

[tool.setuptools.package-data]
package_input_data = []
[tool.setuptools.packages.find]
include = ["swolfpy_processmodels*"]

[tool.black]
line-length = 100
Expand Down
2 changes: 1 addition & 1 deletion swolfpy_processmodels/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@
"AnF",
]

__version__ = "1.0.0"
__version__ = "1.1.0"

0 comments on commit 917c864

Please sign in to comment.