Skip to content

Commit

Permalink
Changing README title (#38)
Browse files Browse the repository at this point in the history
* Changing README title

* changes
  • Loading branch information
hentt30 committed Aug 12, 2023
1 parent 58f178c commit e17a814
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Build and upload to PyPI

env:
CIBW_BUILD: cp38-* cp39-* cp310-*
CIBW_BUILD: cp36-* cp37-* cp38-*
CIBW_BEFORE_BUILD: pip install --upgrade pip
CIBW_BEFORE_TEST: pip install pytest
CIBW_TEST_COMMAND: pytest {package}/tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-18.04
strategy:
matrix:
python: ["3.8", "3.9", "3.10"]
python: ["3.6", "3.7", "3.8"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##############
minushalf
Minushalf
##############
.. image:: https://readthedocs.org/projects/minushalf/badge/
:target: https://minushalf.readthedocs.org
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ python = "^3.6"
yapf = "^0.31.0"
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools","numpy==1.21.0"]
requires = ["setuptools","numpy==1.19.5"]

[tool.tox]
legacy_tox_ini = """
Expand All @@ -25,16 +25,16 @@ install_command = python -m pip install .
deps=
pytest==6.2.1
pytest-mock==3.0.0
pandas==1.4.0
pandas==1.1.5
fortranformat==0.2.5
Click==7.1.2
pyfiglet==0.8.post1
loguru==0.5.3
tabulate==0.9.0
tabulate==0.8.10
pyyaml
scipy==1.7.3
scipy==1.5.4
aenum==3.0.0
numpy==1.22.0
numpy==1.19.5
usedevelop=False
commands=
python -m pytest
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
pandas==1.4.0
pandas==1.1.5
fortranformat==0.2.5
Click==7.1.2
pyfiglet==0.8.post1
loguru==0.5.3
tabulate==0.9.0
tabulate==0.8.10
pyyaml
scipy==1.7.3
scipy==1.5.4
aenum==3.0.0
numpy==1.22.0
numpy==1.19.5
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
atomic_program = Extension(name="minushalf.atomic_program",
sources=[
"minushalf/atomic_program/atm_cGuima3.f",
"minushalf/atomic_program/atm_cGuima3.pyf",
"minushalf/atomic_program/atm_cGuima3.pyf"
],
extra_compile_args=['-static'])

Expand All @@ -28,15 +28,15 @@
long_description=long_description,
license="GPL",
install_requires=[
"pandas==1.4.0",
"pandas==1.1.5",
"fortranformat==0.2.5",
"Click==7.1.2",
"pyfiglet==0.8.post1",
"loguru==0.5.3",
"tabulate==0.9.0",
"numpy==1.22.0",
"tabulate==0.8.10",
"numpy==1.19.5",
"pyyaml",
"scipy==1.7.3",
"scipy==1.5.4",
"aenum==3.0.0",
],
entry_points="""
Expand Down

0 comments on commit e17a814

Please sign in to comment.