Skip to content

Commit

Permalink
Another attempt to get CI actions working
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed May 26, 2024
1 parent 1da5b0c commit 5b2bcf3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 22 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python -m pip install --upgrade pip
pip install -e .
pip install -r requirements-dev.txt
- name: Test xdis
- name: Test xasm
run: |
# Until workflows CI problems are fixed
make check-pytest
make check
8 changes: 5 additions & 3 deletions __pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Things that change more often go here.
copyright = """
Copyright (C) 2017, 2019-2021 Rocky Bernstein <rb@dustyfeet.com>.
Copyright (C) 2017, 2019-2021, 2024 Rocky Bernstein <rb@dustyfeet.com>.
"""

classifiers = [
Expand All @@ -25,6 +25,8 @@
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Debuggers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand All @@ -35,12 +37,12 @@
author = "Rocky Bernstein"
author_email = "rb@dustyfeet.com"
ftp_url = None
install_requires = [_six]
install_requires = [_six, "xdis >= 6.1.0"]
license = "GPL-2.0"
mailing_list = "python-debugger@googlegroups.com"
modname = "xasm"
py_modules = None
setup_requires = ["pytest-runner", "xdis >= 6.0.3, < 6.2.0"]
setup_requires = ["pytest-runner", "xdis >= 6.1.0"]
# scripts = ['bin/pydisasm']
short_desc = "Python cross-version byte-code assembler"
tests_require = ["pytest", _six]
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ lxml~>4.9.1
keyring~=23.5.0
colorama~=0.4.4
setuptools~=~>65.5.1
xdis>=6.1.0
22 changes: 5 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,11 @@

"""Setup script for the 'xasm' distribution."""

from __pkginfo__ import (
author,
author_email,
license,
long_description,
classifiers,
modname,
py_modules,
setup_requires,
short_desc,
tests_require,
__version__,
web,
zip_safe,
)
from setuptools import find_packages, setup

from setuptools import setup, find_packages
from __pkginfo__ import (__version__, author, author_email, classifiers,
install_requires, license, long_description, modname,
py_modules, short_desc, tests_require, web, zip_safe)

setup(
author=author,
Expand All @@ -31,7 +19,7 @@
name=modname,
packages=find_packages(),
py_modules=py_modules,
setup_requires=setup_requires,
install_requires=install_requires,
entry_points="""
[console_scripts]
pyc-xasm = xasm.xasm_cli:main
Expand Down

0 comments on commit 5b2bcf3

Please sign in to comment.