Skip to content

Commit

Permalink
Bump to version 2
Browse files Browse the repository at this point in the history
  • Loading branch information
docmarionum1 committed Aug 5, 2022
1 parent df3d07c commit 5910183
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ name: Tests
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
branches: [ "main" ]
pull_request:
branches: [ "master" ]
branches: [ "main" ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -22,7 +22,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy-2.7", "pypy-3.8", "pypy-3.9"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy-3.8", "pypy-3.9"]

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
Expand Down
3 changes: 2 additions & 1 deletion AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ Contributors
------------

* Irmen de Jong <[email protected]>
* Brad Smith <[email protected]>
* Brad Smith <[email protected]>
* Chris Sawer
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
History
-------

2.0.0 (2022-08-05)
++++++++++++++++++
* Add support for python >3.8

1.0.0 (2022-08-05)
++++++++++++++++++
* Last version compatible with python 2.7
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='py65emu',
version='1.0.0',
version='2.0.0',
description='A 6502 Emulator',
long_description=readme + '\n\n' + history,
author='Jeremy Neiman',
Expand All @@ -31,19 +31,20 @@
include_package_data=True,
install_requires=[
],
python_requires='>=2.7, <3.9',
python_requires='>=3.2',
license="WTFPL",
zip_safe=False,
keywords='py65emu',
classifiers=[
'Intended Audience :: Developers',
'License :: WTFPL',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
test_suite='tests',
)

0 comments on commit 5910183

Please sign in to comment.