Skip to content

Commit 9144378

Browse files
tests passing
1 parent b58cc5e commit 9144378

5 files changed

Lines changed: 19 additions & 12 deletions

File tree

cs_util/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,3 @@
3535
'Could not extract package metadata. Make sure the package is '
3636
+ 'correctly installed.',
3737
)
38-
39-
__version__ = _version

develop.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
coverage==5.3
2-
nose==1.3.7
3-
pytest==6.1.2
4-
pytest-cov==2.10.1
5-
pytest-pep8==1.0.6
6-
pytest-emoji==0.2.0
7-
pytest-flake8==1.0.6
8-
wemake-python-styleguide==0.14.1
1+
coverage
2+
nose
3+
pytest
4+
pytest-cov
5+
pytest-pep8
6+
pytest-emoji
7+
pytest-flake8
8+
wemake-python-styleguide

environment.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: cs_util
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- python==3.10
6+
- pip>=21
7+
- pip:
8+
- -r requirements.txt

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
importlib_metadata==3.1.1
1+
importlib_metadata
22
numpy
33
astropy
44
matplotlib
5+
pycodestyle==2.9.0
56
vos
67
datetime

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
license = 'MIT'
2222

2323
# Set the package classifiers
24-
python_versions_supported = ['3.6', '3.7', '3.8', '3.9']
24+
python_versions_supported = ['3.6', '3.7', '3.8', '3.9', '3.10']
2525
os_platforms_supported = ['Unix', 'MacOS']
2626

2727
lc_str = 'License :: OSI Approved :: {0} License'

0 commit comments

Comments
 (0)