Skip to content

Commit

Permalink
Merge branch 'master' into filenotfounderror
Browse files Browse the repository at this point in the history
  • Loading branch information
JesperGr committed Sep 9, 2024
2 parents 28b23ea + f35d4c5 commit a752b7a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python-version: [3.5,3.6,3.7,3.8,3.9]
python-version: [3.8,3.12]

steps:
- name: Create packages directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7,3.8,3.9,"3.10","3.11"]
python-version: [3.8,3.12]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion mikecore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import platform
from pathlib import Path

__version__ = "0.2.1"
__version__ = "0.2.2"

p = platform.architecture()
if not "64" in p[0]:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="mikecore",
version="0.2.1",
version="0.2.2",
install_requires=["numpy"],
author="DHI",
author_email="mike@dhigroup.com",
Expand All @@ -19,6 +19,6 @@
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
],
python_requires=">=3.5<",
python_requires=">=3.5",
include_package_data=True,
)

0 comments on commit a752b7a

Please sign in to comment.