Skip to content

Commit

Permalink
Merge pull request #172 from mgerring/master
Browse files Browse the repository at this point in the history
Update build process to handle Python 2 and 3 compatibility
  • Loading branch information
mnwhite authored Jul 15, 2018
2 parents 5c2b3e6 + 8a5df94 commit 4b34000
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Heterogeneous Agents Resources and toolKit (HARK)
pre-release 0.9.0 - 28 June, 2018
pre-release 0.9.1 - 13 July, 2018

Click the Badge for Citation Info.
[![DOI](https://zenodo.org/badge/50448254.svg)](https://zenodo.org/badge/latestdoi/50448254)
Expand Down Expand Up @@ -44,7 +44,7 @@ This is going to be easy, friend. HARK is written in Python, specifically the
Anaconda distribution of Python. Follow these easy steps to get HARK going:

1) Go to https://www.continuum.io/downloads and download Anaconda for your
operating system; be sure to get the version for Python 2.7
operating system

2) Install Anaconda, using the instructions provided on that page. Now you have
installed everything you need to run most of HARK. But you still need to get HARK
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,4 @@ license_file = LICENSE
# bdist_wheel from trying to make a universal wheel. For more see:
# https://packaging.python.org/tutorials/distributing-packages/#wheels

# We need to get the code running on Python 3; right now it does not.

universal=0
universal=1
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.9.0', # Required
version='0.9.1', # Required

# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
Expand Down Expand Up @@ -118,6 +118,8 @@
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],

# This field adds keywords for your project which will appear on the
Expand Down Expand Up @@ -152,7 +154,7 @@
'joblib',
'future'], # Optional

python_requires='>=2.7, !=3.*',
python_requires='>=2.7',

# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
Expand Down

0 comments on commit 4b34000

Please sign in to comment.